Hi , I am new to asp ,i migrated from asp.net to asp recently .... i want to select vales from one database and insert it into another database... can i use sqldatareader in asp??? or any other option?? please help me out... Thanks Ravi
Please do a search in google for data migrators. Or you can write script to do it. What database you are using? www.rosepark.co.in
I think you meant to say you are migrating from "asp to asp.net" ... Why are you migrating the database because of the language change?. ASP.NET can work with almost all databases that asp worked with
Above all... ASP.NET is one of the most secure web scripting language coz it uses a whole programming language behind the page. Classic ASP is very bad and I simply don't like it.. but ASP.NET is my favourite!
it may help you ,it is directly inserting data ifrom one table to another. create proc latestnews ( insert into Topnews(Title,News,Keywords,imageid)select Title,News,Keywords,imageid from Technews where ID=(select max(id) from Technews) insert into Topnews(Title,News,Keywords,imageid)select Title,News,Keywords,imageid from sportsnews where ID=(select max(id) from sportsnews) insert into Topnews(Title,News,Keywords,imageid)select Title,News,Keywords,imageid from business where ) You can do it by progaramming try..