Viewing 5 posts - 1 through 5 (of 5 total)
ok here is the code and i didn't use stored procedure .it is just an sql statement calling it from C#
select *
from " + old + ".dbo.table1
left outer...
September 9, 2005 at 5:05 am
first really 10x alot for ur help,
then, old is a variable that hold database name which the user will choose before begining copying data , and new is a variable...
September 9, 2005 at 3:17 am
can't i make something from database to specify collation for all new created databases and all old databases to be the same coz as i told u that old and...
September 9, 2005 at 1:40 am
select *
from old.dbo.table1 left outer join
new.dbo.table2 on new.dbo.table2.id=old.dbo.table1.id
this is my SQL statement whil error is:
"Cannot resolve collation conflict for equal to operation"
September 9, 2005 at 1:25 am
10x for ur reply and second yes am using join but the database am copying data to it am creating it at run time and the database am copying from...
September 9, 2005 at 12:41 am
Viewing 5 posts - 1 through 5 (of 5 total)