Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 2,486 total)

  • RE: MOM for SQL monitoring

    We implemented Servers Alive <http://www.woodstone.nu/salive>

    Good all-round monitoring and alerting for all servers/apps. Easy to install and setup.

    Price is good as well.

     

  • RE: Best Practaces

    Well to be a fly in the ointment, personally, I disagree with Steve. Running the backups to a single backup device you run the risk of losing all your backups if...

  • RE: Edition of RS/SQLServer2k

    There are three editions of SQLRS, standard, enterprise and developer. The evaluation edition is effectively a time-limited install of the developer edition. You must have the equivalent SQL Server license...

  • RE: SQl Server Licenses Issue along with reporting/analysis services

    Think about it like this. Your SQL Server license allows you to run SQL Server Database Engine, Analysis Services and Reporting Services.

    You'll need to purchase an additional license when you...

  • RE: Dynamic Properties using INI file -- Can I read the key value

    For info on how to pass info back to the calling package, take a look at this article on techniques used in SQL Server BI Accelerator. Pay special attention to...

  • RE: Reporting Services!

    While it is available worldwide, the demand for CD's has outstripped production. We finally got our CD's yesterday after putting in the request the day after release.

    The article is a...

  • RE: Programmatically change PWD in all connections in all DTS packages

    I keep parameters like these in a table within my locked down DBA only database. Then in executing the package I pass in necessary global variables (server name, user id,...

  • RE: DTS - fault tolerance

    In my experience it is best to avoid the "on completion" constraint. It is much better and safer to setup your tasks to avoid failures (as illustrated by rmarda) and...

  • RE: Unable to type in Forum Message box! Help! WTF?

    For what it's worth I've noticed that you can't type in the box until the page has finished loading all the icons and stuff.

     

  • RE: Spilt string into seperate fields

    Jonathan, interesting use of PARSENAME, I'll have to remember that one. would I be correct in saying that it doesn't work if you have 6 or more data elements to...

  • RE: Spilt string into seperate fields

    For interested parties, if anyone has a nicer solution feel free to squawk.

    SELECT 
     Account 
     , Address
     , REPLACE(LEFT([Address], CHARINDEX(';', [Address])
       ), ';', '') as Address1
     , REPLACE(SUBSTRING([Address]
       , CHARINDEX(';', [Address])
       , CHARINDEX(';', [Address],...
  • RE: Spilt string into seperate fields

    mccork, thanks. Now maybe I'll get something to work.

    5409045121009, I'll need to do this for 300k+ records so T-SQL is definately a preference...

  • RE: How Do I Add A Function In SQL DTS That I Can Call From other Functions

    DTS doesn't have any concept of "global" code. Looking at the function you've provided, why wouldn't you just use the built-in replace function and do away with the extra function...

  • RE: DTS Error debugging question

    If you're using the TransferObjects task then you can check the log file created by that task. It's usually in "C:\Program Files\Microsoft SQL Server\80\Tools".

    In this directory, you'll find a...

  • RE: MS Technet article for Yukon DTS

    I would say that the developers that have written a lot of VBScript to get around some of DTS's limitations are going to be in for a lot of work...

Viewing 15 posts - 1,801 through 1,815 (of 2,486 total)