Viewing 15 posts - 91 through 105 (of 179 total)
Thank u very much all of u guys.
U r very helpful
I got fair idea what to do now.
June 8, 2004 at 2:47 pm
for both databases the compatibility level is 80.
for the table in Tracker database
CREATE TABLE [dbo].[Task] (
[Taskid] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[Taskname] [varchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[fk_catid] [varchar]...
June 7, 2004 at 5:41 pm
Yes,i am using sql2000.
when i remove where condition its working fine.
but i get error when i add checksum!!
no i did not misspel anything
June 7, 2004 at 5:29 pm
Hi
i tried like following
select a.* from
task a
inner join
tracker..task b
on
a.taskid = cast(b.taskid as varbinary(5))
where CHECKSUM(a.*) != CHECKSUM(b.*)
but it is giving me error
Line 13: Incorrect syntax near '*'
(actually these 2 tables...
June 7, 2004 at 5:03 pm
June 7, 2004 at 4:33 pm
ur first query always faster than 2nd one.
in the second one u r getting all data(select *) to memory where as in the first one there was none
May 27, 2004 at 7:53 pm
Hi Julian
It worked
By the way i'm wondering how can we check if file exist on network drive??
as u know in the abv example...
May 19, 2004 at 7:21 pm
Hi Julian
Actually i tried that one too but to no avail.
actually i am running the code from my workstation
(i.e work) but server is on different machine.
May 19, 2004 at 7:05 pm
Hi Julian
i tried like following
DECLARE @fileexists int
EXEC master..xp_fileexist '\\work\C Drive\abcd.dbf', @fileexists OUTput
IF @fileexists = 1 -- The file exists
PRINT 'File Exists' -- Do what you want here
else
PRINT 'File does...
May 19, 2004 at 3:16 pm
Thank u all for ur great input.
hi Phill Carter could u tell me what client statistics does?
Thanks
May 5, 2004 at 2:49 pm
Thanks for the post mssql_rules
actually i exported one table with 180 columns and some 8000 records to sql server.
when i ran
select *...
May 4, 2004 at 4:50 pm
Viewing 15 posts - 91 through 105 (of 179 total)