Viewing 15 posts - 24,841 through 24,855 (of 26,490 total)
I have been reviewing the code you provided, and was wondering how you then execute and delete the resultant package you have created? I am thinking that this may...
May 5, 2008 at 2:18 pm
Also, i have a question :
when i write ml.year=2008, itΒ΄s because "2008" is a variable that iΓ‘m introduced before running the script.
Do i must write the extended date like...
April 30, 2008 at 10:02 pm
Jeff Moden (4/30/2008)
luissantos (4/30/2008)
an also, i' am not understand very well the result of :ml.data >= dateadd(yyyy,datediff(yyyy,0,'20080101'),0) and ml.data< dateadd(yyyy,datediff(yyyy,0,'20080131') + 1,0)
Lynn... I'm thinking that one is all yours π
Geez,...
April 30, 2008 at 9:29 pm
luissantos (4/28/2008)
thanks for your reply.
I test my tsql code with some index that you mencioned, but the maximum performance for this TSQL is about 6,30 minutes. Is too much
Also,...
April 29, 2008 at 5:48 am
Adam Bean (4/24/2008)
SELECT
NameType
,LastName
,FirstName
,MiddleName
,EndName
,NameKey
FROM tbl1 t1
INNER JOIN tbl2 t2
ON t1.NameKey = t2.NameKey
I've tried my index two ways:
CREATE...
April 25, 2008 at 7:17 am
rlondon (4/24/2008)
April 25, 2008 at 7:05 am
I started looking at your query, and honestly, I gave up. You have a lot of subqueries that could be eliminated using joins in your FROM clause that would...
April 25, 2008 at 7:01 am
A trigger runs in the context of the transaction that fires it. If the trigger fails the whole transaction fails and rolls back.
April 24, 2008 at 12:57 pm
Found another WHERE clause that should be changed:
where year(ml.data)=2008
to:
where ml.data >= dateadd(yyyy,datediff(yyyy,0,ml.data),0) and ml.data < dateadd(yyyy,datediff(yyyy,0,ml.data) + 1,0)
This would use the index I suggested in my previous post as well.
π
April 24, 2008 at 11:58 am
Here is my thoughts from a quick scan of your code:
If the following index does not exist, I would create it:
create index IDX_Balance on dbo.ml (
data...
April 24, 2008 at 11:22 am
Gail,
Thanks for jumping in on this and doing some testing. I tried to set up a test myself, but my mind wasn't working right and the test data I...
April 24, 2008 at 5:24 am
Steve F. (4/22/2008)
April 22, 2008 at 1:46 pm
I agree, check out all the products, and select the best one based on price, performance, ease of use, support, and what ever other criteria management might throw in. ...
April 22, 2008 at 1:35 pm
On the free side, we are using gzip. It works well also. we are using it to zip text files prior to being ftp'ed to a MSP.
π
April 22, 2008 at 1:05 pm
Viewing 15 posts - 24,841 through 24,855 (of 26,490 total)