I have one .Net application and i have two databases which
is in SQL server2000 and one more database in ORACLE? how
can i access the database from different Databases?

Answers were Sorted based on User's Feedback



I have one .Net application and i have two databases which is in SQL server2000 and one more databa..

Answer / santosh

Use
DATASET for that

just take 2 conenctions
one with Sql server and other with Oracle
then use

OledbDataAdopter DAD1 = new Oledbdataadopter("select * from
emp",SQL Serverconnection)

OledbDataAdopter DAD2 = new Oledbdataadopter("select * from
Student",Oracle)

then

DAD1.fill(Dataset,"emp");
DAD2.fill(dataset,"student");


now u can acces data from same Dataset

Is This Answer Correct ?    6 Yes 0 No

I have one .Net application and i have two databases which is in SQL server2000 and one more databa..

Answer / shrawan

THROUGH IMPLEMENTING LINKED SERVER

Is This Answer Correct ?    0 Yes 0 No

I have one .Net application and i have two databases which is in SQL server2000 and one more databa..

Answer / sharifuddin

Can u explain how we do with "THROUGH IMPLEMENTING LINKED
SERVER"

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How do you sign out from forms authentication?

1 Answers   MCN Solutions,


About friend and Protected friend ?

3 Answers   MMTS,


How to disable validator control by client side JavaScript?

1 Answers  


What New Features comes with ASP.NET Web API 2.0?

1 Answers  


How many webforms are possible on a single webpage?

6 Answers  


How can we apply themes to an asp.net application?

1 Answers  


if i have 1000 records and i want to access 20 ata time from SQL server, what will be the query?

9 Answers   Mind Tree,


What is the adavantage of using ASP.NET routing?

1 Answers   NA,


How do cookies work?

1 Answers  


Fetch one page value to another page without using state-managment ?

1 Answers   HCL,


What base class do all Web Forms inherit from?

1 Answers  


Difference between ASP & ASP.NET Session State

1 Answers   Cognizant, Wipro,


Categories