Viewing 15 posts - 2,101 through 2,115 (of 3,011 total)
There are many options, but here are a few.
You can use the Computer Management utility to check if the service is running.
You can use the SC command line utility from...
January 15, 2009 at 3:58 pm
J (1/15/2009)
Create database roles for different types of user access, assign database and object permissions to database roles only, and then add individual users to...
January 15, 2009 at 3:29 pm
Create database roles for different types of user access, assign database and object permissions to database roles only, and then add individual users to the correct database roles.
January 15, 2009 at 12:06 pm
Jack Corbett (1/14/2009)
Michael Valentine Jones (1/14/2009)
I just saw our CEO (30,000+ employees) was wearing a hoodie and jeans today.Guess I’m going to have to start dressing down.
Do you work for...
January 15, 2009 at 11:46 am
I just saw our CEO (30,000+ employees) was wearing a hoodie and jeans today.
Guess I’m going to have to start dressing down.
January 14, 2009 at 3:33 pm
This way will prevent SQL Server from bypassing the check.
Case statement conditions are evaluated one at a time, and processing of the case stops on the first true condition.
Select
9 as...
January 14, 2009 at 3:03 pm
If you mean a true remainder, this will give it:
select 2621475%65535
If you actually mean you want to see the decimal fraction, this will give it:
select 2621475./65535.
As to why, you should...
January 9, 2009 at 4:19 pm
Getting back to the original subject of the T-shirt, I just looked at our company manual, and it specifically bans wearing T-shirts, along with sweat suits, hats, tank tops, stretch...
January 9, 2009 at 3:20 pm
I have rarely seen anything below 99%, so I don’t pay much attention to it.
I look more at Average Page Life Expectancy and Page Reads/Sec. These seem to be...
January 9, 2009 at 2:55 pm
Going strictly by the stated requirements, then -2147483648 is the lowest unused value.
January 9, 2009 at 9:24 am
RBarryYoung (1/8/2009)
January 8, 2009 at 3:53 pm
DATEADD(YY,1,MyOldDate) is the way to go to update the year, but you should be aware that dates of 2008-02-29 wirll be converted to 2009-02-28, because there is no Feb 29...
January 8, 2009 at 10:19 am
sqlservercentral (1/6/2009)
January 6, 2009 at 2:37 pm
The best way to handle this is to let SQL Server compute the time difference as a datetime (EndTime-StartTime) that is an offset from 1900-01-01 00:00:00.000 and then parse the...
January 6, 2009 at 10:36 am
CAST(CAST(ROUND(dbo.invoice_line.qty_shipped, 0) as int) as varchar(40))
January 5, 2009 at 1:30 pm
Viewing 15 posts - 2,101 through 2,115 (of 3,011 total)