Viewing 15 posts - 106 through 120 (of 443 total)
Good stuff.
One minor gripe, you shouldn't be using leading underscores for identifiers. It's generally considered bad practice.
June 8, 2011 at 3:50 am
Steve Jones - SSC Editor (6/7/2011)
Craig Farrell (6/6/2011)
calvo (6/6/2011)
GSquared (6/6/2011)..."Billion" means two different things on different sides of The Pond.
wow. I was about to question this when I looked it...
June 7, 2011 at 9:26 am
Gangadhara MS (6/5/2011)
I am using the data format as below.
DECLARE @table TABLE (number nvarchar(max))
INSERT INTO @table VALUES (4.5267489711934158E-2)
INSERT INTO @table VALUES (8.8356729975227088E-2)
INSERT INTO @table VALUES (9.9356025758969638E-2)
SELECT CONVERT(VARCHAR(4),CONVERT(INT,ROUND(CAST(number AS DECIMAL(4,2)),...
June 7, 2011 at 4:07 am
Or
SELECT
TOP 6 DATEADD(DAY,-1,DATEADD(MONTH,1-ROW_NUMBER() OVER(ORDER BY name) ,'Jun 2011'))
FROM
sys.columns
June 6, 2011 at 9:46 am
Maybe you should mention that change tracking is only available in SQL2008 and higher.
May 26, 2011 at 5:27 am
Tom.Thomson (5/26/2011)
nigel. (5/26/2011)
Thanks for that question, I'd was not aware of 'loginproperty' until now.
One question though. I tried to recreate your scenario but always get '1900-01-01 01:00:00.000' as the...
May 26, 2011 at 5:22 am
hakan.winther (5/26/2011)
john barnett (5/26/2011)
How long is fix minutes?John
"It depends", in SQL server 2000 it's the millisecond before six, but in later versions it's the microsecond before six. 🙂
No, its a...
May 26, 2011 at 5:02 am
stewartc-708166 (5/26/2011)
Have there ever been bad login attempts to that instance?
Yes, I attempted to create one (as in Steve's scenario) by logging in via SSMS using an invalid password for...
May 26, 2011 at 3:33 am
Steve,
Thanks for that question, I'd was not aware of 'loginproperty' until now.
One question though. I tried to recreate your scenario but always get '1900-01-01 01:00:00.000' as the result. Anyone...
May 26, 2011 at 2:17 am
nigel. (5/25/2011)
Wouldn't it just be:ORDER BY create_dt
No, and I've just realised why, sorry :blush:
Too early, need more coffee
May 25, 2011 at 2:35 am
Wouldn't it just be:
ORDER BY create_dt
May 25, 2011 at 2:27 am
First problem I can see is that you have no column that defines the ordering of the rows in your data, without this there is no way to determine what...
May 23, 2011 at 9:26 am
Ok, sorry that's beyond my knowledge.
You may be better off asking this in the SSIS forum on this site .
May 23, 2011 at 9:16 am
Not exactly clear what you mean, if you're talking about an asp.net application and storing the connection strings in web.config then look here : http://lmgtfy.com?q=encrypt+connection+strings.
Even if this isn't exactly...
May 23, 2011 at 8:44 am
Viewing 15 posts - 106 through 120 (of 443 total)