Forum Replies Created

Viewing 15 posts - 2,116 through 2,130 (of 3,657 total)

  • RE: The Lighter Side - Life is like an analogy

    Ah the linguistic differences again. Took me a bit to remember that "pinching" is slang for "stealing". Like the fact that a nickname is the name they gave...

  • RE: The Lighter Side - Life is like an analogy

    Glad you all enjoyed it.

    I forgot to mention that the museum curator told me that he has to replace the "turd" at frequent intervals because kids keep pinching it.

    For all...

  • RE: The Shortage of Programmers

    There is always a problem creating the "must have" product when you have no idea what that product the consumer will consider to be "must have".

    What I read into Joel's...

  • RE: A Function Gotcha with the Use of an Asterisk

    If I am altering the structure of a table then at the end of my script I put

    exec sp_recompile ' '

    UPDATE STATISTICS

    If it is a smallish table then...

  • RE: Virtualization for Database Development

    Forgive my ignorance on the subject but if you have a virtual server instance with the same spec (CPU, RAM etc) as a physical server am I to expect a...

  • RE: The Inmates in Charge

    In a tech shop I can see an argument for delegating the maintenance of PCs down to a responsible team lead. Someone who can be trusted to ensure that...

  • RE: Service Broker tools and utilities?

    Is there a service broker manager so the queue size can be monitored?

  • RE: The Skill Set of the Exceptional DBA

    I think what constitutes an exceptional DBA changes depending on the economic climate.

    Obviously technical competence comes into it but at the moment the ability to wring the last possible clock...

  • RE: how to design audit trail

    rbarryyoung (3/9/2008)


    First of all you have to determine & define what the Purpose of your Audit Trail is. Is it for:

    1) simple diagnostics and troubleshooting of the application &...

  • RE: Adding the time to a Date(DateTime)

    Date/Time formatting is always a problem. Unless you know the starting format and the locale then you are going to run into problems.

    Even if you start with a date...

  • RE: licensing query for sql server

    In addition to the previous post I believe that CAL licensing has to be done in a minimum of a block of 5.

    One CAL is used by the server itself...

  • RE: Max Date from two tables (one to many)

    As the most up-to-date status for an item is likely to be important I would enclose this functionality in a view.

    CREATE VIEW LastItemDetail

    AS

    SELECT ItemID,StatusDate,StatusDetail

    FROM TableB AS B

    INNER JOIN (

    SELECT...

  • RE: How to Break Replication

    If its Adventureworks that you are replicating to 2000 I would check to see if the SQL2005 schema's are the issue.

    Failing that, run the sp_MSins stored procedure at your subscriber...

  • RE: Linked Server Optimization

    The thing that worries me with Linked Servers is the security aspect.

    Our SQL2000 boxes won't delegate but our SQL2005 boxes work just fine.

    We have trawled through just about every obscure...

  • RE: How to Break Replication

    giorgio (3/6/2008)


    Another common issue with replication is the famous error:

    The row was not found at the Subscriber when applying the replicated command.

    (Source: SQL-1 (Data source); Error number: 20598)

    I've come across...

Viewing 15 posts - 2,116 through 2,130 (of 3,657 total)