Viewing 15 posts - 136 through 150 (of 186 total)
gregory.anderson (4/14/2010)
PaulB-TheOneAndOnly (4/14/2010)
gregory.anderson (4/14/2010)
April 14, 2010 at 1:48 pm
lmu92 (4/14/2010)
Beside the sample data I already asked for please provide the beginning of the...
April 14, 2010 at 1:11 pm
PaulB-TheOneAndOnly (4/14/2010)
gregory.anderson (4/14/2010)
April 14, 2010 at 1:10 pm
Ok, I modified the stored proc to add the @Today = GetDate() right before it does each insert into PWDPermit so I could gather some real timings, right now, (still...
April 14, 2010 at 12:43 pm
I just added the unique index on the primary key, and unless I was way off on my previous tests, this appears to be around 5 times as fast...
Edit: Ok,...
April 14, 2010 at 12:22 pm
PaulB-TheOneAndOnly (4/14/2010)
gregory.anderson (4/14/2010)
Thanks, I'll try that.Please let us know how it goes.
Initial test, without gathering actual statistics, it's about half as fast. The actual execution plan shows the load on...
April 14, 2010 at 12:18 pm
PaulB-TheOneAndOnly (4/14/2010)
gregory.anderson (4/14/2010)
April 14, 2010 at 11:57 am
Ok, I'll try and post the sql stuff...this is going to be long
Staging Table
CREATE TABLE [dbo].[PWDPermitConversionData](
[PWDPermitConversionDataID] [int] IDENTITY(1,1) NOT NULL,
[PermitPrefix] [varchar](1) NOT NULL,
[PermitNumber] [varchar](6) NOT NULL,
[CustomerNumber] [int] NULL,
[SSN] [varchar](9) NOT...
April 14, 2010 at 11:39 am
lmu92 (4/14/2010)
gregory.anderson (4/14/2010)
...I am processing this where I do a Select Top 1 blah Where (criteria here) and assign the values in my select statement to variables. ...
Is it possible...
April 14, 2010 at 10:19 am
gregory.anderson (4/14/2010)
After trying Elliot's suggesting about displaying the actual execution plan, it appears as though the most time consuming/resource intensive portions of the proc are in "Clustered Index Update" statements.
By...
April 14, 2010 at 9:07 am
The conversion from the mainframe data (in a VSAM file) inserted into the SQL staging table only takes a few minutes. Then I add some indexes to my staging table,...
April 14, 2010 at 9:00 am
I got it. If @ErrorMessage was null, it would never build the dynamic sql...it would just set it to null also.
February 11, 2010 at 10:04 am
Also, when I output the @ErrorMessage variable, it comes out as a space also.
February 11, 2010 at 9:47 am
GilaMonster (1/19/2010)
How did...
January 19, 2010 at 7:34 am
Viewing 15 posts - 136 through 150 (of 186 total)