Forum Replies Created

Viewing 15 posts - 91 through 105 (of 173 total)

  • RE: Primary Keys are necessary for good database design

    I love reverse engineering databases! Its like a big puzzle

    It's perverse but I'm so with you on this. I think it appeals to my need for bringing order out...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Query to update values

    Glad I could help!

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Derived tables and similar tops (temp tables & CTEs)

    There are a number of articles and threads on this subject. Enter CTE in the search box up thar on the right and you'll see what I mean. ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Query to update values

    --first create some tables

    create table #SHP_MANIFEST (

    Row_key int null,

    SHIP_DATE_DWKEY int null,

    PRIMARY_DC_ID int null

    )

    create table #SUBORDERS (

    ROW_KEY int null,

    PRIMARY_DC_ID int null,

    DC_ID int null

    )

    --then add your test data

    insert into...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Getting Most Recent Date

    What exactly do you mean by none method?

    Probably just a contraction of Number One ! 😛

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Securing data from internal theft

    The bank I'm at keeps things locked down pretty tight electronically. There are no external drives on my desktop machine, and I can't open any web email programs on...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: limit rows without out multiple sheets

    Sounds like you have a page break somewhere

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Today's Random Word!

    Google

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Matrix sorting (I am googled out)

    You tried the sort in the group properties?

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Dynamic headers in a grouped report

    You can add a group header. Right click on the group and add total row, insert above for header. It's a little misleading. Add your company name...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Table design bias to rows or columns

    #1 of course, and the TranType should probably be a foreign key from another table where you describe tran types, rather than a varchar field in your transaction table.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Export SQL 2008 data to Excel

    Have you considered using SSRS instead? You can control the pagination, tabs and tab labels quite handily, and schedule the delivery to your users.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Trying to improve query, strange execution plan

    PAUL WHITE ROCKS!!!!

    seeeeeeeriously

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need help filtering out a record where 1 column makes it not a duplicate

    wouldn't a simple group by accomplish the goal?

    SELECT

    SBBACLOAN

    ,[SBNAME1]

    ,[SBBRSSN]

    ,[SBNAME2]

    ,[SBCOBRSSN]

    ,APPRVLDTE=max(APPRVLDTE)

    FROM [WarehouseStaging].[dbo].[AS400_ALSSLBACOUTP0]

    WHERE APPRVLDTE is not null and APPRVLDTE <> '0001-01-01'

    group by

    SBBACLOAN

    ,[SBNAME1]

    ,[SBBRSSN]

    ,[SBNAME2]

    ,[SBCOBRSSN]

    Maybe I misread. Please correct me. 😀

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Repeating table on each page

    I think what you want to do is add a single Tablix control. Add a row group for whichever field makes LOGS unique, make sure to include a group...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 15 posts - 91 through 105 (of 173 total)