Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Restricting Records shown when compaired between 2 db's

    I have put together what I think you are asking for:

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[tbl_RM_Materials]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

    drop table [dbo].[tbl_RM_Materials]

    GO

    CREATE TABLE [dbo].[tbl_RM_Materials] (

    [RM_ID]...

Viewing post 1 (of 2 total)