Control for "Isolation level" at SELECT statement level

Ask a Question related to Informix, Design and Development.

  1. #1

    Default Control for "Isolation level" at SELECT statement level

    Hi folks.

    Some RDBMS products support the following syntax format:

    SELECT .... <whatever...> WITH {READCOMMITTED | REPEATABLEREAD | ...
    |SERIALIZABLE}

    The WITH clause provides the means for overriding the default isolation
    level (or the one specified upon SET TRANSACTION) at a specific SELECT
    statement.

    WITH clause is applicable for INSERT,UPDATE,DELETE as well.

    Is there an equvalent to the "WITH" clause in INFORMIX's SQL?


    Your answers will be appreciated.



    Hillel.


    Hillel Eilat Guest

  2. Similar Questions and Discussions

    1. #39356 [NEW]: in_array() causes "Nesting level too deep" fatal error
      From: 7am dot online at gmail dot com Operating system: Windows XP PHP version: 5.2.0 PHP Bug Type: Arrays related Bug...
    2. Control Level 0 MC from Level 1 Button?
      "haydenad" <haydenad@qis.net> wrote in message news:c0bfnh$ir1$1@forums.macromedia.com... level apply _level0.gotoAndPlay("Close"); hth
    3. RewritePath throws "Access is Denied" when rewriting to directory level
      Hello, I have a problem trying to rewrite a path in ASP.NET 1.1 - each rewrite throws an Access is Denied error, even though anonymous access is...
    4. Equivalent of "friend" or package-level access?
      I have a group of related classes, and I would like them to have certain methods which can only be called by classes within the group. In C++ I...
    5. POLITE REQUEST FOR HELP: Why "onbar -b -L 1" sometimes runs level 0 backups?
      Hello, I apologise for taking bandwidth with my question. I tried to search for a solution on my own, even asked some Informix administrators,...
  3. #2

    Default Re: Control for "Isolation level" at SELECT statement level

    Hillel Eilat wrote:
    > Hi folks.
    >
    > Some RDBMS products support the following syntax format:
    >
    > SELECT .... <whatever...> WITH {READCOMMITTED | REPEATABLEREAD | ...
    > |SERIALIZABLE}
    >
    > The WITH clause provides the means for overriding the default isolation
    > level (or the one specified upon SET TRANSACTION) at a specific SELECT
    > statement.
    >
    > WITH clause is applicable for INSERT,UPDATE,DELETE as well.
    >
    > Is there an equvalent to the "WITH" clause in INFORMIX's SQL?
    >
    > Your answers will be appreciated.

    Which RDBMS? It isn't Oracle - the same question was asked in
    c.d.oracle.servers with only a change in the penultimate line of text.


    --
    Jonathan Leffler #include <disclaimer.h>
    Email: [email]jleffler@earthlink.net[/email], [email]jleffler@us.ibm.com[/email]
    Guardian of DBD::Informix v2003.04 -- [url]http://dbi.perl.org/[/url]

    Jonathan Leffler Guest

  4. #3

    Default Re: Control for "Isolation level" at SELECT statement level


    In informix is:

    set isolation to dirty read
    ;

    select...
    ....
    ;

    Hillel Eilat wrote:
    > Hi folks.
    >
    > Some RDBMS products support the following syntax format:
    >
    > SELECT .... <whatever...> WITH {READCOMMITTED | REPEATABLEREAD | ...
    > |SERIALIZABLE}
    >
    > The WITH clause provides the means for overriding the default isolation
    > level (or the one specified upon SET TRANSACTION) at a specific SELECT
    > statement.
    >
    > WITH clause is applicable for INSERT,UPDATE,DELETE as well.
    >
    > Is there an equvalent to the "WITH" clause in INFORMIX's SQL?
    >
    >
    > Your answers will be appreciated.
    >
    >
    >
    > Hillel.
    >
    >
    >
    >
    --


    Atte,


    Jesús Antonio Santos Giraldo
    [email]jeansagi@myrealbox.com[/email]
    [email]jeansagi@netscape.net[/email]

    sending to informix-list
    Jean Sagi 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