Viewing 15 posts - 76 through 90 (of 155 total)
Why are you trying to restrict another DBA, just out of curiosity?
May 28, 2008 at 7:28 am
What you see in Object Explorer, is actually a connection to the server using your local machine credentials, not any SA credentials. When you click on the server in...
May 28, 2008 at 7:25 am
What account is SQL Agent running under? Is it the same domain account as the SQL Server?
Have you had a look here? http://support.microsoft.com/kb/315886
or here? http://support.microsoft.com/?id=263556
Keep in mind that...
May 28, 2008 at 7:00 am
You can not backup TempDB, and you should try to steer clear from auto-shrink. It is much better to size your databases accordingly from the start to allow you...
May 27, 2008 at 8:46 am
If the account you are using in Object Explorer (this is your local Windows account) is a local administrator on the server in question (either explicitly, or through an group),...
May 27, 2008 at 8:32 am
Changing the password in the connection string not an option then? A new app password never hurt anyone 😉
May 23, 2008 at 8:08 am
jschroeder (5/22/2008)
But I am having connection problems that seem to be related to the fact that my account is not assigned to the right roles.
Please elaborate on what connection problems...
May 22, 2008 at 11:45 am
Just a guess, since I don't have an app ready to test this with, but sounds like the SQL login has "Enforce Password Policy" and "User must change password at...
May 22, 2008 at 9:54 am
Recommend you read up on this in Books Online (take note of the warning that this feature will be removed in future versions):
May 22, 2008 at 7:26 am
Have you tried the trusty "Script action to new query window"?
May 22, 2008 at 5:43 am
If you could post more of the code, it will help.
May 22, 2008 at 5:36 am
This is not mine, but here ya go anyway.
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
ALTER PROCEDURE sp_diskspace
/*** Borrowed from SQL Stripes Disk Size Stored Procedure ***/
AS
SET NOCOUNT...
May 22, 2008 at 5:33 am
You can see if these tips help:
1. Enable ad hoc distributed queries, by running:
EXEC sp_configure 'show advanced options', 1
EXEC sp_configure 'ad hoc distributed queries', 1
RECONFIGURE
2. Allow ad-hoc access to the...
May 22, 2008 at 5:24 am
Viewing 15 posts - 76 through 90 (of 155 total)