Viewing 15 posts - 76 through 90 (of 2,635 total)
If your goal is to execute a package in a SQL Agent job, you can use DTSRUN in a job step. You should find details in Books Online. ...
Greg
March 2, 2011 at 5:27 pm
This script claims to be able to script out all packages in a SQL instance so they can be searched.
http://www.sqlservercentral.com/scripts/Miscellaneous/31613/
Greg
February 16, 2011 at 1:03 pm
Were you connected as employeelogin or is emp owned by employeeloginuser? If either of those is true, the message makes sense.
Greg
February 9, 2011 at 12:16 pm
Generally, you would create a login first, then create the user.
To create the user:
create user csvuser (see BOL for syntax)
The user won't have any permissions for the table by default,...
Greg
February 8, 2011 at 3:09 pm
User mapping in the GUI attempts to create the user in the database you're trying to map to, thus the error you got.
Use sp_change_users_login to remap the existing database user...
Greg
February 8, 2011 at 2:45 pm
You can grant the EXECUTE permission on each stored procedure that you want the user to be able to run. If you do that, the user won't need the...
Greg
February 4, 2011 at 10:35 am
balasach82 (2/4/2011)
2. Is there a way to find the Server name in the job/dts i.e., A Test environment DTS/SSIS would be pointing to Prod DB. How to identify such jobs/DTS?
The...
Greg
February 4, 2011 at 9:47 am
I've used a script in the past that I can't seem to find right now, however, a search of the script section here at SSC shows a couple of scripts...
Greg
February 1, 2011 at 10:26 am
ckingtaylor (1/20/2011)
Greg
January 21, 2011 at 10:09 am
Try this:
select distinct o.name, o.type_desc from sys.objects o
where OBJECT_DEFINITION(o.object_id) like '%col1%'
order by o.name
Greg
January 13, 2011 at 10:58 am
SQL Server logins are instance dependent. So, in your example, the login on ServerB wouldn't be affected by changes made on ServerA.
Greg
January 11, 2011 at 12:06 pm
1. Yes, that's all you'd have to replace.
2. It's up to you. It's just two ways to achieve the same thing.
Greg
January 10, 2011 at 11:38 am
I'm not clear about whether you want to import the view itself or the data that is returned by the view.
Because the Import Wizard imports views as tables,...
Greg
January 10, 2011 at 10:48 am
OCTom (12/29/2010)
There needs to be...
Greg
December 29, 2010 at 9:47 am
Viewing 15 posts - 76 through 90 (of 2,635 total)