Click here to Skip to main content
15,919,479 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionFormat floppy disk Pin
johnjsm20-Dec-05 22:47
johnjsm20-Dec-05 22:47 
AnswerRe: Format floppy disk Pin
George B Gilbert21-Dec-05 5:49
George B Gilbert21-Dec-05 5:49 
AnswerRe: Format floppy disk Pin
Dave Kreskowiak21-Dec-05 7:50
mveDave Kreskowiak21-Dec-05 7:50 
QuestionSource Code For List All Hardware & Software In Your Computer Pin
Wachy Man20-Dec-05 22:37
Wachy Man20-Dec-05 22:37 
QuestionDatabase send one table from one database to other Pin
Sasmi20-Dec-05 20:22
Sasmi20-Dec-05 20:22 
AnswerRe: Database send one table from one database to other Pin
enjoycrack20-Dec-05 21:10
enjoycrack20-Dec-05 21:10 
AnswerRe: Database send one table from one database to other Pin
jpazgier21-Dec-05 15:20
jpazgier21-Dec-05 15:20 
AnswerRe: Database send one table from one database to other Pin
Gulfraz Khan28-Dec-05 6:48
Gulfraz Khan28-Dec-05 6:48 
Hi!

Asuming that you are using MS SQL Server
You need to avoid primary key and null value violations on your own
Use
Insert Into [Source Database Name].[Object Owner Name].[Destination Table]
From
[Destination Database Name].[Object Owner Name].[Source Table Name]


Example:
Insert Into NorthwindBackup.dbo.Products
Select * from NorthWind.dbo.Products

Or

Insert Into NorthwindBackup..Products
Select [Fields List] from Northwind..Products --name, data type and sequence of the fields must be the same as in destination table
--you may include your WHERE clause here


QuestionDetermine the Type of Printer Pin
HemaRawat20-Dec-05 18:02
HemaRawat20-Dec-05 18:02 
AnswerRe: Determine the Type of Printer Pin
George B Gilbert21-Dec-05 7:09
George B Gilbert21-Dec-05 7:09 
AnswerRe: Determine the Type of Printer Pin
progload21-Dec-05 8:21
progload21-Dec-05 8:21 
GeneralRe: Determine the Type of Printer Pin
HemaRawat21-Dec-05 17:48
HemaRawat21-Dec-05 17:48 
QuestionDatabase Info Pin
nitin_ion20-Dec-05 17:37
nitin_ion20-Dec-05 17:37 
AnswerRe: Database Info Pin
Roy Heil21-Dec-05 4:14
professionalRoy Heil21-Dec-05 4:14 
Questioneasy XML question Pin
jcrussell20-Dec-05 16:48
jcrussell20-Dec-05 16:48 
AnswerRe: easy XML question Pin
Steve Pullan20-Dec-05 17:45
Steve Pullan20-Dec-05 17:45 
GeneralRe: easy XML question Pin
jcrussell20-Dec-05 18:04
jcrussell20-Dec-05 18:04 
GeneralRe: easy XML question Pin
Steve Pullan21-Dec-05 15:58
Steve Pullan21-Dec-05 15:58 
Question2k3 VB.net import Pin
miltond20-Dec-05 15:28
miltond20-Dec-05 15:28 
AnswerRe: 2k3 VB.net import Pin
Steve Pullan20-Dec-05 15:47
Steve Pullan20-Dec-05 15:47 
GeneralRe: 2k3 VB.net import Pin
miltond20-Dec-05 16:00
miltond20-Dec-05 16:00 
QuestionSQL Update command with VB.NET Pin
Chaos Machine20-Dec-05 12:26
Chaos Machine20-Dec-05 12:26 
QuestionRe: SQL Update command with VB.NET Pin
dptalt21-Dec-05 2:40
dptalt21-Dec-05 2:40 
AnswerRe: SQL Update command with VB.NET Pin
Chaos Machine21-Dec-05 10:58
Chaos Machine21-Dec-05 10:58 
GeneralRe: SQL Update command with VB.NET Pin
dptalt21-Dec-05 17:01
dptalt21-Dec-05 17:01 

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.