Forum Replies Created

Viewing 15 posts - 1 through 15 (of 33 total)

  • RE: SSRS 2008 Report Time Out

    Hi,

    Yes, the report is run on demand around the beginning of each month by an end user on the Report Manager. I've tried emailing it to myself and tried...

  • RE: T-SQL Help

    Hi Jeff,

    I don't think it matters. That column was more for illustration to help make clear the issue. The numbered column provided was sufficient for the business needs.

    Thanks,

    Matt

  • RE: T-SQL Help

    I don't have any questions. Thanks for asking. I actually already got feedback from the biz and that's exactly what they were looking for!

  • RE: T-SQL Help

    Pretty sure you're my hero now Wayne..Thanks so much for your help. That definitely worked and is exactly what I'm looking for!

  • RE: T-SQL Help

    CTE Query:

    CREATE TABLE #Temp1

    (ID INT, Code VARCHAR(4))

    INSERT INTO #Temp1

    VALUES

    ('1','1510'),

    ('1','1515'),

    ('1','1520'),

    ('1','1525'),

    ('2','1510'),

    ('2','1515'),

    ('2','1520'),

    ('2','1525'),

    ('3','1510'),

    ('3','1580'),

    ('4','1510'),

    ('4','1590')

    ;WITH CTE AS

    (

    SELECT DISTINCT ID

    FROM #Temp1

    )

    SELECT

    ID,

    ...

  • RE: T-SQL Help

    Hi,

    Thanks for the reply! What I want to see is this (sorry Excel doesn't copy over very well):

    IDCodeGroupingGroupingOther

    115101A

    115151A

    115201A

    115251A

    215101A

    215151A

    215201A

    215251A

    315102B

    315802B

    415103C

    415903C

    The "Grouping" or "GroupOther" columns identifies all the different code sets and...

  • RE: Connect to Database Engine Box

    This comment helped remove the server list. Thanks.

  • RE: Rollback Help

    Bad news, but thanks for the direction...

  • RE: 1NF View Generator

    That worked! Thanks. And the script is pretty darn awesome!!!

  • RE: 1NF View Generator

    I think this script will be extremely useful, but are you sure it works? I have AdventureWorks running on a SQL 2008 box, and I copied and pasted the...

  • RE: CTE Query Question

    That's exactly what I'm looking for, thank you.

  • RE: CTE Query Question

    Hmmm, I'm not sure I follow. Can you please identify where in the query I would add this syntax? I've tried in multiple places, but the final results...

  • RE: CTE Query Question

    Blank is fine. In fact, the reason I put "Blank" in there at all is because it didn't work when I just used a space (' ').

    What...

  • RE: CTE Query Question

    Beautiful, thanks!!!! That works too!

  • RE: CTE Query Question

    Conceptually, I think I have it. Thanks for the replies guys!

    /*******************************************************************************************

    Creates temporary Order Table for example

    *******************************************************************************************/

    create table #Orders

    (

    ...

Viewing 15 posts - 1 through 15 (of 33 total)