Forum Replies Created

Viewing 15 posts - 226 through 240 (of 412 total)

  • RE: How to initiate, and then remove, replication

    Yes, if you need information to flow both ways and you are using SQL Server 2005, I'll agree with most of the other people here and say merge replication is...

  • RE: Using Recursion

    eyejay (9/4/2008)


    Sadly, even with your code edited I still get the error message that more than 1 value is returned by the query. I'm not smart enough to figure that...

  • RE: Using Recursion

    I think something like this will work for you:

    select

    pat_nr,

    abpm,

    date_time

    from

    a_mon a

    where

    date_time >= (select date_time from a_ereig e1 where er_m_nr = 100 and a.pat_nr = e1.pat_nr)

    AND...

  • RE: Best Practice

    This was one of the best questions with the best explanation I have seen out there.

    IT does seem slightly dated now that 2008 is out though. In 2008 it...

  • RE: How to initiate, and then remove, replication

    Rod at work (9/2/2008)


    In a previous post I asked about replication between and old production server and a new production server. We're going to go ahead with replication between...

  • RE: Covering index is too long, but needed ... what to do?

    sql_er (8/25/2008)


    Thanks for all the suggestions.

    I was able to fix the problem without adding an index, but just re-writing the query.

    It was strange how a very simple change in the...

  • RE: Local Temporary Tables and Table Variables

    Awesome article that covers some of the lesser considered aspects of temporary tables and table variables. Thank you.

  • RE: move all indexes to a secondary file group

    keppro (8/30/2008)


    Thanks a lot to the author!

    One problem with the script: it doesn't recognize indexes with included fields. Does anybody know what system table(s) contain this information? Better yet, is...

  • RE: Creating Databases

    This article was really well written for what was there, but I was disappointed that it did not get into at least a little bit more depth on things like...

  • RE: Killing a rolling back Process

    Normally SQL will do nothing if you attempt to kill a process that is being rolled back. It will simply display a message that it is already being rolled...

  • RE: DB File Extension

    Michael Kipp (8/28/2008)


    Please don't confuse "database files" with "data files".

    A database is more than just a data file.

    A database is more than just a data file, but it is not...

  • RE: DB File Extension

    I'm inclined to agree with Ben. It does depend on how you define the terms, but I generally do not think of ldf as a database file.

    It...

  • RE: If You Ain't Cheatin'

    I couldn't agree with you more. Cheating is always disgusting.

  • RE: Offline Learning of SQL - Advice

    mlarson (8/22/2008)


    Thanks for the advice. Just to clarify a little bit, I do have a few projects that I would like to work on, but my main concern right...

  • RE: Offline Learning of SQL - Advice

    I know there are many who disagree with me, but for me it helps to have a goal to focus on. That goal will give you something to focus...

Viewing 15 posts - 226 through 240 (of 412 total)