Viewing 15 posts - 34,801 through 34,815 (of 39,793 total)
It's been suggested and it's on our list. I agree with you, just a few things that are broken first. We'll get to it.
July 23, 2004 at 8:22 am
You should use IP or setup a local DNS to connect. Using the servername won't work across most VPNs. Only FQDNs.
July 23, 2004 at 7:35 am
I'd recode the triggers to do the same thing as the sp_start_job. In general, you never want to trigger some process with a trigger because the transaction will never complete.
July 23, 2004 at 7:32 am
Through a linked server, any query will do.
if exists( select top 1 * from sysusers) insert logtable
will do it from the source server.
July 23, 2004 at 7:28 am
If it's something regular, I agree with DMO. I had a DMO script to check all logins on all servers for blank passwords at my last job. I can try...
July 23, 2004 at 7:23 am
dateadd( h, x, cast( datefield as datetime))
where x is the hour difference. datefield is your column.
July 23, 2004 at 7:20 am
Is it one account, like a sysadmin account?
Have you checked for roles or perhaps some other changes that might have been made on one box you are not aware of? sounds...
July 23, 2004 at 7:15 am
Definiteiyl not a stupid question.
Using a second server or second instance is the best awy to go. It won't see your databases and so they will be suspect on the...
July 23, 2004 at 7:12 am
Not directly. You can use dynamic sql,
select @cmd = 'alter table mytable add ' + (year + 1) + ' int' ...
exec ( @cmd)
July 22, 2004 at 9:53 am
This isn't an endorsement, but some thoughts.
I tested SQLZip and Litespeed (v2.x) a few years back. SQLZip had better compression, but used lots of CPU. Litespeed gave me a good...
July 22, 2004 at 9:39 am
I'd detach, then rename and attach as you mentioned. Not sure if there's an easier way. Don't forget this is a fairly big change. All connection string code needs to...
July 22, 2004 at 8:34 am
great questions. Ones I han't thought of. I'll ping Andy for some clarification.
July 22, 2004 at 8:19 am
There might be, but how do your determine a 4 column table has columns 1,2,4,5 and not 1,2,3,4? If you can explain that logic, I'm sure someone can generate some...
July 22, 2004 at 7:55 am
The permissions to start SQL Server should come from the Windows service permissions. Stopping can come frmo SQL Server or Windows, depending on whether you can issue a stop command...
July 22, 2004 at 7:46 am
Viewing 15 posts - 34,801 through 34,815 (of 39,793 total)