Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 2,636 total)

  • RE: Job schedule - setting exceptions

    How about this?

    Create 3 schedules for the partition process:

    Monthly 1st Saturday of every 1 month

    Monthly 2nd Saturday of every 1...

  • RE: Problems with sending email from the stored procedure

    I think the underlying cause is the same on both instances. SQL Server Service must run as a domain account in order to send mail using xp_sendmail. ...

  • RE: Maintenance plan jobs suspended due to errors.

    Could SSIS have been accidentally uninstalled? Confirm that the service exists in SQL Server Configuration Manager.

  • RE: Minimum permissions requred to edit DTS Packages in 2005.

    Granting permissions on sysdtspackages will achieve some of the same. Sysdtspackagelog, sysdtssteplog, and sysdtstasklog are seperate tables, but they're only important when executing a package.

  • RE: Internet 2005 db copy across data

    Adam,

    1) I think you're right about pulling rather than pushing the data if you can't put a package and a job on the SQL 2005 instance.

    2) You can select the...

  • RE: Minimum permissions requred to edit DTS Packages in 2005.

    If you only want developers to work with legacy DTS packages, try creating a database role in msdb e.g. DTS_Developer and granting it EXECUTE permission to these stored procedures:

    sp_enum_dtspackagelog

    sp_enum_dtspackages

    sp_enum_dtssteplog

    sp_enum_dtstasklog

    sp_get_dtspackage

    sp_get_dtsversion

    sp_drop_dtspackage

    sp_add_dtspackage

    Add developers...

  • RE: Database name change

    The same way you'd rename any database. Either right-click in SSMS and select 'rename' or user sp_renamedb.

    sp_renamedb 'Client.Database', 'NewDatabase'

    or Alter Database

    alter database [Client.Database] modify name = [NewDatabase]

  • RE: Internet 2005 db copy across data

    Have you tried using DTS on the SQL 2000 instance to import from the SQL 2005 database or SSIS to export to SQL 2000? While you can't register 2005...

  • RE: Introduction to DTS in SQL Server 2005

    mtassin (2/1/2008)


    Works great when you have one to open... some of us have made job transitions to SQL 2k5 only shops... :/

    but I would like to occasionally make new...

  • RE: The switch to Oracle

    I haven't worked with Oracle since we moved to SQL Server, but I got a lot of info from these sites. I recommend getting the classroom training as soon...

  • RE: Introduction to DTS in SQL Server 2005

    Heh, don't tell anyone, 😉 but you can create a new DTS package in SSMS by opening an existing legacy DTS package and saving it with a new name. ...

  • RE: DTS in to 2000 moving to SSIS in 2005

    Packages in jobs run in the security context of the SQL Server Agent service account regardless of the job owner. If the SQL Servre Agent account is not a...

  • RE: ROLES Permissions got deleted

    Try this. I'll bet you can use it to create scripts.

    declare @username as varchar(50)

    set @username = 'your role'

    select O.name, U.name,permission_name from sys.database_permissions

    join sys.sysusers U on grantee_principal_id = uid

    ...

  • RE: MS Sql Server 2000 to MS Sql Server 2005

    To tell the truth, I usually add logins in SQL Server Management Studio though I have created scripts using CREATE LOGIN. I haven't had any particular problem with it...

  • RE: Data Import/Export Wizard

    And SSIS uses Bulk Insert which is a lot faster when copying a large amount of data.

Viewing 15 posts - 1,216 through 1,230 (of 2,636 total)