Viewing 15 posts - 31 through 45 (of 63 total)
Found my problem. I had a typo. I needed a space before -E.
March 11, 2009 at 12:32 pm
I am trying to setup a scheduled task using a .cmd file. I want to backup the databases. I have a script, but when the command runs the...
March 11, 2009 at 12:07 pm
This one ended up helping the most.
March 4, 2009 at 8:12 am
I can't get sqlcmd to run my backup script through scheduled tasks. How would you setup the run line to call the sqlcmd and script?
Thanks.
February 27, 2009 at 6:55 am
That worked! I had to add it as admin on the network level.
Thank you.
February 20, 2009 at 12:00 pm
I have already tried Method 1: Use a SQL Server Agent proxy account.
Create a SQL Server Agent proxy account. This proxy account must use a credential that lets SQL Server...
February 20, 2009 at 11:40 am
I also noticed the following logins:
PRODUCTION\SQLServer2005MSFTEUser$PRODUCTION$MSSQLSERVER
PRODUCTION\SQLServer2005MSSQLUser$PRODUCTION$MSSQLSERVER
PRODUCTION\SQLServer2005SQLAgentUser$PRODUCTION$MSSQLSERVER
They should be:
DEVELOPMENT\SQLServer2005MSFTEUser$DEVELOPMENT$MSSQLSERVER
DEVELOPMENT\SQLServer2005MSSQLUser$DEVELOPMENT$MSSQLSERVER
DEVELOPMENT\SQLServer2005SQLAgentUser$DEVELOPMENT$MSSQLSERVER
Would below script fix these as well?
exec sp_dropserver PRODUCTION
GO
exec sp_addserver DEVELOPMENT, 'local'
GO
February 19, 2009 at 8:13 am
The OS recognizes the development server name correctly. It seems like everything recognizes it correctly except @@servername.
February 19, 2009 at 8:03 am
The_SQL_DBA (1/8/2009)
January 8, 2009 at 12:55 pm
They are neither domain admins or local admins. Builtin\Administrators is allowed access to SQL Server. They are using Windows Authentication to connect.
January 8, 2009 at 9:05 am
Unfortunately updates are being done as inline SQL. Perhaps a trigger that accounts for where the SQL command is coming from would work.
January 8, 2009 at 8:23 am
They do not have any server roles. Database roles include public and a role setup by the application.
Adding db_denydatawriter will not stop them from making updates through the application...
January 8, 2009 at 7:32 am
Viewing 15 posts - 31 through 45 (of 63 total)