Forum Replies Created

Viewing 15 posts - 49,036 through 49,050 (of 59,065 total)

  • RE: UDF execution through a CLR

    Jonathan Kehayias (7/23/2008)


    Jeff,

    Perhaps in my attempt to demonstrate an overly simplistic TSQL Example, I made it far to simple. The OP wants to SELECT a value from any column...

  • RE: Recommended Hardware Specs

    Heh... with all the problems I've seen on forums with 64 bit technology and SQL Server, so far... I'm going to wait for SQL Server 2011 before I recommend 64...

  • RE: Delete ALL records where table join produces values

    How did you verify that? Is it just because you got a rows affected of 1? Perhaps there was only one row that met the condition?

    What do you...

  • RE: XP_cmdshell DIR

    Deee -Daah! (7/24/2008)


    Hi experts,

    I was wondering if there is an alternative to running XP_cmdshell DIR.

    Basically, I run xp_cmdshell to gather file info on a folder.

    without using XP_cmdshell, is there other...

  • RE: regarding performance

    su_kumar11 (7/25/2008)


    The site you have given is not opening. So

    So

    Please give me solution.

    Try copying the URL and pasting it to the address window in your browser.

  • RE: Delete ALL records where table join produces values

    Untested, of course... 😉

    DELETE dbo.abn_extract

    FROM dbo.abn_extract E

    INNER JOIN dbo.ABN_File_Header H

    ON SUBSTRING(E.[Column 0], 1, 13) = H.Header_Id

    SQL Server is one of the...

  • RE: Given an employee table( with columns Emp_ID,Emp_Name,Emp_Salary), how would you find out the fifth highest salary?

    avanish (7/24/2008)


    Rather than writing comples queries .... yo u can use the ranking functions... in sql server 2005 for this purpose:)

    Perfect... got a code example to go along with that...

  • RE: Dumb Question

    Just double checking... Was the mirror made using SQL Server Replication or (disk) hardware replication.

  • RE: Passing Parameters as (almost) 1, 2, and 3 Dimensional Arrays

    Gary Noter (7/24/2008)


    This example code is a TOTAL waste of my time.

    No, wait, if I implement this code, then can't waste my time with writing and waiting for WHILE loops...

  • RE: The IT Employee Benchmark

    I've found that nothing helps except a good ol' fashioned technical interview. I've had several people where references checked out great... old bosses gave rave reviews... former co-workers gave...

  • RE: Updating through cursors

    Thanks for the feedback, Hugo,

    I explained why a merry-go-round scan is not possible for this in the article. I even demonstrated what a merry-go-round scan is... updates don't do...

  • RE: Test Data

    Cool... thanks for the feedback, Lynn. And, glad it all work.

    Michael, nice job if you don't mind me saying so. 🙂

  • RE: Handling Tempdb space full situtation?

    ALIF (7/24/2008)


    either use this things

    shrink tempdb,

    or

    detach the file and attach with a new one with 0 bytes

    or still you cant do

    just restart the sql services, everything will be refreshed.

    Shrinking...

  • RE: Handling Tempdb space full situtation?

    GilaMonster (7/24/2008)


    angie stein (7/24/2008)


    Brandie Tarvin (7/24/2008)


    Does this technobabble make sense?

    Ok, so it sounds like you should usually restrict the growth (esp. in prod), unless there's a good reason to do...

  • RE: Handling Tempdb space full situtation?

    nisan.al (7/24/2008)


    You are right, to put a limitation is always good.

    But by the way, tempdb doesn't have to be in the same drive as the operation system you can change...

Viewing 15 posts - 49,036 through 49,050 (of 59,065 total)