Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 3,221 total)

  • RE: DBCC INDEXDEFRAG

    IGNORE THIS ENTRY SEE CORRECTION BY SQLkiwi Posted Today @ 4:23 AM

    Here we go again

    Try it as:

    DBCC INDEXDEFRAG (Master,"dbo.spt_values",ix2_spt_values_nu_nc)

    DBCC INDEXDEFRAG (AdventureWorks_regular,"cdc.ddl_history",ddl_history_clustered_idx)-- a system table in the AdventureWorks_regular DB

    Your reference...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Niagara Falls

    Dhruvesh Shah (8/1/2011)


    My server got hang. but from memory i have setup my instance as US. Can some one pls advise how can i find out what's my default country...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: How do i identify resources needed to defrag/rebuild indexes

    You may want to read these blog posts by Jason Strate (A great deal of T-SQL is included to assist you).

    [http://www.sqlservercentral.com/blogs/stratesql/archive/2010/10/13/return-of-index-analysis-part-3.aspx/url]

    Then select the most used indexes, and from those the...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: MS Access as a front end to SQL Server?

    Try this site:

    http://sqlserversamples.codeplex.com/#e2e

    Provides a great deal of sample code for what I think you might be looking for.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Niagara Falls

    ronmoses

    Have you reported this anomaly to Microsoft Connect?

    http://connect.microsoft.com/

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Niagara Falls

    Even stranger, used NVARCHAR(max) and the behavior is completely different.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Niagara Falls

    Whopeee first one to select the correct answer. (not a guess).

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: how to find ASCII characters in a table?

    If you need to know which characters have been found / or if found removed from the input string try this:

    DECLARE @Temp VARCHAR(30)

    DECLARE @Found VARCHAR(30)

    SET @Found =''

    SET @Temp =...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SQL Saturday presentation

    What makes an index tick and why do they make your queries faster.

    Is a title that would attract myself, as far as the I6 reference, would skip over the thought...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: how to find ASCII characters in a table?

    Is this what you desire to do?

    CREATE TABLE #T(Id INT,SomeText VARCHAR(300))

    INSERT INTO #T

    SELECT 9,'This is 1Tab' UNION ALL

    SELECT 13, 'This is a

    line feed' UNION ALL

    SELECT 1000,'This has a taband a...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: multi-component datepart quandry

    pharmboy4u

    Have I mentioned I'm not a DBA or even in IS/IT but just a humble little pharmacist? I just try to do this stuff for my hospital to help the...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Assigning SEQUENCE

    To help those who want to help you, please post table definition, sample data and any T-SQL that you have tried to use. For instructions on how to provide...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: multi-component datepart quandry

    Now this is not the complete answer, but a bit of T-SQL to illustrate how to "extract" the minutes component from a DATETIME value.

    declare @start as datetime declare @end as...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Unicode Compression

    Good Question - seems my memory did not fail me.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Time for a ROWID?

    Steve is this what you are thinking of? (From Paul Randal's blog)

    http://www.sqlskills.com/blogs/paul/post/SQL-Server-2008-New-(undocumented)-physical-row-locator-function.aspx

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 1,066 through 1,080 (of 3,221 total)