Forum Replies Created

Viewing 15 posts - 12,856 through 12,870 (of 14,953 total)

  • RE: coalesce negative values

    Sign doesn't get him precisely what he's looking for, but it could probably be used. And it does reduce even further the typing required. 🙂

  • RE: looping sub query

    "Direction" isn't a type. It's a column with type Char(1), and a constraint to make sure it's only either "+", or "-".

    It looks like I missed a close-parentheses at...

  • RE: Selecting 12 months of data for utility bills

    That looks like the query that will do what you need. What am I missing in your request? What help do you need?

  • RE: looping sub query

    All of those go under one trade ID in the details table.

    Let's say it's trade ID = 1.

    select TeamID, PlayerID, Direction -- Raw data

    from dbo.TradeDetails

    where TradeID = 1

    order by DetailDate

    or

    select...

  • RE: remove spaces more than double

    Do you want to update the table, or do you want to remove the spaces in a query?

    If you want to update the table, here's one way:

    set nocount on

    update #test

    set...

  • RE: What is the best way to aggregate data from remote servers?

    I'm assuming that Customer IDs aren't shared between databases. Is that correct? If so, then best-match on name is possibly all you can do. You might match...

  • RE: looping sub query

    To find which team a player went to, you can query all trade details with that player ID, or you can join between details with + an - in the...

  • RE: DTC in stored procedure

    How long does the first transaction run before it errors out?

  • RE: Timestamp

    Check out these articles and their discussions. All kinds of data on how to keep track of what's been changed, when, and by whom:

    http://www.sqlservercentral.com/articles/Auditing/63247/

    http://www.sqlservercentral.com/articles/Auditing/63248/

  • RE: Need help import xsd

    In your data flow object, you can select an XML data source, and pick a file for the connection for it. Then you can make the file variable and...

  • RE: coalesce negative values

    If it's columns in a table, then you can use Unpivot and either the sum() - sum(abs()) calculation, or the 0 > Any function. Either will work.

    Edit: And, had...

  • RE: looping sub query

    That would still work with a ledger type structure. It's just an easier data structure to deal with, and it will do what you need on that.

  • RE: Get rid of cursors

    I also don't have definition and data for dbo.Audits_Comments.

  • RE: Get rid of cursors

    I took a look at the code, and I need to know if this is a valid statement of the relationships between the various tables:

    select *

    from dbo.Audits

    inner join dbo.Audits_InspectionItems

    on Audits.AuditID...

  • RE: coalesce negative values

    Since the original example is using a string-split function to break it into rows, I'm pretty sure that's the desired input. But I think he already has what he...

Viewing 15 posts - 12,856 through 12,870 (of 14,953 total)