Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 2,635 total)

  • RE: Backing up DTS Packages and Jobs

    Packages and jobs are stored in the msdb database.  Back up the database.

    Greg

    Greg

  • RE: Licensing Issue

    1. No issues with our clusters, but we've been using per process licensing since installation.

    2. I don't think it will affect them at all.

    3. I looked at several of our...

    Greg

  • RE: find objects on file/filegroup

    Maybe you can use this query with a little tweaking.

    select Object_name = o.name,

              Object_type = o.xtype, 

              Data_located_on_filegroup = g.groupname,

              Data_located_on_file = s.name

       from sysobjects o, sysfiles s, sysindexes i, sysfilegroups g

       where ...

    Greg

  • RE: sysdtssteplog

    It's okay to delete from the tables.  There are even stored procedures in MSDB that will do it - sp_dump_dtspackagelog and sp_dump_dtssteplog, though your idea of keeping them for x...

    Greg

  • RE: change db owner name without affecting the objects?

    To find dependencies for the stored procedure, run this in Query Analyzer:

    sp_depends 'dpeter.storedprocedurename'

    Greg

  • RE: Sorting Fields in Design View

    No.  The columns are presented in the order they occur in the table.

    Greg

    Greg

  • RE: Using TargetServersRole to Start a Job I do not own???

    One thing I've read about TargetServersRole is that it's not guaranteed to be supported by MS in the future.  It's security was changed in SP3a and I'm sure that threw...

    Greg

  • RE: Changing ISP''''s

    Just ask for a full database backup of the database on whatever media your new ISP wants.  I assume the database hasn't been created on the new ISP's server yet,...

    Greg

  • RE: Changing ISP''''s

    Can you get a backup of the original database from the first ISP?  That would be better than an export to Access because it would include all the database settings,...

    Greg

  • RE: Returning False from DTS Package Task

    You might be stuck with something kludgy like having the child package update an error table when a task fails and having the parent package query the table on return from...

    Greg

  • RE: Returning False from DTS Package Task

    Try setting in the child package properties logging Tab: Fail Package on First Error. Otherwise even if the task fails, the package does not - and your calling package still...

    Greg

  • RE: Help importing txt files

    Also see "Clustered Indexes" in BooksOnLine.

    Greg

    Greg

  • RE: truncating DTS log files on a regular basis

    Helen,

    Here's an ActiveX Script that will overwrite the log each time the package runs.

    Greg

    http://www.sqldts.com/default.aspx?240

    Greg

  • RE: Searching Text in many stored procedures ?

    I've used this for a couplr of years and it seems to work pretty well:

    -- search for string in stored procedures in DB

    --

    -- note: the reason this joins...

    Greg

  • RE: Concatenate string in DTS package

    Dan,

    You could import into a "staging" table with separate name columns, then concatenate as you move the data from there to your "real" table.

    Greg

    Greg

Viewing 15 posts - 2,206 through 2,220 (of 2,635 total)