Viewing 15 posts - 751 through 765 (of 2,636 total)
So, you must have figured out how to create a stored procedure. The procedure and the tables is accesses must have the same owner. In our shop, all...
October 6, 2008 at 3:57 pm
You should be able to delete any of the log files except the current one, which is the one with no extension. The older log files would have the...
October 6, 2008 at 3:21 pm
Open the package in DTS Designer and click on "Disconnected Edit" under the Package menu. Expand Steps, highlight the one you're interested in and you'll see the details ...
October 6, 2008 at 10:12 am
You can also create a server group in the "Registered Servers" pane. See "Registered Servers" under the View menu in SSMS.
October 6, 2008 at 10:00 am
Specifically, use sp_change_users_login to link the user with the login on the development server.
October 6, 2008 at 9:55 am
Best practice is to use stored procedures and only grant users EXECUTE permission rather than table permissions, but you can grant permissions at the database level using GRANT or by...
October 6, 2008 at 9:35 am
Unless the permission box is checked, the permission isn't granted to the user or role. However, if a user has execute permission for a stored procedure that selects, inserts,...
October 3, 2008 at 10:56 am
You'd have to do that as part of your queries. You could insert the selected data into a table or use sp_send_dbmail to send an email message with the...
October 3, 2008 at 10:44 am
1. Expand SQL Server Agent in SQL Server Management Studio
2. Right-click on Jobs and select New Job...
3. On the General page, give the job a name
4. On the Steps...
October 2, 2008 at 5:01 pm
If the config file path was wrong in the job step, wouldn't that indicate that the job was changed rather than the package?
Unfortunately, I don't think a modification history of...
October 2, 2008 at 2:50 pm
Ang,
I think you almost answered your own question. A differential backup backs up changes since the last full backup while a transaction log backup backs up changes since the...
October 2, 2008 at 2:43 pm
or sp_helprotect 'table_name'
October 2, 2008 at 2:35 pm
It's used for multserver job administration where one server is the master and one or more servers are target servers. See "Multiserver Administration" in BOL.
October 1, 2008 at 1:01 pm
No wonder the confusion. That looks like a different question.
Does this query work for you?:
-- CHANGE LOGINNAME TO THE LOGIN YOU'RE INTERESTED IN
set nocount on
declare @name sysname,
@sql nvarchar(600)
if...
October 1, 2008 at 12:45 pm
Viewing 15 posts - 751 through 765 (of 2,636 total)