Viewing 15 posts - 211 through 225 (of 463 total)
SQL Server needs to have all the drives which it would be using included under resource depenedencies. Can you verify the dependencies are still in place. Also verify that the...
November 16, 2004 at 10:19 am
Below are some of the responsibility
Full/Tran Backups
Space Requirement
Fragmentation
Security Audit
We have scripts which generate reports for all the above duties. We check backups and space reqt. daily, fragmentation weekly, and audit...
November 16, 2004 at 10:13 am
Can you post the output of
select user_name(memberuid) as username ,user_name(groupuid) as group_name from sysmembers
November 16, 2004 at 10:06 am
select object_name(id),case action when 26 then 'REFERENCES'
when 178 then 'CREATE FUNCTION'
when 193 then 'SELECT'
when 195 then 'INSERT'
when 196 then 'DELETE'
when 197 then 'UPDATE'
when 198 then 'CREATE TABLE'
when 203 then 'CREATE...
November 16, 2004 at 9:56 am
we run Mcafee on our Clusters but we have the following exclusions.
.mdf
.ldf
.bak
c:\winnt\cluster
The reason why anti-virus software is not recommended on SQL servers is if you have a big data/log file and...
November 16, 2004 at 9:43 am
Greg,
Not sure about the time but try to break your transaction into smaller chunks. If your transaction gets killed in between for any reason, you don't end up rolling back...
October 14, 2004 at 12:32 pm
Don't forget to include members of the fixed database roles i.e. db_datareader, db_datawriter etc.
October 14, 2004 at 11:42 am
By default, bcp picks up the default instance of the local server. For clusters, you have to specify the virtual server name and the instance name(if applicable)
October 13, 2004 at 9:18 am
Kevin,
you can try using suser_sname or suser_name for SQL 7.0 to capture the user who is running that session.
October 12, 2004 at 11:31 am
There was a bug post sp3 that if you try running your job under a windows account, it will fail even if you have access. I remember running into this....
October 12, 2004 at 11:28 am
The above suggesstion is probably the best solution. below is a small explaination.
The transaction log is divided into virtual log files. When you truncate a log the virtual log files...
October 8, 2004 at 12:02 pm
You need to shut down the trace and close it before viewing.
exec sp_trace_setstatus 2,0
exec sp_trace_setstatus 2,2
October 7, 2004 at 12:58 pm
Can you just write a small vbscript and verify that there is nothing wrong in the connection string which you have mentioned. Try also logging into the server through query ...
October 7, 2004 at 10:19 am
FYI -
Below is the definition for DBCC UPDATEUSAGE from books online.
Reports and corrects inaccuracies in the sysindexes table, which may result in incorrect space usage reports by the sp_spaceused...
October 7, 2004 at 10:08 am
October 7, 2004 at 8:29 am
Viewing 15 posts - 211 through 225 (of 463 total)