Viewing 15 posts - 331 through 345 (of 2,636 total)
In practical terms, they do the same thing: either allow a login to connect to the SQL Server instance or not allow it. They just do it in different...
June 15, 2009 at 1:13 pm
You should look at SQL Agent fixed database roles. SQLAgentReaderRole might suffice for the user you want to view job history. http://msdn.microsoft.com/en-us/library/ms188283(SQL.90).aspx
I don't think there's a way to...
June 12, 2009 at 10:58 am
This is commonly done by importing data from the remote source into a staging table (we have a staging database containing permanent tables) in the destination instance, then truncating or...
June 11, 2009 at 10:12 am
Sorry, you'll have to provide more information or ask a specific question before anyone can help.
June 11, 2009 at 9:55 am
jason brimhall (6/10/2009)
I would prefer to keep the procs in the same database.
I know you'd prefer to keep the stored procedures and tables in the same database, but it might...
June 10, 2009 at 5:16 pm
Here's an example of including the results of a query in the body of an email:
exec msdb.dbo.sp_send_dbmail
@profile_name = 'SQL Server Agent',
...
June 10, 2009 at 4:57 pm
usman.tanveer (6/8/2009)
"
Msg 4305, Level 16, State 1, Line 1
The log in this backup set begins at LSN 149014000003456800006, which is too recent to apply to the database. An earlier log...
June 9, 2009 at 4:53 pm
I think you're asking if you can install two instances of SQL Server on one server. If so, then yes, you can install one default instance (MSSQLSERVER) and one...
June 9, 2009 at 9:50 am
In SQL 2000, the option is also on the Advanced tab of the job step.
June 9, 2009 at 9:23 am
Are you sure you got the error when restoring the differential backup? I've only ever seen that when restoring log backups and I've gotten them out of order. ...
June 8, 2009 at 4:58 pm
I've never had problems executing a package simultaneously. I suppose it would depend on what the package does, though. If it needs exclusive access to something, a file...
June 3, 2009 at 2:18 pm
Okay, good luck. I haven't had any luck getting around the security.
June 3, 2009 at 2:14 pm
See my reply here: http://www.sqlservercentral.com/Forums/Topic728068-146-1.aspx
June 3, 2009 at 12:58 pm
Save the package with a user password and an owner password. Anyone with the user password can execute the package but can't open or edit it. See "DTS...
June 3, 2009 at 12:54 pm
Viewing 15 posts - 331 through 345 (of 2,636 total)