Sometimes we have to be able to fill the data in a different database tables. For example, the data in the table in the database that is now being used accidentally deleted, this is one of the terrible things that could happen to a programmer, to overcome it we can use the database backup to restore the data, although not all data can be restored , but a minimum of 90% or 95% of the data can be restored if we have a database backup, but otherwise it would be difficult to overcome, or even can not be at all: D.
To fill the data in different tables database in Sql Server 2008, code is essentially as follows:
Insert Into [database name]. [Dbo]. [Table Name]
Select * From [database name]. [Dbo]. [ The table name]
Example:
Insert Into RunningDatabase.dbo.Patient
Select * From BackupDatabase.dbo.Patient
Subscribe to:
Post Comments (Atom)
-
Berikut adalah cara yang saya tahu Untuk melihat strukur tabel pada SQL Server 2012 1. Cara pertama adalah dengan menggunakan SSMS (SQL Ser...
-
Untuk merename nama kolom pada SQL Server 2012 ada dua cara yang bisa dilakukan, yaitu: 1. Menggunakan SSMS (SQL Server Management Studio)...
-
Saya adalah orang yang sangat benci untuk melakukan hal-hal yang tidak penting, terutama jika saya yang menjadi sasaran hal-hal tidak penti...
No comments:
Post a Comment