Forum Replies Created

Viewing 15 posts - 91 through 105 (of 179 total)

  • RE: compre data row by row

    Thank u very much all of u guys.

    U r very helpful

    I got fair idea what to do now.

     

  • RE: compre data row by row

    Cheers Antares686

  • RE: compre data row by row

    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]...

  • RE: compre data row by row

    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

  • RE: compre data row by row

    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...

  • RE: compre data row by row

    Thats cool Antares686 

    I'll give it a try

    Many thanks

  • RE: which one is better

    Thanks alzdba thats great

  • RE: Select * or Select 0 when using Exists

    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

  • RE: Check if a file exists ...

    Thats great mslava.

    I'll give it a try

  • RE: Check if a file exists ...

    Thanks Julian

  • RE: Check if a file exists ...

    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...

  • RE: Check if a file exists ...

    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.

  • RE: Check if a file exists ...

    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...

  • RE: table design

    Thank u all for ur great input.

    hi Phill Carter could u tell me what client statistics does?

    Thanks

  • RE: table design

    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 *...

Viewing 15 posts - 91 through 105 (of 179 total)