doubt in a query

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kavin

    #1

    doubt in a query


    i overcame with a query

    "SELECT <FROM <db nameWITH U R"

    here what is that "WITH U R" stands for?

  • Lennart

    #2
    Re: doubt in a query

    kavin wrote:
    i overcame with a query
    >
    "SELECT <FROM <db nameWITH U R"
    >
    here what is that "WITH U R" stands for?
    >
    I think it should be:

    select * from <table namewith ur

    "with ur" means "with uncommited read", i.e. you will see rows not yet
    commited. The big bonus is that your query wont wait for locks, the
    drawback that the result - in some sence - might not be correct.


    /Lennart

    Comment

    Working...