Viewing 15 posts - 331 through 345 (of 660 total)
How can i update table A from Table B when i found records from the EXCEPT cluse, ie; want to update table A with table B where i found records...
July 23, 2008 at 11:51 am
do i need to compare with CHECKSUM for each n every field like
WHERE
CHECKSUM(serverA.Column1,ServerA.Column2)
<>
CHECKSUM(ServerB.Column1,ServerB.Column2)
July 23, 2008 at 11:43 am
Probably. This isn't the first time Mike's posted a massive proc (and no other details) and asked for someone to optimise it.
you are right.
I was just posting full proc just...
July 15, 2008 at 12:57 pm
yeah u guys gace some ideas before and followed tha same here also, but still it takes like more than 5min.
thanks for your help guys
July 15, 2008 at 12:31 pm
these are very old procs written by some one else years back, trying to make it faster as they are in the daily jobs.
I was assuming this can be dont...
July 15, 2008 at 12:21 pm
thank you so much for the help, i'll keep debugging it.
July 14, 2008 at 2:01 pm
joins shud reflect in my original store proc, am just trying to rewrite the original one, thats all.
July 14, 2008 at 1:53 pm
unfortunately there was no records returned to me.
its just empty, where am supposed to get 22 rows.
July 14, 2008 at 1:02 pm
Thanks a lot for working on this.
yeah i got some result of 10 rows, but i was wondering how this wud replace my cursor, as it is a row by...
July 14, 2008 at 11:56 am
For that select statement i am not getting any data returned.
CREATE TABLE [dbo].[Audits_Comments](
[CommentId] [int] IDENTITY(1,1) NOT NULL,
[AuditInspectionItemId] [int] NULL,
[Comment] [nvarchar](200) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
CONSTRAINT [PK_Audits_Comments] PRIMARY KEY NONCLUSTERED
(
[CommentId] ASC
)WITH...
July 14, 2008 at 9:52 am
Lynn Pettis
yeah i'll change the naming conevention, actually it was written by some one else long back in 2000, now since they migrated to 2005, i have to work on...
July 11, 2008 at 4:50 pm
Viewing 15 posts - 331 through 345 (of 660 total)