Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 3,232 total)

  • RE: SQL Server 2008 and Data Compression

    Good article. It was helpful to know about the allocation units. I am in the process of designing a data mart type application DB where we'll be storing...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Server Performance During Job Execution

    If you are wanting to get some measurements on baseline IO throughput on your SAN, you may want to look into using some third party tools to help with that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Server Performance During Job Execution

    I don't see anything alarming here. All of the values are within acceptable ranges. The CPU usage seems a bit high for just one process, but it is...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding

    The timeout itself is usually issued by the calling application. If it is using ADO, there are 2 timeout parameters that can be configured to lengthen the amount of...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Server Performance During Job Execution

    Well, it is normal for resource usage to increase as new jobs/requests are being processed by the server. This could be bad of course depending on the size and...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Question about partition function

    Good, just checking. You never know, without asking, if someone is wanting to attempt to modify the system tables directly or not.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Question about partition function

    The data relevant to exploring SQL Server partitioning functions/schemes are spread throughout a number of views. You'll want to look at sys.partition_range_values, sys.partition_functions, sys.partitions, among possibly others. Use...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: copying tables by zipping it

    Keep in mind that you do not have to change your recovery mode to bulk-logged to use bcp. It is still faster than using INSERT INTO even when in...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Display Duplicates

    I'd be curious to see how that runs on a large table > 1M rows. I don't have the time to test it myself, but I'd be curious. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Display Duplicates

    Here's a way to do it without the CTE.

    DECLARE @Calls TABLE (AccountNumber int, TelephoneNumber varchar(10), DateCalled datetime)

    INSERT INTO @Calls

    SELECT 1, 4026146434, '2008-11-17 17:01:27.023' UNION ALL

    SELECT 2, 4026115201, '2008-11-19 17:01:27.023'...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: copying tables by zipping it

    You don't want to copy the MDF file if you are only looking to move one table over. Use bcp.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Select based on filed length?

    In that case, use LEN:

    DECLARE @Table TABLE (Col1 int, Col2 varchar(50))

    INSERT INTO @Table

    SELECT 1, '123234345' UNION ALL

    SELECT 2, '123456789124578'

    SELECT *

    FROM @Table

    WHERE LEN(Col2) < 12

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Select based on filed length?

    When you say text, do you really mean a text datatype or is it a varchar/char data type?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Calling stored proc to insert record in one table

    MrBaseball34 (11/3/2008)


    what do you mean here:

    SELECT .......... UNION ALL

    SELECT .......... UNION ALL

    SELECT ...........

    I don't know what to put as the ...........

    I'm asking for you to take the effort in creating...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Calling stored proc to insert record in one table

    Right. Just put together a combination of handful of the rows that worked and a handful of rows that the update missed.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,531 through 1,545 (of 3,232 total)