Forum Replies Created

Viewing 15 posts - 48,721 through 48,735 (of 59,065 total)

  • RE: setting the recovery model

    No.

  • RE: Query Question

    Jeffrey Williams (8/16/2008)


    Oops - forgot the temp table, thanks Jeff.

    No problem... it's the beauty of a forum... world's biggest team. 😉

  • RE: Copy and rename a file using stored procedure in SQL server 2005

    You CAN have file names with spaces (although, I prefer not to). And, you can easily run commands on those file names by enclosing the filename in double quotes......

  • RE: TXT file for each table

    What the heck is the matter with using Replication?

  • RE: Query Question

    And, yes, it's easy to dump that into a temp table...

    Yes, this can be done using an alias. Example:

    SELECT t1.col1 AS t1_col1,

    ...

  • RE: Telework Works

    Considering that the drive to work is 112 miles round trip, I'd love to see my company implement that right the heck now! 😉

  • RE: update query append number in start of all rows

    bitbucket (8/16/2008)


    Update Dbo.Table1 UPDATE dbo.location SET local_Phone = '91'+local_phone

    Just to be sure, I'd add a check to make sure the numbers haven't already been updated...

    UPDATE dbo.Table1

    ...

  • RE: Urgent help required !!!!!

    Joe Torre (8/16/2008)


    It is often faster to create a temp table yourself to replace the sub-select

    Being a bit of a skeptic, let's see the test you did that proves that....

  • RE: Parsing a text log file

    What's wrong with just...

    --===== Create a test variable (not part of the solution)

    DECLARE @test-2 VARCHAR(8000)

    SELECT @test-2 = '[8/15/2008 10:44:14 AM] [MESSAGE] Batch Archived:[869] nameOfBatch;Archived Path:\\servername\directory\subdirectory'

    --===== Return the path

    SELECT...

  • RE: Regd Query

    I think you're missing some data in the other tables. Also, you'll get a much quicker answer if you format the data as outlined in the Link located in...

  • RE: Fragmetation

    Not only should you have a clustered index on a table, even if the column is an unused identity column, but you should have a unique index somewhere on the...

  • RE: The "Numbers" or "Tally" Table: What it is and how it replaces a loop.

    Thanks for the awesome compliment, Timothy.

    It depends on what the client is comfortable with... some won't allow it as a permanent table so I have to code it in where...

  • RE: Hidden RBAR: Triangular Joins

    Paul DB (8/15/2008)


    In an effort to prevent the edges of other people's butts from getting sore, can you (or the editor) please modify the Hidden RBAR article to refer/link to...

  • RE: Hidden RBAR: Triangular Joins

    Steve Jones - Editor (8/15/2008)


    I'm not sure which article Jeff meant for the followup, perhaps this one:http://www.sqlservercentral.com/articles/Test+Data/61572/

    You can click on the author's name and get a list of all his...

  • RE: Hidden RBAR: Triangular Joins

    kathyoshea (8/15/2008)


    I've never really gotten a handle on execution plans and was hoping to use the code in the article to understand them a bit more. However, the code in...

Viewing 15 posts - 48,721 through 48,735 (of 59,065 total)