Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: query

    It works if u add group by clause. thanks this what i am looking for.

    Thanks

    emamuthu

     

  • RE: Changing a DTS package owner

    There r couple of ways u can get the owner of Dtspackage

    Using selet statment in MSBD database

    select * from sysdtspackages where name ='NFDW_LOAD_46_ETRAK_VER_101'

    go

    Using sys stored procedure

    msdb.dbo.sp_get_dtspackage

    @name=...

  • RE: Changing a DTS package owner

    I very sorry for making mistake in passing a parameter

    msdb..sp_reassign_dtspackageowner

    @name = 'Package Name',

    @id = 'FF18ACDD-3FBF-48FF-8E1D-0CE4038D5EE4',

    @newloginname = 'sa'

  • RE: CALL DTSRUN THRU XP_CMDSHELL ANYONE ??

    master.dbo.xp_cmdshell 'DTSRun /Sservername

    /Npackagename /Uusername /Ppassword'

  • RE: Changing a DTS package owner

    msdb.dbo.sp_reassign_dtspackageowner name, oldid,newid

    This has 3 parameter.

    1. name = Name of the package

    2. oldid= old user name

    (eg) princeton\d34ljls

    3. newname=new username

    (eg) princeton\df2d3r43

Viewing 5 posts - 1 through 5 (of 5 total)