Viewing 15 posts - 706 through 720 (of 2,636 total)
First, when you grant access to a SQL Server instance, you create a login. When you grant that login access to a database in the instance, you create a...
October 24, 2008 at 9:06 am
Have you looked in BooksOnLine? From BOL 'Create Database (Transact-SQL):
Permissions
Requires CREATE DATABASE, CREATE ANY DATABASE, or ALTER ANY DATABASE permission.
To maintain control over disk use on an instance...
October 24, 2008 at 8:49 am
It's normal behavior for a database to remain at it'a original compatibility level after being upgraded to SQL 2005. sp_dbcmptlevel is the correct way to change the compatibility level....
October 24, 2008 at 8:46 am
You didn't mention if the packages are stored in SQL Server or in the file system. An advantage of storing packages as .dtsx files is you can copy them...
October 23, 2008 at 5:26 pm
You'll need to change ProtectionLevel to EncryptAllWithPassword or EncryptSensitiveWithPassword, supply the password in the command line in the job step or in a config file, and grant the login that...
October 23, 2008 at 5:10 pm
DTS Packages will still work in SQL 2005. Packages are not automatically upgraded when you upgrade to SQL 2005 and if you migrate i.e. transfer everything from a SQL...
October 23, 2008 at 4:58 pm
Is SQL Server Agent running? If it is, what do you see when you expand it?
October 22, 2008 at 5:14 pm
Jack Corbett (10/22/2008)
Restore the the database to another location (database) and then select from the restored database to the production database.
I agree with Jack, but you'll have to figure out...
October 22, 2008 at 11:00 am
You can create a 'master' package that has 10 ExecutePackageTasks, one for each package you want to execute. Then, you can just execute the 'master' package.
October 22, 2008 at 10:53 am
I suggest you make sure logging is enabled in the first child package and step through it like you did with the master package. If the step that is...
October 21, 2008 at 2:41 pm
If you set the package ProtectionLevel to EncryptAllWithUserKey or EncryptSensitiveWithUserKey, you're the only one who can execute it. You'll have to set ProtectionLevel to EncryptAllWithPassword or EncryptSensitiveWithPassword to...
October 21, 2008 at 2:36 pm
Is Builtin\Admininstrators a member of the Sysadmin server role? If you want to restrict the permissions of the DBAs in particular databases, you'll have to remove Builtin\Administrators from Sysadmin...
October 21, 2008 at 2:31 pm
You've just revealed some new information. So there's a master package with 5 Execute Package tasks. Do each of the child packages have logging enabled? Have you...
October 21, 2008 at 2:23 pm
USE dbname
CREATE USER Scott
FROM LOGIN Scott
SP_ADDROLEMEMBER 'db_datareader', 'Scott'
Do the same thing for smith.
October 21, 2008 at 11:12 am
You could try the Transfer Jobs Task in DTS. I've only used it once, so I can't offer much advice about it. I've mostly used scripting.
October 20, 2008 at 4:44 pm
Viewing 15 posts - 706 through 720 (of 2,636 total)