Forum Replies Created

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

  • RE: I can't seem to figure this out: view and query

    Lynn Pettis (10/28/2009)


    foxjazz-962651 (10/28/2009)


    I figured out a way around it.

    Okay, since you did ask for help, care to enlighten us with your solution? Others may benefit.

    Sorry Lynn, time wasn't...

  • RE: I can't seem to figure this out: view and query

    I figured out a way around it.

  • RE: I can't seem to figure this out: view and query

    I am sorry I need to be more clear.

    I know that we have data in the description that is not numeric.

    The view is suppose to act as a (sub table)...

  • RE: update

    If the problem is my brain, it isn't fixed.

    Please fix my brain.

  • RE: update

    CREATE TABLE [dbo].[tblLevelToLevelRel](

    [GenLevelToLevelRelID] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [UpperLevelCloneID] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [LowerLevelCloneID] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [AllocPercent] [float] NOT NULL,

    [Active] [bit] NULL,

    [ChangedDate] [datetime] NULL,

    [ChangedBy] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [ChangedType] [char](1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [ChangedMachineName]...

  • RE: update

    first query 43k

    second 153k

  • RE: update

    the genleveltolevelrel id is a primary key on the tblleveltolevelrel table.

  • RE: update

    TempDelete has 43k records.

    distinct genleveltolevelrelid records

  • RE: getting row data to return as a cell

    Thanks for the reply. I really appreciate the help. After further research here is what I went with:

    I made the following into a function, and boy does it work good.

    DECLARE...

  • RE: trying to figure out an update

    This seems to work with a temp table:

    create table #tempR

    (

    productid int,

    rate decimal(16,2)

    )

    insert into #tempR (ProductID,rate)

    SELECT ProductTempRR.ProductID, SUM(ProductTempRR.PolkTotal * ProductReplacementSchedule.Replacement / 100) AS rate

    FROM ...

  • RE: T-Sql rant

    Jeff Moden (4/3/2009)


    foxjazz (4/3/2009)


    But who am I to say anything about the limitations of t-sql?

    When it comes to data manipulation, I've not found any limitations yet.

    Jeff, ummm what do you...

  • RE: T-Sql rant

    foursaints, I appreciate the note. I have never had any problems with inserting data, or query, but my understanding of updates (multiple rows at a time) with different data, is...

  • RE: steve's dataphore

    It seems to me, most of the algorithms are built, and if you build a new one it usually ends up somewhere on the net.

    http://en.wikipedia.org/wiki/Algorithm

  • RE: steve's dataphore

    I want the best of all worlds.

    I want ssis to be able to run dataphore scripts.

    I want to be able to do what I want in a script.

    That's really all...

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