generating database script

  • Thread starter Thread starter Ollie Riches
  • Start date Start date
O

Ollie Riches

Is it possible to generate the t-sql script for a database schema and the
data from .Net(C#) at all?

Cheers

Ollie Riches
 
thanks but I don't want a code generator, I am looking for a programmatic
approach to scripting out the database schema and the dat contained in the
database, just like you can through sql server 2000 enterprise manager

Cheers

Ollie Riches

Miha Markic said:
Check out also free tool CodeSmith at www.ericjsmith.net/codesmith

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
www.rthand.com
SLODUG - Slovene Developer Users Group www.codezone-si.info

Ollie Riches said:
Is it possible to generate the t-sql script for a database schema and the
data from .Net(C#) at all?

Cheers

Ollie Riches
 
The only accessible code I know of for this is in DMO, which is a COM based API. You can find a tiny
(classical VB) example here, among other things:
http://www.karaszi.com/SQLServer/info_generate_script.asp

With 2005, we can use SMO for this, which is managed code.

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/


Ollie Riches said:
thanks but I don't want a code generator, I am looking for a programmatic
approach to scripting out the database schema and the dat contained in the
database, just like you can through sql server 2000 enterprise manager

Cheers

Ollie Riches

Miha Markic said:
Check out also free tool CodeSmith at www.ericjsmith.net/codesmith

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
www.rthand.com
SLODUG - Slovene Developer Users Group www.codezone-si.info

Ollie Riches said:
Is it possible to generate the t-sql script for a database schema and the
data from .Net(C#) at all?

Cheers

Ollie Riches
 
thanks

Ollie

Tibor Karaszi said:
The only accessible code I know of for this is in DMO, which is a COM based API. You can find a tiny
(classical VB) example here, among other things:
http://www.karaszi.com/SQLServer/info_generate_script.asp

With 2005, we can use SMO for this, which is managed code.

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/


Ollie Riches said:
thanks but I don't want a code generator, I am looking for a programmatic
approach to scripting out the database schema and the dat contained in the
database, just like you can through sql server 2000 enterprise manager

Cheers

Ollie Riches

Miha Markic said:
Check out also free tool CodeSmith at www.ericjsmith.net/codesmith

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
www.rthand.com
SLODUG - Slovene Developer Users Group www.codezone-si.info

Is it possible to generate the t-sql script for a database schema and the
data from .Net(C#) at all?

Cheers

Ollie Riches
 
Back
Top