Forum Replies Created

Viewing 15 posts - 5,926 through 5,940 (of 7,597 total)

  • RE: How to efficiently import data in .rpt format into SQL 2008

    Lowell (7/17/2014)


    if it is plain text, i'd just use bulk insert instead of building an SSIS package;

    for me, that would be faster than anything else.

    I'm thinking you're gonna have to...

  • RE: Convert Rows into Columns

    You really need only a single ROW_NUMBER function:

    SELECT

    MAX(CASE WHEN row_num % 3 = 0 THEN LotNo ELSE '' END) AS Lot1,

    MAX(CASE WHEN...

  • RE: Group by performance FK / PK

    Yep, looks great, thanks!

    Here's my scripted recommendations for index changes/rebuilds. I don't have time right now, but can explain more later if/when you have qs. Hope this helps!

    ------------------------------------------------------------------------------------------------------------------------

    --Table:...

  • RE: How to efficiently import data in .rpt format into SQL 2008

    Since it's from SSMS, it's likely just a standard text file .rpt, rather than a Crystal Reports .rpt.

    I suggest using SSIS to import that data. It will of course...

  • RE: delete large chunk of data on replicated DB

    You could go the redo route if you could afford some brief downtime. Stop replication, delete the data and rebuild indexes, then re-initialize the replication with a fresh snapshot.

  • RE: Datetime conversion issue

    Quite right: if DFUR1.[AsOfDate] is any date/datetime type, you don't want to use ISDATE() on it.

    Also, you can simplify the year and month comparisons:

    AND

    YEAR(MD1.[Inception Date])...

  • RE: delete large chunk of data on replicated DB

    What percentage of the data does the part to be deleted represent? For example, if the database has 100 years of history, then 2 years is a relative pittance....

  • RE: "Business Rules Engine"

    A table consisting of customers; one row for each customer, and includes that customer's type of house, car, insurance, and type of internet connection.

    I think you need to step back...

  • RE: Composite Index performance

    And I realize that an absolute rule is not the intent of what you're doing, but that is what very often happens now. Identity keys have become so much...

  • RE: Composite Index performance

    But that's the problem that is over-looked in the all-out desire to achieve a "small clustering key". Often the "always a small clustering key" approach requires creating far more...

  • RE: Group by performance FK / PK

    I think that Query1 data got scrambled or something.

    Can you use a spreadsheet instead? After you run the queries, in the Results/Output area, left-click in the empty box...

  • RE: Composite Index performance

    The Dixie Flatline (7/15/2014)

    Statement of fact: No single clustered index can ideally serve the needs of multiple queries searching against different columns of the table.

    Another statement of fact:...

  • RE: Composite Index performance

    The Dixie Flatline (7/15/2014)


    Scott, I respectfully have to ask for clarification. Whenever you add multiple columns to the clustered index, you increase the size of ALL nonclustered indexes...

  • RE: Converting Integer Values to Datetime

    You don't need to explicitly convert it. Just get the format to a string of YYYYMMDD, which is always a valid date/datetime format:

    SELECT DATEADD(HOUR, @hour, CAST(@date AS varchar(8)))

  • RE: How would I tune this query?

    Here's a few thoughts:

    If T270.C18133 might often be less than 19 bytes, add this to the WHERE clause:

    WHERE

    LEN(T270.C18133) >= 19

    Since you don't have an ending %,...

Viewing 15 posts - 5,926 through 5,940 (of 7,597 total)