Forum Replies Created

Viewing 15 posts - 256 through 270 (of 583 total)

  • RE: Greetings from PASS

    Just back to my room after a long day at the PASS pre-conference. The pre-conference seminar I attended covered many of the new features of SQL 2005. It was presented...

  • RE: Big SQL Server 2005 News

    I had to refresh the page to see the story or Steve fixed the problem.

  • RE: DTS error handling for exec sql tasks

    No problem. You might try to post in the data warehousing/DTS forum.

  • RE: DTS error handling for exec sql tasks

    This is an SSIS thing. I kind of assumed that you were working in SSIS since this particular forum is for SQL 2005.

  • RE: DTS error handling for exec sql tasks

    There is a setting called ForceExecutionResult that you can set so that the task always completes successfully.

     

  • RE: Tricky Query

    Try this:

    delete M

    from Milestones M

    where not exists (select *

                      from GeneralInfo join Imports

                      on GeneralInfo.XNumber = Imports.XNumber

                      where GeneralInfo.YNumber = M.YNumber)

  • RE: SP4

    Thanks for the information.

  • RE: Use parameters with Execute SQL task

    I talked with a developer at MS about this. He said that the parameters for each provider is different and right now, there is no source listing the differences. There...

  • RE: Job fail

    When you run the DTS package, it runs with your account, rights and drive mappings. When it runs a job it runs as whatever account is used to start up SQL...

  • RE: Restore a SQL 2000 Database Table Only

    You'll have to restore the db somewhere else and DTS the table.

  • RE: 1 Report for 9 databases

    Better to avoid dynamic SQL if possible!

  • RE: 1 Report for 9 databases

    What technology is used for the report?  If it is a custom built report, part of your web application, just change the connection string each time the report runs. 

  • RE: connecting to sql server?

    Try 127.0.0.1 or try "(local)" instead of the IP.

  • RE: Date conversion

    Try something like this:

     

    dim thisDate

    thisDate = now()

    dim formattedDate

    formattedDate = datePart("d",ThisDate) & "/" & datePart("m",ThisDate)

    formattedDate = formattedDate & "/" & datePart("yyyy",ThisDate)

  • RE: dynamic webpages

    Have you worked with any technology to do this in school? If so, maybe the best way is the way that you know. Otherwise, ASP.NET using either C# or VB.NET...

Viewing 15 posts - 256 through 270 (of 583 total)