Forum Replies Created

Viewing 15 posts - 10,111 through 10,125 (of 18,926 total)

  • RE: Assumptions

    Her name is loner.  Old hand is a nickname given based on the number of posts the person wrote.

  • RE: SELECT sum Question

    Can't fully answer this one for a lack of time.

    But you need to have a team table and a TeamSalesMan Table.

    You then join the sale tables to TeamSalesMan to teams...

  • RE: Does Recovery Mode Affect Disk I/O?

    What I'm understanding is that you can afford to lose a full day's worth of data.  If this is the case then you can switch to simple recovery and that...

  • RE: Does Recovery Mode Affect Disk I/O?

    How do you recover in the middle of the day without having the logs in full recovery?

  • RE: Tim Gramentz''''s comment, need reply

    Need a reply to what message?  Can you post a link?

  • RE: Question regarding an interview method - need feedback

    I think I'd go for the ride and accept the challenge (just for myself).  No need to burn bridges right then and there.  Maybe they are just evaluating how you...

  • RE: Question regarding an interview method - need feedback

    For those of you who figured it out with 3 lights.  Now try to figure it out with 4 lights.

     

    You have 2 minutes this time around

  • RE: Table ownership

    Little on the extreme side, but are you able to drop and recreate the objects with the correct username :

    Create table wyantetest.tblname...

     

     

  • RE: Table ownership

    Are you sure you are running this on the correct database, on the correct server?

  • RE: How To Increase The DB Size

    Yes it will.  However one of the best practices states that it is best to set the DB file size to the max size you think it will ever need. ...

  • RE: Use Red-Gate''''s backup... and Go to Jail???

    Just to finish this off.

     

    Brian, what would you want done if someone posted this "use x software and have your mother killed"? (ok a little more to the extreme but still...)  Especially...

  • RE: peventing accidental deletes

    begin tran

    select count(*) from table_name

    del from table_name

    where item_id = 23

    select count(*) from table_name

    rollback tran

     

    Run once like this, then if everything looks fine, then just run the delete by itself.  Also...

  • RE: NULL Equals NULL?

    There's a workaround on this one... but it comes with a cost :

    CREATE VIEW dbo.vwTblNameForceUnique

    WITH SCHEMABINDING

    AS

    SELECT PrimaryKey, UniqueCol

    FROM dbo.TblName

    WHERE UniqueCol IS NOT NULL

    GO

    --Create clustered index for the view

    GO

    CREATE UNIQUE...

  • RE: NULL Equals NULL?

    Well everyone has the right to his own opinion.

     

    Can you take 5 minutes of your time and write an article that will "correct" the situation and share it with the...

  • RE: Question regarding an interview method - need feedback

    What's the 5th question?

     

Viewing 15 posts - 10,111 through 10,125 (of 18,926 total)