Forum Replies Created

Viewing 15 posts - 271 through 285 (of 2,636 total)

  • RE: permissions

    Restoring a database from a backup restores everything in the database, including users and permissions.

    If you need to copy only permissions, you'll have to script them. There are several...

  • RE: how to get multiple operators in job notification

    Since you can only use built-in notification for one of those, I would put EXEC xp_sendmail in a couple of job steps for the other two situations. For example,...

  • RE: SQL Server Agent jobs - Modify jobs issue

    Silverfox (9/14/2009)


    kusum.shah (9/11/2009)


    I am a sysadmin on the server. I am able to create a SQL job. However, I am unable to modify the job. Any help would be appreciated.

    You...

  • RE: Copying Tables Between Databases

    My preferred method is to script the table schema in the source database and use the Import/Export Wizard to move the data. I either run the script in a...

  • RE: Running DTS packages

    Any connection in the package that uses Windows authentication will use the credentials of the login executing the package. When the package is executed in a job, the SQL...

  • RE: Can't script out jobs

    Someone has filed a bug report about this http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=371669.

    Apparently, Discover depedency doesn't work for jobs. The workaround is to go to Tools -> Options -> Scripting and...

  • RE: Change Login Name

    I think you're getting that message because the login wasn't renamed in Windows i.e. both logins exist. I think your only option is to add domain\prod_sqluser as a login...

  • RE: Schedule DTS in SQLSERVER 2005

    Well, there was no DTS package option in SQL 2000 jobs either. You run DTS packages in CmdExec steps just like in SQL 2000.

    Create a new SQL Agent job...

  • RE: Database Diagrams questions

    All you're doing by answering "yes" is creating the system tables and stored procedures needed to create and maintain diagrams, so you shouldn't expect any harm.

  • RE: Discover DTS Packages touching specific DB

    You could script the packages to vb files and edit them to search for connections. There's at least one script in SSC's script section that will script all the...

  • RE: Package Roles - Permissions Issue

    I'm pretty sure you can't do what you want using the SSIS roles. You'd have better luck storing the packages in file system folders and restricting access to those.

  • RE: Script maintenance plan made in ssms?

    Because maintenance plans in SQL 2005 are saved as SSIS packages, you can't script the plans. You can, however, save the packages as files to make them portable.

  • RE: Migrate procedure From Sql 2000 to Sql2005

    The statement fails because you're only selecting two columns from t_line. The select list of the subquery must match the column list of the INSERT. The same rule...

  • RE: Permission to Create and Run SSIS?

    A developer doesn't need any SQL Server permissions to create a package because that's done outside of SQL Server in Business Intelligence Development Studio (BIDS). BIDS should be installed...

  • RE: database diagrams

    Describe what you see when you try to create a diagram for the databases it doesn't work. Do you get a message?

Viewing 15 posts - 271 through 285 (of 2,636 total)