Viewing 15 posts - 11,881 through 11,895 (of 26,486 total)
mota7128 (5/17/2012)
I am using SQL 2008 R2, and I do thank all of you guys, REALLY love you.
Much thanks for you "Lynn Pettis", your solution is awesome for me...
May 17, 2012 at 12:05 pm
Update:
DECLARE @StartDate DATETIME,
@EndDate DATETIME;
SET @StartDate = '2012-05-18 12:07:00.000'; --GETDATE();
SET @EndDate = '2012-05-21 15:40:34.497' ; -- GETDATE() + 1;
DECLARE @ElapsedTime INT; --...
May 17, 2012 at 11:38 am
melissa.dougherty (5/17/2012)
I...
May 17, 2012 at 11:37 am
melissa.dougherty (5/17/2012)
I...
May 17, 2012 at 11:34 am
Are you using syncronous or asyncronous mirroring to your off-site database?
May 17, 2012 at 11:09 am
melissa.dougherty (5/17/2012)
May 17, 2012 at 11:08 am
L' Eomot Inversé (5/17/2012)
Revenant (5/17/2012)
Stefan Krzywicki (5/17/2012)
May 17, 2012 at 11:05 am
halifaxdal (5/17/2012)
Thanks Lynn,I need to use the temp table for further data processing so defining it as global is the only way.
Just remember that using a global tempory table has...
May 17, 2012 at 10:56 am
But it is fun. You haven't been around for a while and getting into a conversation over nothing is fun.
May 17, 2012 at 10:46 am
krypto69 (5/17/2012)
Oh okay...but then how could I reference it then?
Look with eye:
GLDEFRLS
INNER JOIN accropts AC
ON AC.AccAccrOption = EM.EacAccrOption
You are...
May 17, 2012 at 10:44 am
Just one case:
case when (departmentnumber in (091111,011111)) then 'Emergency'
when (departmentnumber in (013121)) then 'NICU'
else ''
end as Department
May 17, 2012 at 10:39 am
melissa.dougherty (5/17/2012)
May 17, 2012 at 10:37 am
Perhaps this:
set @sql = 'select count(1), sa from deviationbycategoryandsa where [' + @Category + '] = 1 and sa = ' + '''' + @sa + '''' + ' group...
May 17, 2012 at 10:33 am
RBarryYoung (5/17/2012)
Lynn Pettis (5/17/2012)
RBarryYoung (5/17/2012)
Oh, and "Upgradation" isn't really a valid word in English. Just use "Upgrade" instead.
You find it used off-shore, particularly India: http://oald8.oxfordlearnersdictionaries.com/dictionary/upgradation
We now have, English,...
May 17, 2012 at 10:24 am
Truth? Clean up the data. If the data has leading and trailing spaces and these need to be removed for a query, perhaps retaining them in the data...
May 17, 2012 at 10:16 am
Viewing 15 posts - 11,881 through 11,895 (of 26,486 total)