Forum Replies Created

Viewing 15 posts - 35,611 through 35,625 (of 49,557 total)

  • RE: How to get

    DECLARE @Input Varchar(20)

    SET @Input = 'Parthi'

    SET @Input = @Input + '''s'

    Select @Input

    Escape a quote by doubling it.

  • RE: Indexing URLs and eMail address

    RGDavis396 (11/29/2009)


    What is the best way to index on URLS's and email address?

    Same way you'd index anything else. Normal index on the column. Is there some reason you don't...

  • RE: Page Allocation

    parthi-1705 (11/29/2009)


    I little bit confused with that one.My thing is whether Pages are there in Transaction Log

    No pages in the transaction log. The data file is divided...

  • RE: tracking a column in sql server database

    arun.sas (11/28/2009)


    Hi,

    Also use this,

    For search in the current database

    select object_name(id)TableName from syscolumns

    where name = ‘your string’

    syscolumns is a deprecated system view and will be removed in a future version....

  • RE: Updating a variable number of tables with a single update

    vbprogrammer1986 (11/27/2009)


    but note that u can also use a updatable view for update multiple table in one statement.

    But the update must still target a single table, ie with an updateable...

  • RE: Updating a variable number of tables with a single update

    MatthewA.Herold (11/27/2009)


    select @tablename = (select Name from Sysobjects where Name like 'queue%' and type = 'U')

    That select must return only one value. You're assigning the result to a single string...

  • RE: Log File is MASSIVE

    aureolin (11/27/2009)


    You need to balance the storage space necessary for keeping all those backups with how far back you might need to go to find something.

    Not just how far...

  • RE: Confusing performance degradation

    Please post query, table definitions, index definitions and execution plan, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/ It's really hard to talk about performance in abstract.

    Are the indexes fragmented?

    First execution of a query will...

  • RE: Performanance Issue with DELETE SCAN

    John Paul-702936 (11/27/2009)


    Please .......Pleaseeeeee

    Reply Please ........................

    Bitbucket did. What about his reply (which did answer your question on deleting records in related tables) was not sufficient?

  • RE: TDE

    shivrudra_2008 (11/27/2009)


    i need to encryt the database

    Why? What's your goal, what are you trying to achieve?

  • RE: sysindex corrption

    Please run the following and post the FULL output. There's not enough information in what you've so far posted to make even an educated guess.

    DBCC CHECKDB (<Database Name>) WITH NO_INFOMSGS,...

  • RE: Introduction to Indexes: Part 2 – The clustered index

    Not any update to a varchar, one that increases the size of the varchar, hence increasing the size of the row.

    It's an option, just not a free one. Tradeoffs, just...

  • RE: Introduction to Indexes: Part 2 – The clustered index

    Would you like to expand on that? (details or example)

    PAD_INDEX controls whether the fill factor applies to just the leaf levels or the entire index (leaf and non-leaf levels)

  • RE: Introduction to Indexes: Part 2 – The clustered index

    Johnc (11/27/2009)


    What about free space? I assume SS allocates a default % headroom to each row to allow for growth and that the % is adjustable so we could reduce...

  • RE: Create table permission denied

    cute_lhen05 (11/26/2009)


    Thanks for your help! it worked! however there's a message showing everytime the user creates a table like

    "you are not logged on as the databae owner or system...

Viewing 15 posts - 35,611 through 35,625 (of 49,557 total)