Viewing 11 posts - 1 through 11 (of 11 total)
What I can think off:
try to dissect @ts_now to (hours), minutes, seconds and milliseconds
Then dateadd one by one
March 30, 2012 at 2:46 am
plase read this:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
March 2, 2012 at 4:46 am
Welsh Corgi (1/20/2012)
RESTORE DATABASE MSDB
FROM DISK = 'msdb_backup_201201181321.bak'
WITH REPLACE,
MOVE 'MSDB' TO 'D:\SQLServer\Data\MSDB.mdf',
MOVE 'MSDB_log' TO 'D:\SQLServer\Log\MSDB.ldf'
I get the following error:
Msg...
January 20, 2012 at 6:24 am
OK. Assuming you don't need to resolve 6/4 is the same as 3/2, this sort of, works:
feel free to add decimal places to get better precision if you have 1001/1000...
December 22, 2011 at 4:39 am
maybe (just maybe):
create table #numbers ( a tinyint)
go
insert into #numbers (a)
(
select 1 union all
select 2 union all
select 3 union all
select 4 union all
select 5 union all
select 6 union all
select 7...
December 21, 2011 at 8:01 am
Mark Harr (10/14/2011)
https://www.dbainspace.com/about/dbainspace
ELIGIBILITY CRITERIA
...Only residents of the USA*, UK*, Canada*, Australia, or Germany can...
October 17, 2011 at 1:44 am
Danny Beutler (6/11/2008)
Hello Steve,You recommend a naming convention such as SQL_(servername)_(instance)_(service). What if the this is a cluster? Would you replace the servername with the clustername?
Thanks,
Danny
I think you...
July 11, 2008 at 1:14 am
My friend uses some open source tool that locks the workstation if your bluetooth enabled cell phone moves out of (bluetooth) range!
I found some software that does the same thing...
March 21, 2008 at 1:38 am
what about this:
update table1
set table1.column1 = #table.column1, table1.column2 = #table.column2
from table1, #table
where table1.pk=#table.pk
March 14, 2008 at 12:52 am
dglane (3/3/2008)
March 11, 2008 at 3:13 am
Viewing 11 posts - 1 through 11 (of 11 total)