Forum Replies Created

Viewing 15 posts - 3,016 through 3,030 (of 3,606 total)

  • RE: Way to Query a stored procedure???

    You can't nest these sorts of queries either.

    If proc1 contains an INSERT...exec then you can't have a procedure that inserts the results of proc1.

  • RE: problem in casting varchar to float

    If it is a cheque number does it have to be recorded as a physical number?  Can it be kept as a sting?

    Computers do integer arithmetic accurately.  The golden rule...

  • RE: Windows find files problem

    Thanks for your help,

    I've had to correct 537 filenames by hand.

  • RE: The Nightmare Contest

    You can't turn it off, but you can set the transaction log to truncate on checkpoint.  This is the same as "Simple" recovery mode.

  • RE: creating an insert script

    Could you just confirm that when you say my sql database you mean your sql server database and not MySQL database?

    If you do mean the latter then the following command...

  • RE: The Nightmare Contest

    I thought the contest was supposed to be SQL Server specific.

    If I had known it was more general I could have told a few stories that would have made your...

  • RE: Equivalent of MS Access FIRST() function in SQL Server 2000

    I couldn't think of a good use for FIRST and LAST even when I was using Access.  If I needed such functions then I was almost certainly looping through records...

  • RE: Return of the users from hell!

    Never occurred to me that these were (mis)managers. 

    Would you say that Dilbert was the rantings of a disgruntled employee?

    Any similarities between persons living or dead is entirely coincidental.

  • RE: Hanging Stored Proc

    Problems don't just vanish.  I suspect that a.n.other process is the true cause of the problem this will come back to haunt you.

    I would build up a string message in...

  • RE: problem in casting varchar to float

    Float and Real are for approximate values only.

    How realistic is your '9999999999999999999999998' figure?

  • RE: Return of the users from hell!

    Its when they tell you to cut up old Christmas cards to save on toilet paper that you have to worry.

    My eyes still water when I see a card with...

  • RE: SQL Server 2000 Indexing

    So, if you rebuild and index with a low fill factor you get lots of pages with lots of room in them and therefore more space to insert records before...

  • RE: Equivalent of MS Access FIRST() function in SQL Server 2000

    No, MIN returns the minimum value, FIRST returns the first occurence.

  • RE: Hanging Stored Proc

    Of course, if MSSQLSERVER runs under a domain account you should be able to use the debugger within QA.

    Open up the object browser in QA, right click on the proc...

  • RE: SQL Server 2000 Indexing

    Great thanks, I think the FILLFACTOR and PAD_INDEX are prime candidates for an article.

    So a page split is expensive because it copies half the records from the last page into...

Viewing 15 posts - 3,016 through 3,030 (of 3,606 total)