Viewing 15 posts - 16 through 30 (of 128 total)
infexthenna (11/7/2013)
And Q.Status Not In ('A', 'B')
And 0 = (Select Count(*) From DataQueue Where ImageId = Q.ImageId...
November 11, 2013 at 9:39 am
What about
select CONVERT(VARCHAR(12), getdate())
output of select getdate() is 2013-11-11 17:50:53.347
but output of select CONVERT(VARCHAR(12), getdate()) is Nov 11 2013 (+ 1 blank space)
November 11, 2013 at 5:23 am
Jacob Wilkins (8/7/2013)
From http://msdn.microsoft.com/en-us/library/bb500469(v=sql.120).aspx"SQL Server 2014 is available in 32-bit and 64-bit edition."
So, is it one more typo of MSDN ?
October 29, 2013 at 4:19 am
select NULLIF(1,NULL) = 1 (Both values are not same, so first value)
select NULLIF(NULL,2) = Error "first argument has to be known"
select NULLIF(1,1) ...
October 29, 2013 at 3:54 am
GilaMonster (10/24/2013)
October 24, 2013 at 7:49 am
GilaMonster (10/24/2013)
T.Ashish (10/24/2013)
create your index onyearno
periodid
Sure that's the best index? A non-covering index that only supports the where clause.
Agree. Not the best.
covering index will be a better idea...
October 24, 2013 at 7:47 am
I am of the belief that they serve no purpose in a select statement and are totally unnecessary. Agree? Disagree?
Thanks,
Agree.
October 24, 2013 at 7:38 am
create your index on
yearno
periodid
October 24, 2013 at 7:26 am
Also, the posted question should be clear enough, with all required details.
October 24, 2013 at 7:13 am
Rakesh.Chaudhary (10/24/2013)
I am using Drop and create table in Loop because of results I want to achieve using loop. But my question is
Is this better to use Truncate table...
October 24, 2013 at 7:09 am
select vout from OSS_MI_SPLITTING (@VESSEL_REF)
can also be shifted to CTE
October 24, 2013 at 6:48 am
Hugo Kornelis (10/21/2013)
crussell-931424 (10/21/2013)
October 21, 2013 at 10:53 pm
Revenant (10/21/2013)
Hah hah hah! Neat! Thanks, Ashish!
Welcome.
October 21, 2013 at 11:30 am
Viewing 15 posts - 16 through 30 (of 128 total)