Viewing 14 posts - 121 through 134 (of 134 total)
No Backups or Maintenance was running. I was looking at active processes and nothing strange things were happenging at that time. The query (store proc) is called by aspx page and...
June 9, 2004 at 12:12 pm
Oh, one correction
the query that we are using is dynamic cursor
>>> the query that we are using is NOT dynamic cursor
June 9, 2004 at 11:43 am
Hi SQLBill,
Yes, I actually was on sql cluster admin and watched it failed over. About 30min before sql failed and failed over, we saw hundreds of error messages from web...
June 9, 2004 at 11:39 am
There are a lot more then just start mail for sending mail. Are you using Exchanging Server or POP3?
Here is one article that you might find interesting.
http://support.microsoft.com/default.aspx?scid=kb;en-us;153159
BTW, you don't...
June 8, 2004 at 1:07 pm
Perhaps, some other folks knows good links about this. I usually uses BOL, Books Online, from SQL Server and try all different thing. I know sometimes, BOL is not easy...
June 4, 2004 at 12:18 pm
If System Admins really wants it, he/she can do it especially with Windows Authentication. However, there are a couple ways to prevent System Admins to explore databases.
One of them is...
June 4, 2004 at 11:48 am
You are welcome
BTW, I put this script to find out database file information. I am sure you already knows it but just to...
June 4, 2004 at 11:41 am
For Backup Commend, there is no special about it. You can use any way to backup. Just create backup device and do like this.
BACKUP DATABASE MyDB to MyDBBackup_Device
And put...
June 4, 2004 at 10:50 am
First of all, please feel free to correct me if I am wrong.
Most of time, DBCC SHRINKFILE works but time to time, doesn't work and both Adam and Charlie method...
June 4, 2004 at 10:38 am
I am sure this is not what you want to hear but, let me explain about what I am doing for that just in case..
There...
June 4, 2004 at 10:20 am
Simple answer would be "WITH MOVE" option. Here is from BOL
MOVE 'logical_file_name' TO 'operating_system_file_name'
Specifies that the given logical_file_name should be moved to operating_system_file_name. By default, the logical_file_name is restored to...
June 4, 2004 at 10:05 am
First, sorry this is not an answer that you are looking for. But I would like to let you know that if you don't get any good response soon, I...
June 2, 2004 at 3:58 pm
I'd try use SKIP and NOFORMAT option for that even though SKIP is for checking expired date, I usually put it there for initializing ones. Might not have to be...
June 2, 2004 at 3:45 pm
I use both query below.
SELECT @@VERSION
SELECT CAST(@@SERVERNAME AS NVARCHAR(50)) 'ServerName', RTRIM(CONVERT(Char(20), SERVERPROPERTY('ProductVersion')))
+ ' = ' + RTRIM(CONVERT(Char(20), SERVERPROPERTY('Edition')))
+ ' - ' + RTRIM(CONVERT(Char(20), SERVERPROPERTY('ProductLevel')))
'SQL Server Version'
August 8, 2003 at 3:20 pm
Viewing 14 posts - 121 through 134 (of 134 total)