Viewing 12 posts - 91 through 102 (of 102 total)
thanks Much Sean i am going to test it now and let you know
October 24, 2013 at 8:16 am
thanks sena . i dont need to worry about rest of the columns in those tables. i can add another column to specify whether its a string or num column...
October 23, 2013 at 12:12 pm
thanks for your help
here is the structure of the src tables and other
Create table dbo.src
(
ID int Identity(1,1) PRIMARY KEY CLUSTERED
,Name varchar(100)
,Address varchar(255)
,Phone varchar(25)
,Age INT
)
insert into src values...
October 23, 2013 at 11:30 am
i am new bee let me try to provide actual requirement
Create table dbo.UpdateDef( SourceTableName VARCHAR(100),ColumnName VARCHAR(100),Status_fl CHAR(1))
go
insert into dbo.UpdateDef values ( 'dbo.Src','NAME','Y')
go
insert into dbo.UpdateDef values ( 'dbo.Src','ADDRESS','N')
go
insert into dbo.UpdateDef...
October 23, 2013 at 9:33 am
whatever specified in the adim table like customer and columns fname and lname status as Y
i want to build a update statement whatever specified in admin table
October 23, 2013 at 8:33 am
thanks, i will try that option. database doesnt have CDC or fk's defined.
March 11, 2013 at 6:13 pm
But after dropping transactional replication keeping snapshot i am not able truncate the data from that table. In spahot we can always truncate.
March 11, 2013 at 1:07 pm
Viewing 12 posts - 91 through 102 (of 102 total)