Viewing 15 posts - 166 through 180 (of 226 total)
Are you using package configurations?
Are you deploying it to the server using the build and deploy?
September 22, 2008 at 5:42 pm
Might want to put this in a SQL Server 2000 forum, but here's a head start:
September 22, 2008 at 5:40 pm
I'm guessing you just removed it from SQL Server and not the builtin administrators group in windows. Go have a look to make sure it's still there. You could possibly...
September 22, 2008 at 4:57 pm
we reaped huge benefits from breaking a stored procedure down like that. We ended up having a master stored procedure that had the most used condition in the first If...
September 22, 2008 at 4:49 pm
a few things to note.
-running multiple instances means that you have to manually set the memory for each instance.
-I believe x86 does better with multiple instances.
-Fire up profiler and use...
September 22, 2008 at 4:46 pm
funny thing is, the registry didn't show the expected entries but the folders did even after uninstall.
I'm in the middle of it now.
September 22, 2008 at 4:23 pm
You could try to audit login events in a SQL Server profiler trace. That wouldn't go backwards for you though.
September 22, 2008 at 3:55 pm
September 22, 2008 at 2:48 pm
you probably want to check some of the flash sites that have tutorials. It's been a while since I did that but I'm assuming that there are still some good...
September 22, 2008 at 2:43 pm
Do you have a network guy you can check with?
September 22, 2008 at 2:40 pm
Does this article help? http://www.sqlservercentral.com/articles/SS2K5+-+Full+Text+Searching/2819/[/url]
I believe you have to drop and recreate if I remember correctly.
September 22, 2008 at 2:38 pm
well, that's the x86 install for that sp. Are you positive you aren't running IA64 or x64?
September 22, 2008 at 2:33 pm
I've had better luck with the commands vs the gui.
EXECUTE sp_addlinkedserver @server='remoteserver', @srvproduct='SQL Server'
EXECUTE sp_addlinkedsrvlogin @rmtsrvname='remoteserver', @useself='false',
@rmtuser='username', @rmtpassword='password'
September 22, 2008 at 1:19 pm
Jason Shadonix (9/22/2008)
T(And for that matter, why is the select statment locking the table to begin with)?
I stopped trying to figure that out.
September 22, 2008 at 11:01 am
Regarding #3 then.
I have had a similar experience where it fixed it:
Look here: http://support.microsoft.com/kb/839279
September 22, 2008 at 10:11 am
Viewing 15 posts - 166 through 180 (of 226 total)