Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 6,486 total)

  • RE: Rounding problem in sql 2008

    andre-394971 (1/29/2012)


    Thanks for that...

    The number of rows I need to process is less than 1000 in the worst case...

    Yes it would be possible to do on the front end but...

  • RE: Development & conception of a solution given piece-mail divergent and varitiant processes...

    We've been taking on a somewhat similiar task (trying to standardize an integration layer), and it's been a LONG road for us.

    From what I've seen:

    - your first step...

  • RE: validate imported spreadsheet data against the original spreadsheet

    In terms of validation: you can run aggregate functions in both the excel file and against the table to make suer you end up with consistent results. This...

  • RE: getting rid of "dbo." prefix in Access

    When you're in a MDB file, the label attached to the names (e.g. dbo_table1) are just that - arbitrary labels. Once you've attached the tables the name itself doesn't...

  • RE: Jiggly Code

    patrickmcginnis59 (1/24/2012)


    Yeah no kidding. The original kernel thread had the BOSS complaining about people jiggling code. That makes a pretty big difference right there.

    True - but I doubt that Linus...

  • RE: whle loop in ssis?

    Jeff Moden (1/23/2012)


    I have to ask... is a FOREACH loop in SSIS going to be as effecient as creating a result set in a stored procedure that uses FOR XML...

  • RE: whle loop in ssis?

    It's not a WHILE loop, but you can accomplish the same effect using the FOREACH control container. Just point it at the table, and start building.

    Here's a good place...

  • RE: Jiggly Code

    sturner (1/23/2012)


    Matt Miller (#4) (1/23/2012)


    So developers and DBA's are on the hook for not spitting out solutions they don't understand, but it is imperative to remember that they're the end...

  • RE: Jiggly Code

    Steve Jones - SSC Editor (1/23/2012)


    Gus,

    I wouldn't call experimenting "jiggling". Now if you try things and then slip that code into a deployment without understanding it, which implies incomplete testing...

  • RE: Don't Want to Change Consecutive Records

    Here's a CTE version that should do what you need to see:

    ;with OrderingCTE as (

    SELECT ROW_NUMBER() over (PARTITION by [job] order by oper_num) RN,

    * from #JobSample)

    select

    ...

  • RE: read registry w/o sysadmin, is it possible?

    I would be throwing this back at the developer of your sealed application (using unsupported and deprecated procedures with no documentation whatsoever sounds like a winning combination by the way)....

  • RE: 3rd Quartile (statistical calculation)

    You can always use NTILE() to come up with the records making up the 3rd quartile (and then compile them to whatever values you might need).

    ; with DosageCTE as (

    SELECT...

  • RE: Service Broker

    I am not sure if it works or not, but one of the big reasons to use service broker is in fact to get away from linked server hell. ...

  • RE: Divide by Zero why so difficult?

    DeanORenO (1/5/2012)


    I don't know why it is taking me so long just to figure out something that should be so simple, but anyway, here it is, I just need to...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (12/29/2011)


    GilaMonster (12/29/2011)


    Stefan Krzywicki (12/29/2011)


    I don't have room on my machine either.

    Two words: External harddrive.

    Seriously, I've had to do that once or twice.

    I can't even get them to buy...

Viewing 15 posts - 1,096 through 1,110 (of 6,486 total)