Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
AnswerRe: Dataset save as new .mdb Pin
Gonzalo Cao15-Jun-10 22:49
Gonzalo Cao15-Jun-10 22:49 
AnswerRe: Dataset save as new .mdb Pin
Eddy Vluggen15-Jun-10 22:50
professionalEddy Vluggen15-Jun-10 22:50 
GeneralRe: Dataset save as new .mdb Pin
shoubi15-Jun-10 22:58
shoubi15-Jun-10 22:58 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen15-Jun-10 23:17
professionalEddy Vluggen15-Jun-10 23:17 
GeneralRe: Dataset save as new .mdb Pin
shoubi16-Jun-10 18:04
shoubi16-Jun-10 18:04 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen16-Jun-10 19:53
professionalEddy Vluggen16-Jun-10 19:53 
GeneralRe: Dataset save as new .mdb Pin
shoubi22-Jun-10 17:46
shoubi22-Jun-10 17:46 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen22-Jun-10 22:58
professionalEddy Vluggen22-Jun-10 22:58 
Hi Smile | :)

The easiest way to do so would be in Sql, combining a SELECT with an INSERT statement. The code below should work with the AdventureWorks database;
SQL
INSERT INTO Person.Contact (
  FirstName, 
  LastName, 
  Title, 
  PasswordHash, 
  PasswordSalt)
	SELECT FirstName, 
               LastName, 
               Title, 
               PasswordHash, 
               PasswordSalt
	  FROM Person.Contact
Hope this helps Smile | :)
I are Troll Suspicious | :suss:

GeneralRe: Dataset save as new .mdb Pin
shoubi22-Jun-10 23:25
shoubi22-Jun-10 23:25 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen23-Jun-10 0:38
professionalEddy Vluggen23-Jun-10 0:38 
GeneralRe: Dataset save as new .mdb Pin
shoubi23-Jun-10 1:52
shoubi23-Jun-10 1:52 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen23-Jun-10 2:25
professionalEddy Vluggen23-Jun-10 2:25 
GeneralRe: Dataset save as new .mdb Pin
shoubi23-Jun-10 17:20
shoubi23-Jun-10 17:20 
GeneralRe: Dataset save as new .mdb Pin
shoubi19-Jul-10 20:46
shoubi19-Jul-10 20:46 
GeneralRe: Dataset save as new .mdb Pin
Eddy Vluggen20-Jul-10 0:05
professionalEddy Vluggen20-Jul-10 0:05 
QuestionHow to notify exception in worker thread to Main thread Pin
Praveen Raghuvanshi15-Jun-10 22:17
professionalPraveen Raghuvanshi15-Jun-10 22:17 
AnswerRe: How to notify exception in worker thread to Main thread Pin
Gonzalo Cao15-Jun-10 22:56
Gonzalo Cao15-Jun-10 22:56 
GeneralRe: How to notify exception in worker thread to Main thread Pin
Praveen Raghuvanshi16-Jun-10 19:08
professionalPraveen Raghuvanshi16-Jun-10 19:08 
GeneralRe: How to notify exception in worker thread to Main thread Pin
Gonzalo Cao16-Jun-10 21:21
Gonzalo Cao16-Jun-10 21:21 
QuestionHello Can you help? Pin
levan omadze15-Jun-10 21:40
levan omadze15-Jun-10 21:40 
AnswerRe: Hello Can you help? Pin
OriginalGriff15-Jun-10 22:05
mveOriginalGriff15-Jun-10 22:05 
QuestionHello Pin
levan omadze15-Jun-10 21:39
levan omadze15-Jun-10 21:39 
AnswerRe: Hello Pin
Peace ON15-Jun-10 21:44
Peace ON15-Jun-10 21:44 
QuestionYahoo woeid based weather forecasts Pin
faheemnadeem15-Jun-10 21:01
faheemnadeem15-Jun-10 21:01 
QuestionMicrosoft Word Viewer on C# Pin
Mohammad.Elcharfa15-Jun-10 20:51
Mohammad.Elcharfa15-Jun-10 20:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.