Viewing 15 posts - 1,096 through 1,110 (of 1,160 total)
thinknight (3/2/2009)
Hi,Is there any way to succeed this without assigning sysadmin role?
You can find more information here
March 2, 2009 at 11:30 pm
homebrew01 (3/2/2009)
There's nothing in the index for dm_*. Any idea why not ? The MSDN website has info though:http://msdn.microsoft.com/en-us/library/ms188754(SQL.90).aspx
I got it from querying the sysobjects table...
March 2, 2009 at 10:34 pm
Hi Shine,
Looks like the Service Principal Name (SPN) for SQL Server is missing. I feel instead of the the server name, if you use localhost\InstanceName or .\Instance name, the package...
March 2, 2009 at 9:39 pm
ab5sr (3/2/2009)
Sweet script. Yours or one you found?
Thanks. Its mine
March 2, 2009 at 9:01 pm
You may find this link useful.
March 1, 2009 at 11:27 pm
I think this snip should help you.
SELECT A.NAME,B.TOTAL_ELAPSED_TIME/60000 AS [Running Time],
B.ESTIMATED_COMPLETION_TIME/60000 AS [Remaining],
B.PERCENT_COMPLETE as [%],(SELECT TEXT FROM sys.dm_exec_sql_text(B.SQL_HANDLE))AS COMMAND FROM
MASTER..SYSDATABASES A, sys.dm_exec_requests B
WHERE A.DBID=B.DATABASE_ID AND B.COMMAND LIKE '%RESTORE%'
order...
March 1, 2009 at 11:24 pm
Hi Art,
You may want to check the Service Principal Name (SPN) for the service account. More information about SPNs is available here
SetSPN utility can be downloaded from here
February 27, 2009 at 8:54 pm
Art,
Please check whether "BUILTIN\Administrators" have access to the SQL Server and also try adding the user again as below.
Grant [domain\user]
EXEC sp_grantlogin [domain\user]
--Add that account to the sysadmins role:
EXEC sp_addsrvrolemember @loginame...
February 26, 2009 at 11:43 pm
Jeff Moden (2/26/2009)
Can't use -E from a command prompt... only from SQL Server.
I disagree with this. I have tried using -E (Trusted connection) and it works well from...
February 26, 2009 at 11:33 pm
To stop and start SQL Services, the user must belong to the "System Administrators" group. Is your SQL login part of that group?
February 26, 2009 at 11:06 pm
Which Edition of SQL Server are you using and what is the Operating system?
February 26, 2009 at 10:58 pm
You can also try executing DOS commands using xp_cmdshell
February 26, 2009 at 10:15 pm
I am not sure about the option to "Enable/Disable" debugging on all queries. I doubt this could also be one of the reason.
The shortcut for debugging is "Alt + F5"
We...
February 26, 2009 at 10:10 pm
Please try using the "Server Name" or the "IP Address" instead of "localhost".
February 26, 2009 at 10:04 pm
Viewing 15 posts - 1,096 through 1,110 (of 1,160 total)