Viewing 15 posts - 286 through 300 (of 499 total)
Looks like you need to talk to Oracle
April 30, 2015 at 8:35 am
This works:
declare @sql nvarchar(4000)
set @sql= 'exec xp_fileexist ''' + @DbFilePath + ''''
insert into #fileExist
exec sp_executesql @sql
April 29, 2015 at 2:43 pm
homebrew01 (4/29/2015)
April 29, 2015 at 1:58 pm
gward 98556 (4/28/2015)
April 29, 2015 at 12:55 pm
gward 98556 (4/27/2015)
April 27, 2015 at 5:45 pm
First of all, NOLOCK doesn't deliver on it's promise. It *does* take locks (e.g. schema stability locks).
Second, it's a synonym for READUNCOMMITTED, which is what I recommend...
April 25, 2015 at 8:33 am
Iwas Bornready (4/20/2015)
Wow. There seems to be a lot of bad feelings for Cursors and While loops out there.
Justified, for the most part.
April 20, 2015 at 11:17 am
I try to avoid both cursors and while loops at all costs. I find them both quite expensive in terms of performance. unless forced to because of what is happening...
April 20, 2015 at 4:49 am
Hugo Kornelis (4/15/2015)
April 15, 2015 at 7:37 am
Martin Schoombee (4/13/2015)
My guess with the limited information is...
April 13, 2015 at 2:14 pm
Yes, that is true. The section "Using Apply" is about half-way down the page.
April 2, 2015 at 9:46 am
INCREDIBLEmouse (4/2/2015)
But - I was stunned by the use of underscores as source aliases.
cross apply (something) as _
cross apply (somethingelse) as...
April 2, 2015 at 7:14 am
arvin_d (4/2/2015)
Wouldn't the logic of the APPLY syntax be logically similar to the following:
SELECT
T.[ModelRegion]
,T.[TimeIndex]
,Sum(T.[Quantity]) AS [Quantity]
...
April 2, 2015 at 6:36 am
Viewing 15 posts - 286 through 300 (of 499 total)