Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)

  • RE: Sysdatabases Status

    I use the bitwise and operator (&) to pull the status column apart for inspection.

    For example:

    SELECT

    name

    FROM

    master..sysdatabases

    WHERE...

  • RE: Retrieving info in an OnError event handler

    Are you sure want the package to fail? I generally want to set aside the bad data with its error messages and then deal with the exceptions.

    That way I can...

  • RE: Query Run Very Slow on SQL 2005

    I think that the problem might simply be the NOT EXISTS. I converted a SQL Server 2000 database to 2005 shortly after 2005 was released and ran into a huge...

  • RE: Job to delete only PDF files older than 3 days from a fodler

    2 Tim 3:16 (8/11/2009)


    forfiles /p "...full path..." /m "*.pdf" /d -3 /c "CMD /c del @FILE"

    I do what Tim does. All that malarky with SSIS and MP. Way too much...

  • RE: Can we backup a single table in SQL Server 2008?

    Steve Jones - Editor (8/23/2009)


    Note that the import/export wizard could help you here, either with moving the data to some flat file, or even moving it to a new database...

  • RE: Managing Useful Scripts and Articles

    Andeavour (8/24/2009)


    There's also a handy add-on for Firefox that allows you to synchronise your bookmarks between different machines running the browser (I think it's called XA). That's been great for...

  • RE: Managing Useful Scripts and Articles

    MS OneNote is great but confined to your computer unless you have a Windows Mobile phone.

    I used to use Google Notebook for this sort of thing. Unfortunately, Google are...

  • RE: New stuff, all good?

    The thing that ticks me off the most is the lack of ability to debug a stored procedure without the full Visual Studio 2005 Professional (i.e. not the lightweight version...

  • RE: Distance and replication

    You won't find one. I looked also.

    You don't tell us what exactly you want to do (transactional or merge, I'm presuming you are not talking about snapshot) nor the actual...

  • RE: A Nice Refund

    What do you mean by "bonded"?

    As for the error which is the subject of the editorial, my guess based on past experience is that there was too much expected with...

  • RE: Working More?

    There is one sentence you will never see on a tombstone nor ever uttered as someone's last words:

    I wish I had spent more time at the office!

    The trouble is that...

  • RE: SQL Server 2000 -- Log Shipping Monitor Server

    Thank you for the response. Yet another example of the documentation leading me astray 🙂

  • RE: SQL Server 2000 -- Log Shipping Monitor Server

    Thanks, I will give it a try anyway.

  • RE: Replication architecture

    It will work, I suppose, but I haven't tested it. The preferential configuration would be to only have one publisher and the other two servers as subscribers. In the configuration...

  • RE: Replication architecture

    Cláudia,

    I'm sorry but there isn't enough information here.

    The simplest way would be to route between the two networks but I'm guessing that you have reasons for not doing that...

Viewing 15 posts - 1 through 15 (of 18 total)