Selection of Null Value in Transformation file

Hi Guru's,
I've been trying to select NULL values of a field in transformation file but unfortunately system always gets both null and filled values of the field ALTHOUGH i had maintained the Selection Option.
Data management package is: Load Transaction Data from BW InfoProvider UI
The technical name of field: 0FLAG
I've tried each possibilities as in below
SELECTION: 0FLAG, *STR()
SELECTION: 0FLAG, *STR();
SELECTION: 0FLAG, ""
SELECTION: 0FLAG, " "
SELECTION: 0FLAG, NULL
SELECTION: 0FLAG, *STR(#)
SELECTION: 0FLAG, #
SELECTION: 0FLAG, "#"
Doesn't work.
thanks in adv. for your precious supports

Hi Sadi,
I understand your question that, you want to load tr. data from infocube and you have a trouble with one field which name is "0flag" in this cube, right? If your case is above, you need conversion file for flag, and convert like that # = "DUMMY" or sth.
Or, you can solve in BW with transformation file routine.
I hope, it will help you.
Thanks.

Similar Messages

  • Select list null value issue - for filtering the tabular form report

    hello,
    I have a tabular form created on emp table and in the table their are entries for the employees who don't have a location, like it is null for some of the employees.
    Now I have created a select list item - for filtering the results based on location.
    my select query for select list item is
    select distinct location_name d,location_id r from emp order by 1
    -- so my select list contains all the distinct location_name including the null on my tabular form.
    so based on the selelcted value(in the select list), I am able to filter the results in my tabular form.
    but the thing is that when i try to select an null value from my select list - i am not able to filter my report - like its displaying all the records, its not filtering.
    can anyone help me out with this.
    thanks.

    Hi
    Try below select for LOV
    select distinct nvl(location_name,'No Location') d,nvl(location_name,'No Location') r from emp order by 1 And then change tabular from select where clause also use nvl(location_name,'No Location') like
    SELECT *
    FROM emp
    WHERE nvl(location_name,'No Location') = :Px_YOUR_ITEMBr, Jari

  • How to replace  BLANK or NULL values in rule file

    Hi,
    I have a source file which contains Blank or Null values which i need to replace them with a number "042" .How we can do this in the rule file using "Replace "(Field->Properties).I tried keeping spaces but its failing. I am actually new to essbase please let me know how we can do this.
    Thanks in Advance

    Hi,
    Unfortunately you can't replace blank/null/space values directly. What you need to do is add a text field in your rules file first, then merge the text field with the column containing blank/null/space. Then you can use some creative find and replace to solve this problem.
    For example, I often add a column called "TextCleaner" to my rules files where I suspect b/n/s values. After merging there are 3 possible options for the value.
    1) "TextCleaner" (The original value was null)
    2) "TextCleaner " (The original value was space)
    3) "TextCleanerUSA Region" (The original value was valid data, such as USA Region)
    Now you can use the find and replace as follows
    First, F&R to remove any instance of "TextCleaner" and replace with 042. Be sure to check the "Match Whole Word" button. This swaps null values with 42
    Second, do the same thing but with "TextCleaner ". This swaps any space/blank values with 42.
    Third, replace "TextCleaner" with nothing. Do not check the "Match Whole Word" button. This changes any original valid values back to the original value.

  • Select list -null value?

    When you create a select list on a column, and run the page for the first time, the drop down doesn't show any value. I realized that once you click on the drop down to see what the values are, at the bottom of the list there is a blank value. But you can only see this the first time you load the page. Once you click on any other value, that blank value is gone. How does this work? How can I select the blank value even after you had selected other values previously?
    Thanks,

    Modify the Item Definition's List of Values options (Edit Page Item->LOV)
    Display Null: Yes
    Null Display Value:  

  • Help with select on null values

    drop table t1;
    create table t1 ( c1 number,c2 varchar2(2) );
    insert into t1 values(1,'A');
    insert into t1 values(2,'B');
    insert into t1 values(3,'');
    insert into t1 values(4,'D');
    drop table t2;
    create table t2 ( c1 number,c2 varchar2(2) );
    insert into t2 values(1,'A');
    insert into t2 values(2,'B');
    insert into t2 values(3,'');
    insert into t2 values(4,'C');
    select a.c1 from t1 a ,t2 b
    where a.c2 = b.c2;
    and result should be
    1
    2
    3

    does not make any difference
    drop table t1;
    create table t1 ( c1 number,c2 varchar2(2) );
    insert into t1 values(1,'A');
    insert into t1 values(2,'B');
    insert into t1 values(3,null);
    insert into t1 values(4,'D');
    drop table t2;
    create table t2 ( c1 number,c2 varchar2(2) );
    insert into t2 values(1,'A');
    insert into t2 values(2,'B');
    insert into t2 values(3,null);
    insert into t2 values(4,'C');
    select a.c1 from t1 a ,t2 b
    where a.c2 = b.c2;
    and result should be
    1
    2
    3

  • Select a null value

    Hi to all , if anybody knows how to tackle with the following situation, please reply urgently. Thanx in advance.
    Suppose I have a table EMPLOYEE , with EMPLOYEE_ID as primary key , as:
    E_ID EMPLOYEE_NAME
    1                        abc
    3                      pqr
    6                      xyz
    I want to fire a query as
    " select E_ID from EMPLOYEE where E_ID IN ( 1, 8 , 6) "
    The result is as
    1
    6
    But I want a result as null ( or any other indication) for the record which is null , i.e I want a result as
    1
    null
    6
    I have tried nvl, but dont get result as per my excepttation. Any clue , how to do this ? How should I write my query so that I will have the desired result. In desired result instead of null , any value or indication is acceptable.

    Here's how i understand your problem. You have a table with n records. You run a query with an IN argument list. Rows that match the argument list should be returned by the query as they are, but for arguments that have no corresponding row in the table a row should be returned indicating the status. I have come up with a solution, though a bit complicated one. To test it first run following script and then execute the query at the end.
    CREATE TABLE employee
    (E_ID number,
    EMPLOYEE_NAME varchar2(30))
    INSERT INTO employee
    values(1,'A')
    INSERT INTO employee
    values(2,'B')
    INSERT INTO employee
    values(3,'C')
    CREATE OR REPLACE TYPE emp_type AS OBJECT
    (E_ID number,
    EMPLOYEE_NAME varchar2(30));
    CREATE OR REPLACE TYPE emp_tab_typ AS TABLE OF emp_type;
    CREATE OR REPLACE TYPE arg_list_typ AS VARRAY(20)
    OF NUMBER;
    CREATE OR REPLACE FUNCTION emp_fun(p_arg arg_list_typ) RETURN emp_tab_typ
    IS
      v_emp_tab emp_tab_typ:=new emp_tab_typ();
      v_cnt number:=0;
    BEGIN
       FOR r IN 1..p_arg.count LOOP
               v_cnt:=0;
               FOR x IN (SELECT E_ID,EMPLOYEE_NAME
                       FROM employee
                       WHERE E_ID=p_arg(r)) LOOP
                       v_emp_tab.extend;
                       v_emp_tab(v_emp_tab.count):=emp_type(x.E_ID,x.EMPLOYEE_NAME);
                       v_cnt:=1;
               END LOOP;
               IF v_cnt=0 THEN
                       v_emp_tab.extend;
             v_emp_tab(v_emp_tab.count):=emp_type(null,null);
               END IF;
       END LOOP;
       RETURN v_emp_tab;
    END;
    SQL> SELECT E_ID,nvl(EMPLOYEE_NAME,'Not Found')
      2  FROM TABLE(CAST(emp_fun(arg_list_typ(1,3,4)) AS emp_tab_typ))
      3  /
          E_ID NVL(EMPLOYEE_NAME,'NOTFOUND')
             1 A
             3 C
               Not Found
    3 rows selected.--------------
    Anwar

  • Need help Take out the null values from the ResultSet and Create a XML file

    hi,
    I wrote something which connects to Database and gets the ResultSet. From that ResultSet I am creating
    a XML file. IN my program these are the main two classes Frame1 and ResultSetToXML. ResultSetToXML which
    takes ResultSet & Boolean value in its constructor. I am passing the ResultSet and Boolean value
    from Frame1 class. I am passing the boolean value to get the null values from the ResultSet and then add those
    null values to XML File. When i run the program it works alright and adds the null and not null values to
    the file. But when i pass the boolean value to take out the null values it would not take it out and adds
    the null and not null values.
    Please look at the code i am posing. I am showing step by step where its not adding the null values.
    Any help is always appreciated.
    Thanks in advance.
    ============================================================================
    Frame1 Class
    ============
    public class Frame1 extends JFrame{
    private JPanel contentPane;
    private XQuery xQuery1 = new XQuery();
    private XYLayout xYLayout1 = new XYLayout();
    public Document doc;
    private JButton jButton2 = new JButton();
    private Connection con;
    private Statement stmt;
    private ResultSetToXML rstx;
    //Construct the frame
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    xQuery1.setSql("");
    xQuery1.setUrl("jdbc:odbc:SCANODBC");
    xQuery1.setUserName("SYSDBA");
    xQuery1.setPassword("masterkey");
    xQuery1.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
    contentPane.setLayout(xYLayout1);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    xQuery1.setSql("Select * from Pinfo where pid=2 or pid=4");
    jButton2.setText("Get XML from DB");
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    catch(java.lang.ClassNotFoundException ex) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(ex.getMessage());
    try {
    con = DriverManager.getConnection("jdbc:odbc:SCANODBC","SYSDBA", "masterkey");
    stmt = con.createStatement();
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    jButton2.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton2_actionPerformed(e);
    contentPane.add(jButton2, new XYConstraints(126, 113, -1, -1));
    //Overridden so we can exit when window is closed
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton2_actionPerformed(ActionEvent e) {
    try{
    OutputStream out;
    XMLOutputter outputter;
    Element root;
    org.jdom.Document doc;
    root = new Element("PINFO");
    String query = "SELECT * FROM PINFO WHERE PID=2 OR PID=4";
    ResultSet rs = stmt.executeQuery(query);
    /*===========This is where i am passing the ResultSet and boolean=======
    ===========value to either add the null or not null values in the file======*/
    rstx = new ResultSetToXML(rs,true);
    } //end of try
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    ======================================================================================
    ResultSetToXML class
    ====================
    public class ResultSetToXML {
    private OutputStream out;
    private Element root;
    private XMLOutputter outputter;
    private Document doc;
    // Constructor
    public ResultSetToXML(ResultSet rs, boolean checkifnull){
    try{
    String tagname="";
    String tagvalue="";
    root = new Element("pinfo");
    while (rs.next()){
    Element users = new Element("Record");
    for(int i=1;i<=rs.getMetaData().getColumnCount(); ++i){
    tagname= rs.getMetaData().getColumnName(i);
    tagvalue=rs.getString(i);
    System.out.println(tagname);
    System.out.println(tagvalue);
    /*============if the boolean value is false it adds the null and not
    null value to the file =====================*/
    /*============else it checks if the value is null or the length is
    less than 0 and does the else clause in the if(checkifnull)===*/
    if(checkifnull){ 
    if((tagvalue == null) || tagvalue.length() < 0 ){
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    root.addContent(users);
    out=new FileOutputStream("c:/XMLFile.xml");
    doc = new Document(root);
    outputter = new XMLOutputter();
    outputter.output(doc,out);
    catch(IOException ioe){
    System.out.println(ioe);
    catch(SQLException sqle){

    Can someone please help me with this problem
    Thanks.

  • I am gettng Null value for file when i am using a UDF as this

    String FName;
    DynamicConfiguration Conf = (DynamicConfiguration) container.getTransformationParameters(). get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http:/"+"/sap.com/xi/XI/System/File", "FileName");
    FName = Conf.get (key);
    if (FName == null)
    return "null";
    else
    return FName
    and my error is
    Attempt to process file failed with com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but there is no 'DynamicConfiguration' element in the XI Message headplease any on there to help me
    thanking you
    sridahr

    Hi,
    Did u selected the option filename from the Adapter message specific atribute of file adapter.
    When u  run the whole scneario that time this will work if u run the scneario using test message tab of message mapping it will give null value only.
    THe AMSA will work when u test it end to end.
    check it out.
    Advance parameter in file adapter dynamic file name
    Problem in dynamic file name in File reciever adapater
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    chirag

  • Binding for "File Content Repository Path" is returning null value

    I have created a data control for file based content repository based on an existing file system path. *But when this data contol is invoked the command "#{bindings['getURI_returnURI'].inputValue}" is returning null.*+
    Please advice what are possible scenarios. I have performed the following
    #1. Create a file system folder in windows XP named "C:\CPContentRepository" and add some html pages into this folder.
    #2. Create a "content" project in the application.
    #3. Create a "Content Repository Data Control" named "CPFileContentRepository". Repository Type : "File System", Base Path : "C:\CPContentRepository". Test & Registration is successful.
    #4. Add a "panel horizontal" into jsf jsp "ContentTest" page & drap-dop data control "CPFileContentRepository--> getURI(String)--> Return--> URI". select return type as "ADF Output Text".
    #5. Edit Authorization of the "ContentTest" page definition for "View --> anyone".
    #6. Edit Authorization of the "ContentTest" page definition bindings "getURI" for "Invoke --> anyone".
    #7. Run the "ContentTest" page. The output for the page is empty.
    Regards,
    Vikki

    There're two major problems in your code. One you have used different names to get your parameters like in your first jsp they're like
    <input type="text" name="did" size="20" </p>
      <p align="center"> </p>
      <p align="center"><b>Name        </b>          
      <input type="text" name="name" size="20"></p>
      <p align="center"> </p>
      <p align="center"><b>Specialist In         
      <input type="text" name="specialist" size="20"></b></p>
      <p align="center"> </p>
      <p align="center"><b>Address                
      <input type="text" name="address" size="20"></b></p>
      <p align="center"> </p>
      <p align="center"><b>Phone no.            
      <input type="text" name="phno" size="20"></b></p>
      <p align="center"> </p>but when you're getting you're doing it like this
    String name = request.getParameter("name");
         String did = request.getString("did");
         String add = request.getParameter("add");
         String specilist = request.getParameter("specilist");
         String phno = request.getParameter("phno");First get them with same name as you have them in your first jsp. another thing in that you're not used form tag in write way... You have created submit button in some other form
    and when you're pressing submit button actully you're submitting only that form value and your form1 is not submitted that's why you're getting null values for
    those parameters you're getting with right name

  • Select Time at Validate and Process Transformation File

    Hi, Experts,
    We have SAP BPC 10 NW.
    We need to load data (not DELTA) from BW using a batch process every night and we don't want to need to make any change when the current month changes. We need to filter the current month and the month before automatically.
    I think in solve this at transformation file level, when we select the InfoProvider and filters. We can select the Dimension/Field, Attribute, Operator an Low Value. Question: Is it possible to use a formula to have the current month dynamic (and the month before too)?
    I though in another possibility: create a field a InfoProvider that has "Y" when the current month (or the month before) from system is the month of TIME.
    Maybe there is a way by Data Manager Package.
    May you help me?
    Best Regards,
    Ana Teresa

    Hi Ana,
    The standard option is to use START_ROUTINE in your transformation file to check the server date and filter the data to be loaded accordingly.
    Regards,
    Kalyan.

  • Exclude Selection in Transformation File

    Hi ,
    I have a need of excluding selection in transformation file.  I can use SELECTION for individual values in my transformation file succesfully.
    (eg. SELECTION = 0MATL_GROUP,A100;0MATL_GROUP;A200 )
    But is there any functionality in SELECTION to exclude values ?
    Something like,( just imagining )  SELECTION = 0MATL_GROUP, (not equal) B100.
    Any ideas for that ? Or do i have to write all single values (approximetly 131 members) to SELECTION , instead of excluding 1 member ?
    Thanks in advance.
    Faith.
    Edited by: Fatih Inanc on Oct 19, 2010 9:11 AM
    Edited by: Fatih Inanc on Oct 19, 2010 9:11 AM

    Hi Nilanjan,
    Thanks it was an helpful answer. I read the documentation. And i would like to ask you, what if a string is used for both infoobjects.
    E.g, I dont want to take 0MATL_GROUPS beginnig with 130. But I have customer numbers begginig with 130 also.
    So it will not take those customers either ?
    Thanks in advance..
    Faith..

  • Null value in a select-option

    Hi all,
    I have the follow question:
    can I populate a range vith a null value?
    I have a field in a standard table which can be "space" or "null". But if I insert:
    sign = I
    option = EQ
    low = space
    records with "null" field aren't extracted by the select statement. So is there any way to populate:
    low = null or something similar?
    Best Regards,
    Raffaele Frattini

    If the field is of type char then you need to wrte the same in quotes woth caps
    else
    declare
    constants : c_null type i value '0'.
    then assign the same
    You check the null value using INITIAL laso.

  • I am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    i am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    hi TimoHahn,
    i am getting following exception in JDeveloper(11g release 2) Studio Edition Version 11.1.2.4.0 but it works perfectly fine in JDeveloper 10.1.2.1.0
    Root cause of ServletException.
    java.lang.NullPointerException
    at java.util.PropertyResourceBundle.handleGetObject(PropertyResourceBundle.java:136)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:368)
    at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    at org.rbi.cefa.master.actionclass.UserAction.execute(UserAction.java:163)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

  • Could not find selected item matching value "null" in CoreSelectOneRadio

    Hello,
    I get the following error with my selectOneChoice components:
    WARNING Could not find selected item matching value "null" in CoreSelectOneRadio[UIXEditableFacesBeanImpl, id=dyna_2709976_11]
    It seem that the component looks for a selectItem object qith its value set to null, so I tried to add one with a null value to no avail. The error don't cause any problem on the rendered page but it might spam the log when many users will be connected. Anyone every got this error and found a fix to stop it from appearing?
    Regards,
    Simon Lessard

    you said you're using selectOneChoice but the error says radio. Is the information correct?

  • Error while selecting NULL value from Popup Key LOV(numeric or value error)

    Hi,
    I have a item P1_DEPTNO with following properties.
    P1_DEPTNO - Popup Key LOV (Displays description, returns key value)
    LOV - P1_DEPT_LOV
    select deptname d, deptno r from deptP1_DEPTNO item properties
    List of Values
      Named LOV - P1_DEPT_LOV
      Display Null - Yes // changed to Yes, so that it can accept NULL values.
      Null display value - NULL
      Null return value -   (blank)PL\SQL Process -
    declare
    v1 number;
    begin
    if :P1_DEPTNO is null OR :P1_DEPTNO = '' then
        v1 := 0;
    else
        v1 := :P1_DEPTNO;
    end if;
    // rest of the PL\SQL process
    end;Now, when I run the page and select NULL value from Popup LOV and submit, I get the following error.
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error.When, I select any other value other than NULL, then it's working perfectly fine.
    Only in case of NULL value, I am getting this error.
    ANY idea, why this error is coming??
    Thanks,
    Deepak

    Hi Varad,
    I did the following change
    Null display value - (blank) // by default it is displaying '%' in the select this
    Null return value - -1
    but when I select % (null value) from the popup list, it displays the return value -1 in the text field.
    My question is why it is displaying the return value -1 in the text field...*It should display the display value in the text field (i.e blank in this case)*
    then, I did the following change
    Null display value - (blank) // by default it is displaying '%' in the select this
    Null return value - // a single space, so that when I select %(null value) from the list, it should display blank in the text field...
    then I did the following change in the PL\SQL process.
    PL\SQL process
    declare
    v1 number;
    begin
    if :P1_DEPTNO = ' ' then // -- checking the value of single space ' ' when we select %(null) in the popup list, BUT even I select %(null), control is not coming here.
        v1 := 0;
    else
        v1 := :P1_DEPTNO;
    end if;
    // rest of the PL\SQL process
    end;Thanks,
    Deepak

Maybe you are looking for

  • Why can't I see the rendering loading in FCP X 10.0.6?

    I´ve downloaded the update, but when I put export files, the rendering loading doesn´t appear in the progrman, itñs just stay in the same way and when passes a few minutes the quick time player open with the movie. It's not that I don't like this ver

  • A white stick for my mac

    I have a 2006 macpro Model Identifier: MacPro1,1 Processor Name: Dual-Core Intel Xeon Processor Speed: 2.66 GHz Number Of Processors: 2 Total Number Of Cores: 4 osx 10.6.6 last dec I bought a G-force 1tb hd my problem is I can't see it on my screen o

  • A problem on generic connectivity

    Hi, I'm new here. I use Oracle 8.1.7 database and SQL Server 2005. From the Oracle side, I make SQLs and throw them to the SQL server side using generic connectivity. In most cases it works fine but when I try to throw a rather heavy one that I expec

  • Get host name and ip addrees of the client machine for window VISTA

    Hello Friends !! I have write the following code to get the ip adress and host name of the client machine .. it works fine for windows xp and 2000 but in vista it gives this type of out put. host name = 0:0:0:0:0:0:0:1 ip addresss = 0:0:0:0:0:0:0:1 w

  • Iphone 4 always tries to connect to 3g even when there is no 3g.

    ..... So simply it never ever connects to GPRS or EDGE which is an absolute pain because I work and live in a place with limited 3G. Can anyone recommend a solution?