Forum Replies Created

Viewing 15 posts - 1,891 through 1,905 (of 2,486 total)

  • RE: Designer Issues

    Having played with RS for a few months myself I find it extremely good for a beta product.

    As for your "page break after a group" gripe. Well you said it...

  • RE: DB Maintenance Plan

    A couple of things to consider when setting up the maintenance plan,

    1) What's the uptime requirement for the database?

    2) How important is the data that is contained in the database,...

  • RE: Setting DTS Global Variable

    To set Global Variables and save the changed values you will need to open the package and save it. Doing this via the DTS Designer will preserve the layout but...

  • RE: compiling procs

    If the stored procedure are all in one file you can just run that file using OSQL. If they're in individual files you could do a bit of coding in...

  • RE: How to know calling stored proc name

    Take a look at the Meta Data functions.

    @@PROCID returns the ID of the current procedure, OBJECT_NAME() returns the name of the database object. Used together OBJECT_NAME(@@PROCID) gives you the name...

  • RE: DTS Numbers export to Excel ends up as text

    Don't use the '$' character in the name.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Setting Connection Options via T-SQL

    If someone wanted to get really creative they could put togther a dynamic SQL statement based on syscolumns ...

    Pass in a table name, retrieve the object...

  • RE: large table

    You could also try horizontal partioning and placing the partitions on seperate filegroups which reside on different physical raid volumes. The same can be done with the indexes. Check the...

  • RE: Application Timeouts

    Is there any particular reason you are using the ROWLOCK hint?

    If not remove it and let the server handle the locking.

    From Books Online,

    quote:


  • RE: Simple "IF" Logic in Package

    Take a look at the following,

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

    Do you want to fail the task or simply not execute it?

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Setting Connection Options via T-SQL

    Well I'm impressed wasn't to bad a guess, at least it was something to do with tabbing

    Hope this helps

    Phill...

  • RE: Setting Connection Options via T-SQL

    Thanks noeld, whats 11 ???

    Don't have my ASCII table handy.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Setting Connection Options via T-SQL

    You could try outputting your results as one long formatted column using the ASCII code for the tab character (I think it's 11).

    EG:

    
    
    SELECT Column1 + Char(11)...
  • RE: Search in DTS packages

    I've just posted another VBScript that sets the DTS Package Logging properties for groups of DTS Packages. It's titled "Set logging properties for group of DTS packages". It should be...

  • RE: DTS Numbers export to Excel ends up as text

    quote:


    All I need now, for life to be perfect, is for someone to tell me how I get commas in the thousands...

Viewing 15 posts - 1,891 through 1,905 (of 2,486 total)