Viewing 15 posts - 196 through 210 (of 266 total)
Because he is not inserting the table owner name. If he used master.dbo.sysprocesses then he wouldn't need the double '..' DBO is assumed if the owner(schema) not specified.
Hope...
November 7, 2003 at 12:26 pm
Lou!!! Tell me about this feature of cutting and pasting...please. I have been needing this forever and couldn't find any way to do it.
BTW, I live by Terminal...
October 14, 2003 at 8:52 am
Make sure you don't have the datatype bigint in your SQL table. Also check that any bit fields have a default value and that none of the records have...
July 30, 2003 at 1:35 pm
sp_msforeachdb 'use ?;exec sp_dboption ?,''autoclose'',''false'''
This will do it. You get errors about the master and tempdb, however, it appears to work on the rest of the databases.
July 29, 2003 at 2:51 pm
I haven't used it yet, but I found 231619 at support.microsoft.com that talks about how to use the SQLIOStress Utility to simulate I/O on your server.
Michelle
July 11, 2003 at 7:11 am
srvinfo comes with an Operating system's resource kit. I found it in NT 4.0's copy but found references in more recent kits. Unfortunately it isn't one of the...
June 16, 2003 at 3:00 pm
Make sure the first row has a value in that column. DTS seems to use the first row to generate the structure and if doesn't have some value, then...
June 16, 2003 at 9:01 am
I've seen it. I have had it. It is very hard to troubleshoot and I don't have much info for you.
Check to see if your machines have distinct identities...
June 11, 2003 at 12:29 pm
We take a different approach. I reboot weekly. Every Friday night I have a 4 hour window when users know the SQL Servers won't be available. I...
June 11, 2003 at 11:07 am
sp_serveroption @server = 'SERVERNAME'
,@optname = 'DATA ACCESS'
,@optvalue = 'TRUE'
Execute this on the machine you want to remotely access.
June 10, 2003 at 7:28 am
sp_msforeachdb 'use ?;insert into server.db.dbo.database_files_FOR_BKUP exec sp_helpfile'
GO
June 6, 2003 at 9:13 am
My understanding is that you must use the select statement in a string and then execute the string. So your code would look like this:
USE fai
Go
DECLARE @SearchWord varchar(30)
DECLARE @cStr...
June 2, 2003 at 8:51 am
I have received these messages when there is too much of a load on the server and it is about to crash. Seems like the Server cannot get the...
May 29, 2003 at 11:32 am
I liked the test...I'm disappointed in what I don't know...but I keep learning everyday.
ON the question 14 about changing your SQL Server login's password, I chose the wrong answer because...
May 29, 2003 at 10:18 am
I'm not good with HTML, so I sent the pictures via email to you. Does this help?
"Hope this isn't too big for your email, but I don't really know...
May 28, 2003 at 6:41 pm
Viewing 15 posts - 196 through 210 (of 266 total)