Forum Replies Created

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

  • RE: Multi Parameter Issue

    I found this also. Seems to work. Takes less code.

    SELECT * FROM TABLE

    WHERE (@CUST='' OR CUSTNMBR IN (SELECT LTRIM(item) value FROM dbo.DelimitedSplit8K(@cust,',')))

  • RE: Multi Parameter Issue

    Worked like a charm

  • RE: Multi Parameter Issue

    That makes sense. I'll see if I can get that to work.

    Thanks

    AA

  • RE: SQL Query runs fast, SSRS runs S L O W . . . .

    Do you have this line at the top of your sp? That's helped me in the past.

    SET NOCOUNT ON;

  • RE: Multi Parameter Issue

    I have over 30,000 customer IDs. Reading the split, it looks like it can handle 8,000 characters.

  • RE: Interrupted Time Line using Range Chart

    I've tried the Draw side by side, but it doesn't do the trick. No matter what I have tried, I always wind up with a Gantt chart, even when...

  • RE: Time Line Question

    Impressive. Thanks. It did the trick.

  • RE: Time Line Question

    Sean Lange (7/23/2012)


    I think you should take a look at this article. http://www.sqlservercentral.com/articles/T-SQL/71550/[/url]

    It seems to be exactly what you are looking for.

    I'll mess with his logic and see if I...

  • RE: Time Line Question

    Lynn Pettis (7/23/2012)

    Why is there no interuption between rows 5 and 6?

    The start date on 6 is before the end date on 5, so it would be continuous.

  • RE: A Tough One, At Least For Me

    fahey.jonathan (1/18/2012)


    Sean Lange (1/18/2012)


    How can you get a value from an insert that isn't in the inserted table? If you insert it, it is in the inserted table. The inserted...

  • RE: A Tough One, At Least For Me

    The Merge and Output worked like a charm.

    Thanks

  • RE: A Tough One, At Least For Me

    Thanks. Briefly looking at it, I think it might be what I need. I have also been reading about Ident_Current, Scope_Identity and @@Identity. Output is looking like...

  • RE: Non-Clustered Indexes and Truncated Tables

    A couple of guys that I talked with here mentioned dropping the index as well and then add it back. Maybe one day one of us can take ownership...

  • RE: Memory Usage

    This one is not a dedicated SQL server though. What raised my concern is 100% memory being used and nothing was available. Right now with the 6gb max...

  • RE: Memory Usage

    I moved it up to 6gb last night after I did some maintenance. That gives me 2gb for the OS and the ERP. I'll just watch it for...

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