SP Problem "SET DEBUG" etc.

Ask a Question related to Informix, Design and Development.

  1. #1

    Default SP Problem "SET DEBUG" etc.


    Folks,

    The vesion of informix is 7.31.UC6A , I have created a procedure however
    with I was trying to debug it the debug file did not get generated .

    CREATE PROCEDURE foo( x int ,y int ) returning int, int ;

    define etc..

    -- then I added the following

    SET DEBUG FILE TO "dbg.out";
    TRACE ON;
    FOREACH
    Select ... etc....
    END FOREACH
    TRACE OFF;

    END PROCEDURE;

    The procedure compiles fine but no debug is generated.

    Am I missing something ??.

    Rgds.

    Navdeep

    __________________________________________________ _______________
    Add MSN 8 Internet Software to your current Internet access and enjoy
    patented spam control and more. Get two months FREE!
    [url]http://join.msn.com/?page=dept/byoa[/url]

    sending to informix-list
    navdeep virk Guest

  2. Similar Questions and Discussions

    1. Error with debug="true"
      If I set in web.config this: <compilation defaultLanguage="vb" debug="false"/> I receive this error: "Compiler Error Message: BC30560:...
    2. How to debug? "No Symbols Have Been Loaded"
      Hello, I was enjoying working in VS for half a year without any problems and now I cannot debug anymore. Without any really reason my Studio...
    3. WebService timeout after setting debug="false"
      Hi, We set debug="false" at web.config of a WebService for performance sake. We found that after set, the web service request will sometimes got a...
    4. Error: "Unable to debug on server,Access is denied"
      I installed dotnet and when i try to run a web application i get the error messagebox saying "Unable to debug on server,Access is denied.Would you...
    5. how to setting Debug in "Client" Developers ?
      hi, I´m in a ASP.NET development team and only the programmer that is using the machine with the IIS gets the debug. Could anyone teach me how...
  3. #2

    Default Re: SP Problem "SET DEBUG" etc.


    "navdeep virk" <nvirk@msn.com> wrote in message news:bmhfvl$95t$1@terabinaries.xmission.com...
    >
    > Folks,
    >
    > The vesion of informix is 7.31.UC6A , I have created a procedure however
    > with I was trying to debug it the debug file did not get generated .
    >
    > CREATE PROCEDURE foo( x int ,y int ) returning int, int ;
    >
    > define etc..
    >
    > -- then I added the following
    >
    > SET DEBUG FILE TO "dbg.out";
    > TRACE ON;
    > FOREACH
    > Select ... etc....
    > END FOREACH
    > TRACE OFF;
    >
    > END PROCEDURE;
    >
    > The procedure compiles fine but no debug is generated.
    >
    > Am I missing something ??.
    >
    > Rgds.
    I bet you are running the procedure from a client box. This normally happens
    when the user id of the client box does not have a home directory on the
    server. The best recourse is to give a full path to the DEBUG FILE

    set debug file to '/tmp/dbg.out' ;

    rk-
    --
    email id is bogus


    rkusenet Guest

  4. #3

    Smile Re: SP Problem "SET DEBUG" etc.

    Hi,

    Please make sure that the database is installed on your machine rather than a remote machine.May be the debug information is generated on that remote machine just check it once by logging on to that machine.

    Regards,
    Karimullah
    karimulla Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139