Forum Replies Created

Viewing 15 posts - 16 through 30 (of 254 total)

  • RE: What Do You Think of the New Site

    Is there a "My posts" link where I can look through the posts I replied to see if there are any newer replies?

    Also, the headers and the buttons are quite...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Unique ID for a View

    You can generate a row number as shown here: http://www.sqlteam.com/article/returning-a-row-number-in-a-query

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Copy Query Analyser results pane including header

    If you are still in 2000, check if this helps : http://dotnetjunkies.com/WebLog/dinakar/articles/136661.aspx

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: The other side of outsourcing

    kind of late reply but coming from the other part of the world its hard to outsouce DBA. Most (almost 95%) of the data centers are here in US. India...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Remove Decimals Without Rounding

    declare @i decimal(10,2)

    Set @i = 1078.734

    select (left(@i, Charindex('.', @i, 1) - 1 ))

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: SQL Refactor for MVPs?

    Sure, Thanks Rachel.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: deadlock on parallel create indexes?

    Ys if you try to create index on the same columns via diff jobs or diff transactions there is a high chance od deadlock. create index creates a table level...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Stored Procedure - unexpected execution plan

    Dropping and recreating the proc helps to remove any previous query plans from the proc. Generally its a good practice to drop/recreate as

    IF Exists (SELECT * FROM Sys.objects Where Name...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: SQL Refactor for MVPs?

    Hi Rachel

    I would be interested in the "Friends" program..What would I need to do? I didnt find any link to sign up. Also I dont see any list of the...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Management Studio Performance Issue

    You can actually disable the splash screen by right clicking on the Management Studio under your programs -> SQL Server 2005 -> Mgmt Studio and add ".... -nosplash" at the...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Super Servers

    Check out HP Super dome = 32 processors (each 64 bit) up to 128 GB RAM.

    They also have mini domes = half the config above (aproxly).

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Performance Issue

    And..(1) You are using functions on column names

    (2) You are using DISTINCT , ORDER BY which use tempdb. So if you have multiple calls to the proc your tempdb...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: multiple rows into one row

    You need to write a function that takes in the ID and returns a concatenated string of Values. create a function with something like this:

    declare @res varchar(100)

    select @res = isnull(@res,''...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Trouble modifying a table

    you need to use sp_Repladdcolumn, sp_Repldropcolumn to add/drop columns for tables that are being replicated.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Did anyone send resume to the job posted on this website?

    Well, perhaps that has got something to do with your UserId

    Its like the Cox commercial thats being aired these days..

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

Viewing 15 posts - 16 through 30 (of 254 total)