Copying One SQL Server Database Into Another
Hi, I'm trying to copy one SQL Server Database into another SQL Server DB within the same server. I learnt a bit about this copying, that it copies only the Database structure, the Tabels, constraints view stored procedures etc etc. Is there a tutorial where I can get clear instructions to do this. I just need the table structure without any data to be copied into this. Have even tried exploring creating and executing DTS packages but cudn't get much help with this. Any help wud be really appreciated.
Thanks
View Complete Forum Thread with Replies
Related Forum Messages:
Copying Database From One Server To Another
We recently got a new SQL Server 2000. I'm not really a SQL/Network admin but I was tasked to migrate some of our databases in the SQLSVR7 to SQLSVR2K. I tried using DTS EXPORT but getting errors. Is there a better way to do this? Any info would be appreciated.
View Replies !
Copying A SQL Server Database
Hi I am new to SQL Server. I am required to make a copy of a live database, or bring the database down and then make a copy of it. I need to create a webpage to query the database, but another scheduling program also connects to the database, so that shceduling can be performed Any help
View Replies !
Copying A Database From One Server To Another
Hi, Does anyone know how to copy a database from one server to another? I want to backup a production database and restore it to a different server (a test server) as a test. I used a sample from the MCDBA study book and all I got was two copies of Northwind on the same server. Any idea what I did wrong? Seems like you should be able to backup on one server and restore on another. Here's the code I used: BACKUP DATABASE Northwind TO DISK = 'Sd-appsmssql7DataNwind.bak' RESTORE FILELISTONLY FROM DISK = 'Sd-appsmssql7DataNwind.bak' RESTORE DATABASE Northwind2 FROM DISK = 'Sd-appsmssql7DataNwind.bak' WITH MOVE 'Northwind' TO 'Sd-sqlmssql7DataNorthwind.mdf', MOVE 'NorthwindLog1' TO 'Sd-sqlmssql7DataNorthwindLog1.ldf' GO Thanks for your help.
View Replies !
Copying A Database To Another Server
Im running SQL Server 2005 Express with SQL Server Management studio installed on my laptop. After updating my database, how do I copy the entire contents to the main server in the office, which is running windows server 2003 and SQL Server 2000 Developer Edition. And is it possible to do it all from my laptop?
View Replies !
Copying My Existing Database To Another Server
Hi I am running my sql 2000 database server and I just want to copy that database and paste or put on another server which has also run same version of sql 2000 database. I tried to copy and paste the ldf & mdf extensioned files which are located in "C:Program FilesMicrosoft SQL ServerMSSQLData" into my 2 server, but when I open up the enterprise manager, I cant see the new database. So this way dont work, I tried to do something with export and import wizard but it just creates another database and copies the data in that database in the same server. I want to copy that data and put onto another system, please guide me. I'm confused, Thanks a lot
View Replies !
Copying Database To Hosting Server
I'm new to database development and have created a database-driven website which now needs to be uploaded to the client's hosting company server. What is the easiest way for a newbie to upload a copy of the databse to the host. Thanks in advance.
View Replies !
Copying An Existing Database To A New Server?
I would like to create a test environment on a separate server running advanced server 2000. The current production server is NT4.0. What is the easiest way to copy the databases from production to test. I installed SQL7.0 on the new box then created the backup devices. Next I copied the backup files for all of the databases including master etc. to the new backup device folders. I tried to restore the master db first - then things went down hill. Any recommended procedures regarding this? Any help would be greatly appreciated.
View Replies !
Copying Master Database From One Server To Another . . .
Hello all, We are building a new 2000 server for our PC-Docs databases and it's my job to port over the databases. The new server has the same name and IP address as the one it's replacing but right now it's in our lab environment. I have installed SQL 7 with service pack 1 on the new server and the SQL Server name is the same as it is in the production environment. The plan is to back-up the databases, drop the old server from the domain, bring the new server into the domain, and then restore the databases. So far so good. The application (PC-Docs) uses one of two logins - DOCSUSER or DOCSADMIN - to connect to the databases, and the database and user info, including password, which is encrypted, is stored locally on each user's PC in an ini file. The problem - aint there always a problem - is that nobody here knows the DOCSADMIN password and the decision has been made NOT to alter the ini file, meaning that I can't change the DOCSADMIN password in SQL Server because then the ini file would have to be modified. So, I'm stuck trying to figure out how to transfer the the two DOCS accounts out of the old server and into the new one. DTS won't work because I can't access the new server while it's in the lab environment and the old server will be removed from our production domain before the new server is added. I will probably DTS out the logins to another test database within the domain and then DTS them into the new Docs server once we bring it online. However, I want to get the logins established BEFORE we shut down the current Docs server so I know it will work. To that end I tried restoring a copy of the current server's master database into the new SQL Server figuring that it contains the two syslogins but now SQL Server will not start because it's confused as to where the system databases are located - it's looking where the other server has them stored, which is different than where they are located on the new server. So, my long-winded question is: can you restore a copy of one server's master database onto another server, and if so, how do you do it so as not to corrupt the SQL Server?
View Replies !
Copying A Sql Server Database File
I am developing a .NET 2.0 application that uses Sql Express as its backend. I use OleDb Provider to connect to Sql express. One of the options in the app allows the Admin to create a Backup of the database. As part of this process, I write a log entry to one of the tables in the database, commit & close the connection, and then copy the physical database(.mdf) file to some pre-determined location using the following instruction (in VB): My.Computer.FileSystem.CopyFile("Path to Database File", "Destination Path") It throws an exception saying that the file is in use. Upon checking, I found that the file has been locked-up by the Sql process. I ensured that my app closes all connections to the database, that there is none other trying to connect to it, and then again tried to execute the above instruction in my app, again raising the same error. However, when the app terminates, then I can easily copy the databse using explorer. I also used the OleDb method ReleaseObjectPool(), but the problem persisted. So, how can I copy the database in such a situation from within my app??
View Replies !
Copying SQL Server Express Database
Help! I have a customer who I have set up a SQL Server Express database for. The database was running fine, but I copied it over to my pc over the weekend to update some data. I have copied the data backwards and forwards plenty of times, but this time when I came to copy it back and reattach it on the customers' server I get the following message: TITLE: Microsoft SQL Server Management Studio Express ------------------------------ Attach database failed for Server 'SBSSERVERBKUPEXEC'. (Microsoft.SqlServer.Express.Smo) For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Attach+database+Server&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.Express.ConnectionInfo) ------------------------------ Could not find row in sysindexes for database ID 6, object ID 1, index ID 1. Run DBCC CHECKTABLE on sysindexes. Could not open new database 'ACServe'. CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 602) This is REALLY urgent. Help me please Gabby
View Replies !
Copying Database From Server To My Local Machine.
First of all let me explain that I am a complete newbie to this SQL stuff. I am in the process of reading a book, and followed the books suggestions for what I want to do, but it doesn't work. I know this has been covered several times in this forum, but no one post in particular covered exactly what I want to do. I want to copy the database from the server to my local machine. First, do I need to have SQL running on my machine in order to copy the database? I do have Enterprise Manager running, does that mean SQL Server is running locally? Secoond, I tried using the Copy Wizard, but when I get to the target list, my local machine is not listed. How do I get it listed so I can copy the database? I hope my questions are not too stupid... but then I'd be stupid if I didn't ask questions. Thanks in advance for your help... David
View Replies !
Problem Copying Database With Microsoft SQl Server
I am trying to copy a database from the server on my web host(crystaltech) to my new local install of MS SQL Server 2005 Enterprise (trial version). I go to Tasks>Copy Database which opens the wizard. When I get to the select database screen I get this error: Server user 'username' is not a valid user in database '123foo' (123foo is the first database of all those on the server) I need have it look only at my database which I have permissions for to copy it. How do I do this? I tried copying the tables the other way(import data) but it dropped all my identities and primary keys which is a pain to recreate. Is there a way to copy tables from one server to another without losing primary keys and identity fields? Thanks for any help!
View Replies !
Problem Copying Database From Sql Server 2000 To Sql Server 2005
Hi, I have right now sql server 2000 instance installed on a server (serverone) which is accessed on all nodes through an ODBC connection. Now we have upgraded our server to windows server 2005 which will be on other machine servertwo. I have right now installed sql server 2005 in servertwo. Wish to copy the database from serverone to servertwo. Once it is copied and everything is working fine. I want to uninstal sql server 2000 from serverone. What is the best way to do this? I am trying different things like tried running code Advisor on serverone which is not recognising the sql server 2005 instance of servertwo. It's giving message as since the sql server is installed on default settings it can't be accessed remotely. I see that SQL server 2000 database is accessible on all nodes including servertwo. Why is it that servertwo sql server is no where accessible? What it is that I am missing? Kindly help me. Thanks, regards. Shobha
View Replies !
Tranferring/Copying Entire Database To Remote Server
This problem may appear trivial to you guys but is troubling me since quite some time now! The problem is that I created a website using express studio happily and it worked flawlessly on the local host. Now I want to move it to a remote server and my host created a database name ASPNETDB for me on the server. The problem is that that ASPNETDB database is virtually empty and I want to copy all my tables,stored procedures etc etc(complete database) to the remote ASPNETDB database. How can I do that? In the management studio express edition there is no command available to copy paste all contents of the database to another database. Please help I am quite confused!
View Replies !
A Question Regarding Copying A Database From SQL 2005 To SQL 2008 Server
I am copying a database on a Sql 2005 server with SQL authentication to a SQL 2008 server with a Widows authentiation. I take the SMO route and the process fails at the followig: It fails in the step where there is a create package error. ------------------------------------------- Performing operation - Add log for package (Success) - Add task for transferring database objects (Success) - Create package (Error) Messages * While trying to find a folder on SQL an OLE DB error was encountered with error code 0x80004005 (Login failed for user 'sa'. The login is a SQL Server login and cannot be used with Windows authentication.). (Copy Database Wizard) ------------------------------ ADDITIONAL INFORMATION: While trying to find a folder on SQL an OLE DB error was encountered with error code 0x80004005 (Login failed for user 'sa'. The login is a SQL Server login and cannot be used with Windows authentication.). - Start SQL Server Agent Job (Stopped) - Execute SQL Server Agent Job (Stopped) ------------------------------------------------- The attach/detach route also fails with the same message. Although I create a SSIS proxy, the Copy Database Wzard shows only the SQLServerAgent as the proxy. Why? ---------- Does copy database wizard use OLEDB for the transfer? Does it mean you must have both Source and Destinaton with windows authentication? How do I go around fixing this? Any help is appreciated.
View Replies !
Can Never Access Database Table From Code After Copying To Another SQL Server...
I am not sure I understand the problem I am causing, but I am a beginner! Here's the situation: I have a table located on MS SQL server database number 1. Said table, which we'll call WIDGET_PRICES, is accessed regularly by my existing source code and has no problems. At some point, I decide to move operations to MS SQL database number 2 and do a very simple database copy of WIDGET_PRICES from database 1 to database 2 using the Microsoft SQL Server Management Studio. The end result, inevitably, is that my source code can no longer access the very same table as it is located on the new database server. The code hasn't changed, it's still trying to access WIDGET_PRICES as always. And, from what I see on my screen through Management Studio, WIDGET_PRICES appears just fine. An example error is the one I just got: Microsoft OLE DB Provider for SQL Server error '80040e37' Invalid object name 'YB_ITEMS'. /yardbark/tampabay/header.asp, line 27 The only clue is that while my transferred tables often look named like "database1.WIDGET_PRICES on database 1, they wind up looking like database2.WIDGET_PRICES on dabase 2. I include a little more detail and screenshots of the tables in questions at this web page. Dave
View Replies !
Error Copying Data To A Remote Sql Server 2005 Database.
When copying data to a remote SQL2K5 destination from a SQL2K5 source database, both using mixed sql server security mode, my job generates the following error: [Transfer SQL Server Objects Task] Error: Execution failed with the following error: "Cannot apply value null to property Login: Value cannot be null..". This occurs after the destination database tables have been truncated and replacement data from the source would begin to copy. The same process can be successfully completed from the Management studio with a simple data export process. However, when I run the saved package again from the BI interface, I get this error. My search engine searches have yielded numerous hits of others having the same problem with one microsoft rep indicating it was a bug and would be resolved in sp1. I am working with sp1. Oddly, there is only mention of this in the forums. No KB article from MS addresses the problem and I do not see it addressed elsewhere at sqlservercentral. It appears that others have switched to Integrated Security and resolved the problem. However, I do not have that option with a remotely hosted database. Does anyone have any information concerning this problem?
View Replies !
Problem Copying Database With Microsoft SQl Server Management Studio
I am trying to copy a database from the server on my web host(crystaltech) to my new local install of MS SQL Server 2005 Enterprise (trial version). I go to Tasks>Copy Database which opens the wizard. When I get to the select database screen I get this error: Server user 'username' is not a valid user in database '123foo' (123foo is the first database of all those on the server) I need have it look only at my database which I have permissions for to copy it. How do I do this? I tried copying the tables the other way(import data) but it dropped all my identities and primary keys which is a pain to recreate. Is there a way to copy tables from one server to another without losing primary keys and identity fields? Thanks for any help!
View Replies !
Copying A Single Database Table From VWDE To SQL Server Management Express
Hello, As the heading states, I'd like to copy a database table from VWDE over to SQL SME, where it'll replace its namesake. I've tried the 'attach' method but was denied due to server permissions. Is there another way of doing this, or will I have to delete the database and then run a script to reinstate (annoyingly convoluted)? This would be so much easier if the host supported SQL 2005 Express. Thanks in advance
View Replies !
Copying Database From 2000Server Machine To 2003 Server Machine
Hi All;We are going to change our application server. We will copy all of ourDatabase from Mic 2000 Server OS to Mic 2003 Server OS. I found anarticle that how to move all the folders from same OS. My question isthat Would the 2003 OS be a problem when we copy all of the MC SQL 2000folders to New OS ? Has anybody done this before? Could you gimme yoursuggestions please?ThanksASA
View Replies !
Copying A Table From Mysql Database To Sqllite Database
hi everyone !!i am selecting a table from the tblusers from mysql database.and i want that when my aspx page loads itself then the table tblusers gets copied into the sqllite database. for which i have to connect to both the databse.please suggest some idea and queries how can i do this? waiting for your replies Thanks in advance.
View Replies !
Change In Database User Perms When Copying Database
How to maintain Database User Permissions when copying the Database from One SQL Server to another(Either through backups or sp_detach). The reason is the login sid is different in the target server and as a result the database user is not able to map to the login existing in the target server. The only way I can correct this is through dropping and recreating the user's again and assign the permissions, or change the system catalog - sysusers to remap the login to the user in the database. I do not wish to use the sp_addalias as it is available only for backward compatibility. Is there a better way of doing this ?
View Replies !
SSIS Error When Copying Database To Database
I am trying to copy one database to another using copy wizard for SQL Server 2005. The destination database is on another server/box. I get the following errors when executing the SSIS package: "The job failed. The Job was invoked by User abcd. The last step to run was step 1 (abcd_0_Step).". "Executed as user: BILLSVRSYSTEM. ...ion 9.00.3042.00 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 11:30:55 AM Progress: 2008-05-05 11:30:56.81 Source: crmtest_BILLSVR_Transfer Objects Task Task just started the execution.: 0% complete End Progress Error: 2008-05-05 11:30:57.34 Code: 0x00000000 Source: abcd_abcd_Transfer Objects Task Description: Failed to connect to server crmtest. StackTrace: at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect() at Microsoft.SqlServer.Dts.Tasks.TransferObjectsTask.TransferObjectsTask.OpenConnection(Server& server, ServerProperty serverProp) InnerException-->Login failed for user 'abcdabcd$'. StackTrace: at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.... The package execution fa... The step failed." Can this be done? Is there something that needs to be set security wise for this to work?
View Replies !
Help-for Copying Database
hi, i m new 4 sql server. i create one app. in asp.net. i create one database in sql server. now, i want to make setup for my app. so, i want copy database and put on c:/..../wwwroot/app folder. how can i do this? one more things, i create database using enterprise manager. i want to see my database file. where it is stored? somebody help me. it's urgent. thanks in advance.
View Replies !
Copying The Database
Hi, I am changing my hosting from one company to another company. How can I copy my full database along with views and stored procedures. I have only access to query analyzer and enterprise manager from where I am not able to backup the database on my local computer. As it is very urgent please suggest me a way to do this. Thanks in advance, Uday
View Replies !
Copying A Database
Hi all, I want to copy a database from my SQL Server system and install it on another. Can anyone suggest me how I can copy the same along with log info, login info, permissions, etc. and install it on another system. Thanks! Vik!
View Replies !
Copying Database
Hey guys I am trying to copy a database from my PC to another PC within the smae network. I am logged into the other PC. I have tried DTS, but was only able to copy the tables in the database. i want to copy the ENTIRE DataBASE. I have also tried using sp_attach, but kept getting a message that the location of the file is wrong. I have checked the location and the file is in that location. can someone please explain to me in "lay man's terms", how to copy the ENTIRE dbase? thank you
View Replies !
Copying A Database
Hello,I'm trying to make a copy of a database with this code Code Snippet private void button1_Click(object sender, EventArgs e) { string dbname = @"D:Documents and SettingsBeheerderMijn documentenVisual Studio 2005ProjectsTest12Test12inDebugDatabase1.mdf"; string constr = string.Format("Data Source=(local)\SQLEXPRESS;AttachDBFilename="{0}";Integrated Security=True;Connect Timeout=30;User Instance=True", dbname); using (SqlConnection connection = new SqlConnection(constr)) { connection.Open(); connection.Close(); } File.Copy("Database1.mdf", "Database1Copy.mdf"); } but once the code tries to execute the File.Copy line it comes with an error that the database is currently in use by another program, and also when I'm debugging the program and I try to copy this database with windows explorer it says that the program is currently in use.I've read up some stuff and found that you can stop the SQLServer Service, wich I did but then my program gave an error about not being able to connect to the database, when starting upand also detaching and attaching a database, wich I don't know how to do.So my question is are any of these above methods correct to do, and how do write the code for it? If not is there any other way to copy a database?Thanks in advance,Ruben Pieters
View Replies !
Copying One Database To Another
Hi all, New member here... I've used SQL2000 before (Enterprise Mgr, Query Analyzer), but, now I'm at a company without any DBAs so I'm on my own as far as administration goes which I haven't done before on SQL2000. We have a production database about 100MB in size. As of now there is no development DB. They won't pay for a new server, so I'd like to create a new development database on the same prod server. Then, I want to copy the existing prod database into the new dev DB. I've read up some on DTS, but I wanted to check with the community to see if anyone had other recommendations or if this is the best way to go about it. Also, is this a process that should run at off-hours? Would the copy of production lock the DB up? Thanks a lot...
View Replies !
Copying A Database
I created a DB on the server. i would like to make a copy of it (structure and data) on my local machine to play with. Then i try using the wizard i get this error: Your SQL Server Service is running under the local account. You need to change your SQL Server Service account to have rights to copy over the net work. Where do I go to change my rights to copy over the net work?
View Replies !
Copying The Database....help Please!!
HI I'm quite new to the admin side of SQL server 2005 and I need help copying a SQL database to my colleagues laptop (we are not on a network) Basically I try to copy the .mdf file so that he can attach it onto his server, but I get the following error: "Cannot copy ....mdf as it is being used by another person or program" Although I am not using it. i.e. i re-start my pc and try to copy it and get the same error. I also try to detach the database from SQL and copy it, but still no luck. Please can anybody give me assistance. Many thanks!!!
View Replies !
Copying The Database
Hi all This is my first post here so be easy on me ;-) I've been trying out SQL Express (on my home PC) over the past couple of days and so far I've managed to create a database, create tables etc. I've managed to link Access 2003 to the database so its a bit easier to manage. I've also managed to link an asp.net page to the database etc. Now, I'd like to copy that database up to my dedicated server to do some more testing/experimenting. Can anyone tell me what the best way to copy the database up to my server? Thanks.
View Replies !
Copying A Table From One Database To Another?
Hi,Whats the best and easiest way to copy a table from one database to another via ASP.net?I want to copy from SQL Server to Oracle. I have an ODBC connection for Oracle.I was thinking I could use a DataSet, but wasn't sure of the details on doing this. Am I off base on this?What I have so far..1) I can get the data from SQL Server into a DataSet.2) I can establish a connection to Oracle via ODBC and the database has the appropriate table structure.How do I 'use' the SQL Server DataSet to copy the data to Oracle?Thanks,Scott
View Replies !
Copying A Database And All Contents
Can anyone advise me of a convenient way to make a copy of a database in SQL2005. I need to make a complete copy - including all Stored procedures, functions tables and table contents. I want the place the copy ont he sae SQL server but obviously under a different name.
View Replies !
Copying A Database Diagram
Hi, I have a database diagram on my sql server 2005, how can i copy that diagram to my pen drive so that i can build the database using that diagram on another computer...well the bottom line is i want to copy the datbase from one computer to another. thanksVishal
View Replies !
Sql Express Copying A Database?
Hi All,I have a database that I would like to copy for another project. The instance is SQLEXPRESS, I have copied the MDF file, renamed and then copied it back but how to I attach this.I have read a small article about XCOPY but could really understand it, and are there limitation of doing it this way ... i just want an exact copy in the same instance ?Anyone got any links to tuttorials for doing this?Thanks in advancelee
View Replies !
Copying/ Backing Up A Database
Hi. im shortly going to have to submit my project for uni which ive created using sql server. How can i copy everything that ive made so i can submit everything and it can be replicated if necessary. Do i use the backup database task in enterprise manager or do i have to do that and export data or..? ive used tables and stored procedures and a diagram btw. thanks for any advice
View Replies !
Copying MSDE Database
I have a MSDE database on a laptop and need to copy it to another machine in order to use Access 2000 to inspect the tables and view the data using an Access project adp file. Could someone please tell me how to do this and whether there are any relevant issues/problems. thanks
View Replies !
Error On Copying The Database
Hi guys, I can't find what is wrong. I am copying a database via DTS and I get an error mid way "Invalid object dbo.fx_get_role_from_ownerid". But the object does exist and it has benn in production for a while now. Why would I get his error, if the object does exist?
View Replies !
Copying Users From One Database To Another
I have a question regarding copying users from one server to another that are running different versions of Microsoft Sequel Server. I have Server A running 6.5 version and Server B running 7.0 version. How can I copy just the list of users from Database1 on Server A to Database2 on Server B. Can anyone help me. Thanks. Lakshmi.
View Replies !
Copying And Renaming Database
Hello, I have created a complete database with its tables, views, procedures, everything in SQL Server for a system. Now I am creating another system and I have realised that I can use almost the same fields I have and only do small changes, therefore I want to copy the existing one and rename it I have been trying to copy it but I don't know how to copy exactly everything. Could you help me please? Any help would be really appreciated! Thank you Gloria
View Replies !
Copying Database Offline
I'm going overseas this summer with my laptop and I have to continue working on a project. Unfortunately that laptop only has Windows Vista Home Premium. I can't afford to get the upgrade but am in the position of having to copy a database from the server to my laptop so I can continue working on it. What I need to do is find a way to copy the database over but in the case where the two computers aren't connected over a network. Is this possible? I tried to simply copy the .mdb, but there were permissions errors (of course). Is there a way to do this? It's pretty important that I get it on the laptop one way or another. Thank you!
View Replies !
Copying Entire Database
Hi, Is it possible to copy a database from the existing database. I mean to say creating a duplicating database. Note: I can do it by using "Generate SQL Server Script Wizard" or "Database Publishing Wizard" which saves a some filename.sql and later executing this will create another database by assigning some xyzdatabase name. My main motive is copying a database in a single line script without using this lengthy sciprt. Example FirstDatabase (contains 10 tables 10 stored procedures) SecondDatabase (also contains 10 tables 10 stored procedures) If possible, can you write a script that attach a database from the C:MyTemporaryDatabase Because this i need through programming Visual Basic using SQL Server. I want to create some temporary database. Waiting for your reply. Thanks. Best Regards Kashif Chotu
View Replies !
Copying Structure To Another Database
Hi all, Is there a way to copy a structure of one database (tables and fields) to another database WITHOUT copying the data?? Someway to do that with replication?? any help is very appreciated! Thank you,
View Replies !
|