Viewing 15 posts - 391 through 405 (of 872 total)
I was able to resolve it with a double exec ...
September 25, 2008 at 9:32 am
Steve, check where I start the EXEC ... that is what I'm doing. Unfortunately it does not work.
September 25, 2008 at 8:24 am
Forgot about this ... back to it. Yeah I could turn it into a proc and cursor through and update a temp table, but I really want to keep this...
September 23, 2008 at 1:51 pm
Terri (9/18/2008)
([ROWNUMBER]/2 + 1 ) AS [Team]
from BOL
If an integer dividend is divided by an integer divisor, the result is an integer that has any fractional...
September 18, 2008 at 8:59 am
If your linked server is going from 2005 (x64) to 2000 (x86), you need to reapply instcat.sql on your SQL2000 server. This is a file included in the SQL2000 SP4...
September 16, 2008 at 2:40 pm
Michael Earl (9/16/2008)
September 16, 2008 at 7:33 am
Well, I've been talking with ScriptLogic for the past couple weeks and while they have a great tool for this type of thing, they don't have the logic to remove...
September 16, 2008 at 6:32 am
Still haven't had much luck on this ... not sure what I'm missing here.
Thanks
September 16, 2008 at 6:19 am
haha, point taken ...
So I played with SSIS and got a Fuzzy Lookup working ... wow, just wow! I am simply amazed at how accurate this is and well it...
September 12, 2008 at 11:40 am
Trying it now ... ugh, I hate SSIS ... yet this could be really cool and get some much more accurate results.
September 12, 2008 at 8:37 am
Thanks John, that definitely makes sense and seems to be about the best bet.
Thanks!
September 12, 2008 at 8:23 am
The easiest way to find server up time is checking spid 1 in sysprocesses:
SELECT
[login_time]
,DATEDIFF(mm, [login_time], GETDATE()) AS [Days]
,DATEDIFF(dd, [login_time], GETDATE()) AS [Months]
,DATEDIFF(mi, [login_time], GETDATE()) AS [Minutes]
FROM [master].[dbo].[sysprocesses]
WHERE [spid]...
September 11, 2008 at 4:36 pm
Yes, or travel directly to the registry ... easiest way is to just use SSMS though.
September 11, 2008 at 11:58 am
Viewing 15 posts - 391 through 405 (of 872 total)