Viewing 15 posts - 391 through 405 (of 1,248 total)
You may turn on the audit for login in SQL Server.
Check the log file and remove the inactive logins.
May 7, 2008 at 1:52 pm
Did you turn on Database Mail?
Do your stand alone server and cluster in the same domain (whether or not you need a different mail server)?
May 7, 2008 at 1:49 pm
Are you sure that you did not highlight other code?
I copied your code and ran it on my test SQL 2005 without any issue.
May 7, 2008 at 12:33 pm
It is a space issue.
My understanding is that Data Protector is an HP tool for backup/recovery.
Find the path of logs for this tool and check its space.
Best luck.
May 5, 2008 at 3:10 pm
What errors did you get?
Here are some possible reasons, quoted from other sources.
Microsoft SQL Server 2000 64-bit is for Itanium CPU's only. It does not work on an x64 cpu...
May 5, 2008 at 3:01 pm
Here are my input.
When you add node from the active node, SQL Server will automatically installed on the newly added node.
You do not have to restart existing node. But you...
May 5, 2008 at 2:56 pm
Check the key word, master server. Using master server, you can control your jobs on multiple servers.
May 5, 2008 at 2:50 pm
How about something as below?
CREATE PROC myProc WITH ENCRYPTION AS
SELECT * FROM sysusers
The disavantage is that no one can view it at all. You have to keep your source...
May 5, 2008 at 2:47 pm
How about something as below?
EXEC master..sp_MSForeachdb '
USE [?]
IF DB_ID(''?'') > 4 --dont do system dbs
BEGIN
EXEC sp_msforeachdb ''GRANT EXEC on myProc TO PUBLIC''
END
'
May 5, 2008 at 2:37 pm
Did you try to update your statistics, which is used in estmated execution plans?
May 5, 2008 at 2:21 pm
You may try to build your string, then execute it.
DECLARE @var NVARCHAR(2000)
SET @var = 'SELECT * FROM Server_inventory WHERE INSTNC_NM = ''MSSQL1'''
EXEC sp_executesql @var
May 5, 2008 at 2:19 pm
As far as I know, it is a mission impossible.
May 1, 2008 at 10:54 am
Drop the data saved in the master.dbo.sys.sysdatabases and remove related data and log files.
May 1, 2008 at 10:50 am
Could we grant VIEW and UPDATE a DTS package without granting EXECUTION to a user?
Many thanks in advance.
May 1, 2008 at 10:43 am
Have you ever try to set ISOLATION LEVEL? Its syntax is below.
SET TRANSACTION ISOLATION LEVEL
{ READ COMMITTED
...
May 1, 2008 at 8:48 am
Viewing 15 posts - 391 through 405 (of 1,248 total)