Forum Replies Created

Viewing 15 posts - 6,226 through 6,240 (of 7,484 total)

  • RE: Transaction Log Full in Simple Recovery mode

    Can you extend the log file, or allocate an extra log file?

  • RE: Invoice Tables and pricing dates

    Jason Coleman (2/5/2011)


    They are actually date time columns.... MySQL allows storage of this in a date time column as a dummy value.

    The problem just is how to query the...

  • RE: Are the posted questions getting worse?

    GSquared (2/4/2011)


    If the next ice age kicks into gear in a year or two (my personal expectation based on nothing but how cool I think it would be; you are...

  • RE: Random Recipes

    this is really a family of recipes, as all quantities are variable by choice.

    This works with pork fillet, or veal fillet, thinly sliced.

    Cut the meat into strips about 1.5 in...

  • RE: Where are you?

    Tom.Thomson (1/20/2011)


    Ray K (1/19/2011)


    Thread's getting quiet again!

    How's the weather where you are?

    Days are sunny but short. Temperature about 14C (57F) at 7am and the same late evening, rising to...

  • RE: Where are you?

    Ray K (2/4/2011)


    Getting quiet here again. Let's toss out another geography-related topic here . . .

    Hypothetical: you just won an all-expenses-paid trip to anywhere in the world. Where...

  • RE: Clearning the transaction log

    Nice easy question.

    It will be interesting to see how many manage to get it wrong.

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (2/3/2011)


    I'm not calling out any particular person, and I've certainly been guilty of posting a few less than professional things in my time. I'm just...

  • RE: From DBA / Dev to Management

    Brandie Tarvin (2/3/2011)


    Tom.Thomson (2/3/2011)


    I've flipped between management and non-management many times during my career

    This leads to another question. How easy is it to get a future tech job when you...

  • RE: Today's Random Word!

    Pouliot Philippe (2/3/2011)


    42

    Cuarante y tres tastes better and contains more alcohol. And every one knows that 6 times 9 is 43, not 42 (provided they have first supped sufficient...

  • RE: Delete Duplicate Records

    Perhaps

    MERGE INTO codes_table C

    USING (

    SELECT *,

    ROW_NUMBER() OVER (

    ...

  • RE: From DBA / Dev to Management

    Brandie Tarvin (2/2/2011)


    Next question:

    How did you half-management / half-DBA types deal with the overload of DBA tasks?

    I.E., say there's too much workload for the DBA team to handle in...

  • RE: is_published = 1 after SQL 2000 attach in SQL 2008

    Nats007 (2/3/2011)


    Hi

    I've attached a SQL 2000 database to SQL 2008 (attached from backup files)

    Compatibility mode is changed to: SQL Server 2008

    Original database had replication on it and columns...

  • RE: Enforcing rowlock hint?

    Here's an SQL 2005 version

    UPDATE T SET T.PD_SeqNr = R.rnum

    OUTPUT inserted.*

    FROM Table T, (

    SELECT PD_id, ROW_NUMBER() OVER (ORDER BY PD_id) as rnum...

  • RE: Enforcing rowlock hint?

    GilaMonster (2/3/2011)


    Merge on SQL 2005?

    Working on an UPDATE version, but keep getting distracted by real work

    Drat, I forgot it was sql 2005 ;-). I'll think about an update-based version

Viewing 15 posts - 6,226 through 6,240 (of 7,484 total)