Hello How can i merge from one database to another the users? Usernames - Passwords - Emails ? Thank you
1. Run the following statement. ALTER DATABASE database_name SET OFFLINE 2. Move the file or files to the new location. 3. For each file moved, run the following statement. ALTER DATABASE database_name MODIFY FILE ( NAME = logical_name, FILENAME = 'new_path\os_file_name' ) 4. Run the following statement. ALTER DATABASE database_name SET ONLINE 5. Verify the file change by running the following query. SELECT name, physical_name AS CurrentLocation, state_desc FROM sys.master_files WHERE database_id = DB_ID(N'<database_name>');