Migrating an application from SQL Server to Oracle will involve a lot more than changing the connection string, unless you have used Data Access Application Block (DAAB) . By the way, the connection string looks almost the same.
<add name="ConnString" connectionString="Data Source=abc;user id=user;password=pass;min pool size=4;max pool size=100;"
providerName="System.Data.OracleClient" />
First of all, you will have to decide whether you want to use System.Data.OracleClient from Microsoft or Oracle.DataAccess from Oracle.
Then, you will have to change all the Objects that begin with Sql to their equivalents in the Oracle library (beginning with Oracle)
e.g SqlConnection changes to OracleConnection
Some other things that I can think of:
- remove [] from around the table names
- replace @param with :param in the parameters
In case you get stuck with something specific, let me know.
Refer to the following link for some help
http://www.devx.com/dbzone/Article/20715