Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi
I have one application which use the database of Microsoft SQL server 2005 Express Edition and database size now become more then 4GB.
So SQL Server not support More then 4GB database now,,,
I want to Change my DATABASE from SQL Server2005 to PostgreSQL.

So what steps can i follow ..
in my whole code (Like Connection string , importing namespace, etc,...

Pleas Help Me..
Posted

One way to transfer data from SQL Server to Postgres is to cinfigure a linked server between the databases and use that to insert data from SQL Server to Postgre. More info, see: http://msdn.microsoft.com/en-us/library/ms188279.aspx[^]

Another thing is that SQL Server 2008 Express has a size limitation of 10GB so upgrading the database engine would also give you more space. Refer to: http://msdn.microsoft.com/en-us/library/cc645993.aspx[^]
 
Share this answer
 
go through this link, this may helps you
Here[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900