Forum Replies Created

Viewing 15 posts - 376 through 390 (of 2,487 total)

  • RE: Target Servers and upgrade to SQL Server 2005

    I do recall reading in one of the upgrade doco's (sorry can't recall which one at the moment) that specified that all target servers should be upgraded before the master....

    --------------------
    Colt 45 - the original point and click interface

  • RE: DBA vs Sys Admin

    From a DBA's perspective, first and foremost you need to guarantee the databases are successfully being backed up. Once you have a successful disk backup the file can be shunted...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Zip and Unzip files using Activex

    I'd just use something like GZip and call it via WScript.Shell in the ActiveXScript task.

    Much, much easier.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Universally available ini file

    Also, we have a MSX/TSX setup so for some of our older DTS packages that don't read their config dynamically, we alter the job on the MSX server and then...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Universally available ini file

    We run DTS packages on multiple servers and they each read their config info from a local table.

    For administration, each of these tables are edited via a central ASP.Net...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How to get Email address from Xchange Server from SQL Server

    If you're using Active Directory, you could setup a linked server to run LDAP queries.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Use T-SQL to read backup filename from disk

    You can use the stock standard DIR command executed via xp_cmdshell. Just insert the result into a temp table.

    EG:

     CREATE TABLE #dir (
      [ID] int IDENTITY(1,1)
      , [Dir] varchar(255) 
    )
     
     INSERT INTO #Dir([Dir])
     EXEC...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Backup User, Master and Msdb DBs to the same .bak file

    Just because you can do something doesn't mean it's a good idea

    It would probably be better to backup to seperate files. That way...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Universally available ini file

    We use a database table to store this info. If the server is up and running then the table is available.

    In fact we store all Global Variables for each package...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Saving Query results as CSV file in SQL Server 2005

    Not to sure about 2005, but in SQL 2000 RS it was by design. We had to include an extra device info parameter to output ANSI characters.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Saving Query results as CSV file in SQL Server 2005

    It's probably creating the CSV file in unicode format. SQL 2000 Reporting Services has the same issue.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Please fix blogs

    As noted on the home page the guys are aware of this issue and are trying to fix it ASAP.

    I'm sure they're pulling many a late night to fix the...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Can you dynamically re-schedule a DTS job?

    What I would do is have a short VBScript as the first step of the SQL Agent Job that checks for the file. Then just set the appropriate amount of...

    --------------------
    Colt 45 - the original point and click interface

  • RE: BAS file DTS using vbs

    That's easily done with a few global variables and a Dynamic Properties task.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQLServerCentral.com 5 Year Anniversary

    300,000+ members and still growing is a testament to the great job done by all you guys.

    I can't count the number of times I've come here to find the solution...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 376 through 390 (of 2,487 total)