|
|
|
start date: Thu, 16 Aug 2007 15:13:54 +0200,
posted on: microsoft.public.dotnet.framework.adonet
back
| Thread Index |
|
1
Michel Vanderbeke
|
|
2
Cowboy \(Gregory A. Beamer\) oSpamM
|
|
3
Braulio Diez
|
|
4
William Vaughn
|
Copying tables in SQLEXPRESS
Hello,
I have a program, running in several places, using SQLEXPRESS as database.
The different places are stand-alone, and not connected to a network.
Regulary, I have to apply changes on certain tables of the database.
In a previous program, written in VB6 with an Access database, I used JRO
through VB6-code to delete the table in the different databases and to copy
the new one.
Is something similar possible with SQLEXPRESS. I would like to be able to
update tables in an SQLEXPRESS database file by deleting them and replace
them with the new table. Is this possible through VB.NET code?
Many thanks and greetings from Brugge (Bruges - Belgium),
Michel
Date:Thu, 16 Aug 2007 15:13:54 +0200
Author:
|
Re: Copying tables in SQLEXPRESS
Yes, you can use SMO to achieve what you desire. (SQL Management Objects).
You can also script out the DDL and run it.
.... provided the acount you are doing this under has sufficient privileges
(both SMO or DDL).
--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box! |
*************************************************
"Michel Vanderbeke" wrote in message
news:46c44d97$0$13859$ba620e4c@news.skynet.be...
> Hello,
>
> I have a program, running in several places, using SQLEXPRESS as database.
> The different places are stand-alone, and not connected to a network.
> Regulary, I have to apply changes on certain tables of the database.
>
> In a previous program, written in VB6 with an Access database, I used JRO
> through VB6-code to delete the table in the different databases and to
> copy
> the new one.
>
> Is something similar possible with SQLEXPRESS. I would like to be able to
> update tables in an SQLEXPRESS database file by deleting them and replace
> them with the new table. Is this possible through VB.NET code?
>
> Many thanks and greetings from Brugge (Bruges - Belgium),
>
> Michel
>
>
>
Date:Thu, 16 Aug 2007 10:45:56 -0500
Author:
|
RE: Copying tables in SQLEXPRESS
Unfortunately SQL Express does not ship SSIS.
Check out this link for import / export on Express:
http://blogs.msdn.com/euanga/archive/2006/07/20/672272.aspx
HTH
Braulio
/// ------------------------------
/// Braulio Diez
///
/// http://www.tipsdotnet.com
/// ------------------------------
"Michel Vanderbeke" wrote:
> Hello,
>
> I have a program, running in several places, using SQLEXPRESS as database.
> The different places are stand-alone, and not connected to a network.
> Regulary, I have to apply changes on certain tables of the database.
>
> In a previous program, written in VB6 with an Access database, I used JRO
> through VB6-code to delete the table in the different databases and to copy
> the new one.
>
> Is something similar possible with SQLEXPRESS. I would like to be able to
> update tables in an SQLEXPRESS database file by deleting them and replace
> them with the new table. Is this possible through VB.NET code?
>
> Many thanks and greetings from Brugge (Bruges - Belgium),
>
> Michel
>
>
>
>
Date:Thu, 16 Aug 2007 18:11:39 -0700
Author:
|
Re: Copying tables in SQLEXPRESS
I suggest you try ADO.NET 2.0 and SqlBulkCopy. It can copy any data source
exposed with a DataReader to SQL Server.
--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant, Dad, Grandpa
Microsoft MVP
INETA Speaker
www.betav.com
www.betav.com/blog/billva
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
Visit www.hitchhikerguides.net to get more information on my latest book:
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook)
-----------------------------------------------------------------------------------------------------------------------
"Michel Vanderbeke" wrote in message
news:46c44d97$0$13859$ba620e4c@news.skynet.be...
> Hello,
>
> I have a program, running in several places, using SQLEXPRESS as database.
> The different places are stand-alone, and not connected to a network.
> Regulary, I have to apply changes on certain tables of the database.
>
> In a previous program, written in VB6 with an Access database, I used JRO
> through VB6-code to delete the table in the different databases and to
> copy
> the new one.
>
> Is something similar possible with SQLEXPRESS. I would like to be able to
> update tables in an SQLEXPRESS database file by deleting them and replace
> them with the new table. Is this possible through VB.NET code?
>
> Many thanks and greetings from Brugge (Bruges - Belgium),
>
> Michel
>
>
>
Date:Fri, 17 Aug 2007 08:53:36 -0700
Author:
|
|
|