Forum Replies Created

Viewing 15 posts - 706 through 720 (of 2,635 total)

  • RE: Permission to create database?

    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...

    Greg

  • RE: SQL Server Database upgrad

    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....

    Greg

  • RE: transfer from one server to other

    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...

    Greg

  • RE: Scheduling JOB for SSIS Package

    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...

    Greg

  • RE: Can we use DTS package from SQL server 2000 in 2005

    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...

    Greg

  • RE: Unable to View Jobs Even After Adding to MSDB SQLAgent... Roles

    Is SQL Server Agent running? If it is, what do you see when you expand it?

    Greg

  • RE: deleted record andhow to restore

    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...

    Greg

  • RE: Running all the packages at once

    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.

    Greg

  • RE: EMERGENCY: DTS stops working

    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...

    Greg

  • RE: deployed package is running without errors on only deployed user account not for other users?

    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...

    Greg

  • RE: How To Restrict Permissions in SQL Management Studio

    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...

    Greg

  • RE: EMERGENCY: DTS stops working

    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...

    Greg

  • RE: Logins

    USE dbname

    CREATE USER Scott

    FROM LOGIN Scott

    SP_ADDROLEMEMBER 'db_datareader', 'Scott'

    Do the same thing for smith.

    Greg

  • RE: COPY JOBS FROM SQL SERVER 7.0 TO SQL SERVER 2000

    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.

    Greg

  • RE: Getting failed jobs in the last hour

    Try changing WHERE DATEDIFF(dd,CONVERT(VARCHAR(8),sjh.run_date), GETDATE()) <= 1

    to

    WHERE DATEDIFF(hh,CONVERT(VARCHAR(8),sjh.run_date), GETDATE()) <= 1

    Greg

Viewing 15 posts - 706 through 720 (of 2,635 total)