Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 1,353 total)

  • RE: Career Help

    I also started as a developer, albeit as one who had a knack for designing databases from using Access.  Eventually my knowledge of SQL grew, and I become the de...

  • RE: DTS giving error when run as job

    Don't use sa.  You should have a domain SQL Server account which SQL server can use to run jobs.  This will allow it to run jobs that go across servers...

  • RE: Call Excel functions from SQL stored procedure

    Here's some code I use to run an excel macro called update once my datawarehouse has finished populating.  Use the macro to call the function you want.

    November 18, 2004 at 7:32 am

    #530664

  • RE: error creating text file with dynamic properties in DTS pkg

    When you write the code producing the name of the file, the file actually has to exist, or you get the file not found error.

    You could probably get around this...

  • RE: Print in DTS Package

    To do that last one requires SQL2K or better, because earlier versions don't have the ability to execute a step.

  • RE: Resetting the sa password

    An administrator can change the sa password in the QA without knowing the current password using sp_password.  Eg

    sp_password Null, 'New Password', 'sa'

    The Null holds the position of the old password.

  • RE: Print in DTS Package

    Depending on what kind of code you're talking about:

    If it's a SQL Task, I would use the QA to debug it.

    If it's ActiveX Script, I debug in MS Visual Basic. ...

  • RE: Custom global function - accessible to all DTS packages?

    You could also consider using an .ini file to hold the variable which would then be referenced by each package.  Somewhere on this fine website is an article to the...

  • RE: DTS Package Failed

    Also check to ensure that your package is running under a real user rather than the local administrator account.

  • RE: SQL Mail

    I am not certain if you mean that there are multiple email messages and that the recepients are getting all but the final email, or if there is a single...

  • RE: DTS FTP Problem with SourceFileName

    Have you tried eliminating the quotes altogether?

  • RE: Concatenate column across multiple rows

    This seems a little more elegant, though I don't exactly know why it works.  I haven't converted it to what you want but you can do that easy enough.  The...

  • RE: authenticating windows users to sql thru IIS

    Are you using MTS?

  • RE: Parameter issue

    You're welcome.  You may want to consider writing your code this way, as it's less lines than you've written.  The value would go after the field lengths, but the following...

  • RE: transactions

    I would not write transactions if I don't need to, but if I need to, performance would have to yield to data integrity.  If the performance were terrible, I might...

Viewing 15 posts - 1,216 through 1,230 (of 1,353 total)