Viewing 15 posts - 901 through 915 (of 1,162 total)
Have a look here for more information:
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
In particular, look at the way that dynamic SQL is used but it's still parameterised (avoiding the risk of SQL Injection).
Alternatively, I believe that...
February 2, 2011 at 8:36 am
Well 2 things. Either the query is wrong which is still likely at this point or you're hittinga bug. Either case upgrading the server(especially ifit's isolated can't really hurt).
I really...
February 1, 2011 at 10:03 am
Are the below two objects tables or views?:
[tbl_233421d595dc4719b2429d27bf5a0399_\PreparingFactTable\CommissioniPerformance\FactTab]
[tbl_527741baf48446da94b7e767ed004314_\PreparingFactTable\CommissioniPerformance\FactTab]
Can you post the DDL for these if they're views?
February 1, 2011 at 9:16 am
lindbergh_ddv (2/1/2011)
February 1, 2011 at 8:12 am
Can you post the actual view's and create table scripts?
You may be doing something in the views that relies on an arbitrary order (e.g. TOP or Row_Number() without ordering by...
February 1, 2011 at 6:43 am
I don't see anything in the OP's code that doesn't take multi-row DML into account.
The only thing I can think is that triggers do not fire for BULK INSERT...
January 28, 2011 at 7:37 am
Oracle's query tools (Oracle SQL Developer and SQLPlus) by default require you to explicitly commit regardless of whether you explicitly began a transaction.
So, if you perform an update/delete operation, you...
January 25, 2011 at 5:21 am
Why do you need a self join? Assuming the sub query is the same table as the one you're deleting from (as per your example) you just need a straight...
January 13, 2011 at 5:59 am
It should be worse the other way round to be honest. When you move into Daylight Saving Time, there is no 01:00 to 01:59, so I would assume that any...
November 2, 2010 at 8:59 am
I think Wayne's right. Basically, anything that's scheduled to run between 01:00 and 01:59 will execute at the first occurence of that time. No job schedules at all run between...
November 2, 2010 at 8:03 am
Are both CPU time and elapsed time lower on Procedure B? If it's just elapsed time, it could be generating a parallel execution plan for Procedure B, which although completing...
October 25, 2010 at 5:49 am
A case expression can only return a single data type. As your first case expression returns an integer, all other results must be integer. As a blank string is implicitly...
October 18, 2010 at 6:39 am
ALZDBA (10/15/2010)
October 15, 2010 at 5:41 am
Well designed virtual infrastructure (by this I mean well set up Virtual Server farms where the resources arent overallocated, running on well configured modern hardware) can be an excellent solution...
October 14, 2010 at 9:35 am
Viewing 15 posts - 901 through 915 (of 1,162 total)