Viewing 15 posts - 16 through 30 (of 126 total)
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...
October 29, 2009 at 8:48 am
I figured out a way around it.
October 28, 2009 at 1:05 pm
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)...
October 28, 2009 at 12:15 pm
If the problem is my brain, it isn't fixed.
Please fix my brain.
July 21, 2009 at 10:36 am
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]...
July 21, 2009 at 10:15 am
the genleveltolevelrel id is a primary key on the tblleveltolevelrel table.
July 21, 2009 at 9:07 am
TempDelete has 43k records.
distinct genleveltolevelrelid records
July 21, 2009 at 8:51 am
June 18, 2009 at 11:54 am
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...
May 20, 2009 at 8:57 am
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 ...
April 13, 2009 at 11:49 am
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...
April 3, 2009 at 11:45 am
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...
April 3, 2009 at 11:14 am
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.
March 30, 2009 at 3:18 pm
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...
March 27, 2009 at 11:50 am
Viewing 15 posts - 16 through 30 (of 126 total)