Other terms Homogenous system copy, BW, migration, sp_attach_db, sp_detach_db

Size: px
Start display at page:

Download "Other terms Homogenous system copy, BW, migration, sp_attach_db, sp_detach_db"

Transcription

1 Note Language: English Version: 48 Validity: Valid Since Summary Symptom You want to copy an SQL Server database within a homogenous system copy. This procedure has been released for all SAP applications that are based on an SAP database (BW, CRM). Other terms Homogenous system copy, BW, migration, sp_attach_db, sp_detach_db Reason and Prerequisites This note describes the system copy procedure using the SQL Server system stored procedures sp_detach_db and sp_attach_db or the command 'CREATE DATABASE FOR ATTACH'. Alternatively, you can restore the database. Solution The following example describes the system copy procedure of the productive PRD SAP system to the Quality assurance system (QAS). Step 1: Preparations 1. For Java or ABAP + Java systems that are based on NetWeaver technology lower than Version 7.10, you must first export parts of the Java source system. For this, you must use the delivered SAP installation master DVD of your installed SAP release. The export of the Java part into a file is then created using the option 'system copy'. 2. Establish whether you use a schema system or not. In the SAP system, choose the menu option "System" -> "Status" and check the value of the field "Owner". In a schema system (MCOD), the owner has the value <sid>, while the value is 'dbo' in a non-schema system. 3. Install the SQL Server and the SAP system on the target system. For SQL Server 2000, you are required to take Note into account. Prepare the source database using the homogenous system copy guide. You will find the guide on SAP Service Marketplace at: 4. You can also use this procedure to perform an SQL Server upgrade by appending the database to an SQL Server that has a higher version. You can append an SQL Server 2000 database to an SQL Server Version 2000, 2005, and You can append an SQL Server 2005 database to SQL Server Versions 2005 and 2008; you can append an SQL Server 2008 database only to an SQL Server As part of the append process, the database is converted to the new version. Ensure that the log file(s) of the database can grow automatically and that sufficient disk space exists for a growing log file. Once the database has been converted, you cannot append it to the old SQL Server version again Page 1 of 9

2 For this reason, you must ensure that all prerequisites (SQL Server collation, SQL data types, SAP Basis Support Packages, and so on) are fulfilled for the new database version BEFORE you append the database to the higher version. Follow the instructions for database migration in your SAP release. 5. Delete the automatically generated stored procedures. Using the SQL Server Query Analyzer or the SQL Server Management Studio, execute the following commands in the SAP database: setuser '<sid>' exec sap_droproc exec sap_droproc These commands delete all temporary stored procedures in the database. They are created again automatically if necessary while the SAP system is operating. 6. If your system was configured for Performance Warehouse Monitoring by Solution Manager, you must read Note , since important post-processing steps are required after the database copy. Step 2: Determine the file structure of the source database Determine the file structure of the source database using the Server Query Analyzer. Connect to the database to be copied and execute the command sp_helpfile. This command provides the physical name (file name) and the logical name (name) of all database files. use PRD exec sp_helpfile Result: name fileid filename filegroup size PRDDATA1 1 d:\prddata1\prddata1.mdf PRIMARY KB PRDLOG1 2 e:\prdlog1\prdlog1.ldf NULL KB PRDDATA2 3 d:\prddata2\prddata2.ndf PRIMARY KB PRDDATA3 4 d:\prddata3\prddata3.ndf PRIMARY KB Step 3: Create the directory structure for the target database In the target system, create the directory structure for the data and log Page 2 of 9

3 files of the SQL Server. The target database can be located on the same server or on another machine. The target database name can differ from the source database name. It must differ from the source database name in the case of the same SQL Server instance. Directory and file names should correspond to the SAP naming conventions. Create the directories <target_sid>data and <target_sid>log. Sufficient place must be available on the target system for the data and log files. You must copy the source database PRD to a target database QAS. On the target system, you must create the directories QASDATA1, QASDATA2, QASDATA3, and QASLOG1. They can be distributed on different drives (in our example, the data files are on drive g:, the log file is on drive h:). Step 4: Detaching the source database To reattach a database successfully to an SQL Server, you must first detach it from the SQL Server using the stored procedure sp_detach-db or recover it successfully. o o To recover the database, you must simply start the SQL Server and stop it again. You can then copy the database files at system level. This procedure is safer than the stored procedure 'sp_detach_db', since you do not have to detach the source database from the SQL Server. The stored procedure sp_detach_db separates a database from the SQL Server. This corresponds to a deletion (Drop) of the database without eliminating the respective files. The database can be reattached to the SQL Server later using sp_attach_db or 'CREATE DATABASE FOR ATTACH'. Note that detaching and attaching the database can cause problems; this is described in Note You must set all activities on the source database. You should restart the SQL Server. Execute the following command in the Query Analyzer: use master exec sp_detach_db '<SID>', true After you have done this, the server no longer recognizes the database <SID>. use master exec sp_detach_db 'PRD', true Step 5: Copying the data and log files Copy the data and log files into the relevant target directories of the target computer. You may rename the files if required Page 3 of 9

4 copy d:\prddata1\prddata1.mdf g:\qasdata1\qasdata1.mdf Step 6: Reattaching the source database SQL Server 2000: You can make the source database available again using 'sp_attach_db'. sp_attach_db requires the name of the database and a list of physical file names (complete path names) as a parameter. The list must contain the master data file (*.mdf) and all files whose physical location or name were changed. Therefore, for the source database, you only need to call 'sp_attach_db' with the name of the initial database and the complete path names of the master data file since no files or names have changed in this database. exec sp_attach_db 'PRD', 'd:\prddata1\prddata1.mdf' SQL Server 2005 and higher: You can make the source database available again using 'CREATE DATABASE FOR ATTACH'. This command requires the name of the database and a list of physical file names (complete path names) as a parameter. The list must contain the master data file (*.mdf) and all files whose physical location or name were changed. Therefore, for the source database, you only need to specify the name of the initial database and the complete path names of the master data file because no files or names have changed in this database. CREATE DATABASE PRD ON (FILENAME = 'd:\prddata1\prddata1.mdf') FOR ATTACH; Step 7: Attaching the target database SQL Server 2000: Execute the following command in the Query Analyzer in the target system: use master exec sp_attach_db 'QAS', 'g:\qasdata1\qasdata1.mdf', 'g:\qasdata2\qasdata2.ndf', Page 4 of 9

5 'g:\qasdata3\qasdata3.ndf', 'h:\qaslog1\qaslog1.ldf' Since the location and the names of the files have changed, you have to specify all database files: The command 'sp_attach_db' only supports up to 16 data or log files. If the database contains more than 16 files, use the command 'CREATE DATABASE FOR ATTACH'. You will find the exact syntax description of this command in the SQL Server Books Online. SQL Server 2005 and higher: Execute the following command in the Query Analyzer in the target system: use master CREATE DATABASE QAS ON (FILENAME='g:\QASDATA1\QASDATA1.mdf'), (FILENAME='g:\QASDATA2\QASDATA2.ndf'), (FILENAME='g:\QASDATA3\QASDATA3.ndf'), (FILENAME='h:\QASLOG1\QASLOG1.ldf') FOR ATTACH Since the location and the names of the files have changed, you have to specify all database files. Note that detaching and attaching the database can cause problems; this is described in Note For a cluster installation, also see Note As an alternative to steps 4 to 7, you can restore the database by restoring a database backup. Step 8: Follow-up procedure The delivered SAP Installation Master DVD of the installed SAP release must be used for postprocessing for a Java or an ABAP+Java system in order to install the ABAP central instance. If you use Netweaver 7.0 SR3 Installations Master DVD for copying an SQL 2008 system, refer to Note For Java or ABAP+Java systems that are based on a NetWeaver technology lower than Release 7.00, follow the instructions from Note (SAP Tools for MS SQL Server). If you cannot use the SAP tools for the SQL Server for whatever reason, you can also perform the following steps manually.!! ATTENTION: You perform manual execution at your own risk.!! 1. Changing the owner of all database objects Page 5 of 9

6 If the <SID> is changed by the copy, you must change the owner of all database objects. To do this, use Note and the scripts that are attached to it if necessary. You are not required to change the owner. 2. Creating the logins on the target system: Proceed as described in Note Proceed as described in Note Configuration of the SQL Server You must configure the SQL Server as described in Note (SQL Server 2005), Note (SQL Server 2000), or Note (SQL Server 7). Increase the tempdb database to at least 300 MB. You can do this using the Enterprise Manager or the following SQL script: alter database tempdb modify file (name = tempdev, size = 250MB) alter database tempdb modify file (name = templog, size = 50MB) If you need to move the tempdb database, proceed as described in Note Creating the DB13 jobs Delete all DB13 jobs in the database using the following script: setuser '<sid>' truncate table SDBAP truncate table SDBAR truncate table SDBAP truncate table SDBAR Then create the jobs using the DBA Planning Calendar in the Computing Center Management System (DB13). 5. Creating the permanent stored procedures Call transaction SE38 and execute report MSSPROCS. Select your database version from the "Database Release" field. Select 7.0 for SQL Server 7, 8.0 for SQL Server 2000 and 9.0 for SQL Server If Page 6 of 9

7 8.0 is not available, you can also select 7.0 for SQL Server You must always select 9.0 for SQL Server Start creating the stored procedures using "Start all". The permanent stored procedures, which are required for the correct functioning of the SAP system, and the SQL Server jobs for the CCMS Monitor are created in this way. 6. Postprocessing using the homogenous system copy guide Since the SID and the host name of the SAP system (among other things) have changed due to the database copy, some postprocessing is required in the new SAP system (such as setting up the transport system). For information about the required database work (from an SAP point of view), see the guide for homogenous system copies. 7. Renaming the logical file names Within the database files, the SQL Server keeps logical file names that naturally contain the name of the source system. These names do not affect database operation. You can change the names in SQL Server 2000 using the 'ALTER DATABASE MODIFY FILE' command. You will find the exact syntax description of this command in the SQL Server Books Online. You cannot change these names in SQL Server Initializing the database collector For SAP Basis Release 610 and higher, you have to initialize the tables sap_perfhist, sap_perfsample and sap_perfinfo using the SQL command 'TRUNCATE TABLE'. For Basis Release 620 and higher, you must also initialize the table MSSDWDLLS. Execute the following commands: setuser '<sid>' TRUNCATE TABLE sap_perfhist (up to and including Basis Release 700) TRUNCATE TABLE sap_perfsample TRUNCATE TABLE sap_perfinfo TRUNCATE TABLE sap_perfvali (as of Basis Release 640) TRUNCATE TABLE MSSDWDLLS (as of Basis Release 620) TRUNCATE TABLE sap_mon_text (as of Basis Release 702 (SP7)) TRUNCATE TABLE sap_perfhist (up to and including Basis Release 700) TRUNCATE TABLE sap_perfsample TRUNCATE TABLE sap_perfinfo TRUNCATE TABLE sap_perfvali (as of Basis Release 640) TRUNCATE TABLE MSSDWDLLS (as of Basis Release 620) TRUNCATE TABLE sap_mon_text (as of Basis Release 702 (SP7)) 9. Licensing the SAP system Page 7 of 9

8 For information about licensing the SAP system, see the homogenous system copy guide. If the copied system fails to start or if no connection to the system can be established, check the environment of users <sid>adm and SAPService<SID> as well as the profiles of the SAP system as described in Note Bear the following in mind: The script 'mss_varbin_conversion.sql', described in the notes for homogenous system copies, is irrelevant for the procedure described here and must not be executed. The delivered SAP Installation Master DVD of the installed SAP release must be used for postprocessing for a Java or an ABAP+Java system in order to install the Java Add-In. Here, the Java export created in the first step is imported into the target system. As a result, the system copy is complete. Header Data Release Status: Released for Customer Released on: :32:26 Master Language: German Priority: Recommendations/additional info Catery: Installation information Primary Component: BC-DB-MSS Microsoft SQL Server The Note is release-independent Related Notes Number Short Text SQL Server Partitioning in System Copies and DB Migrations Solution Manager 7.1 Database Warehouse for MSSQL SQL Server Remote Database Monitor in Solution Manager Windows: Migration from 32-bit to 64-bit (x86_64) MS SQL Server: Migrating from 32-bit to 64-bit Installing the Corrected MS SQL Server Collation FAQ: Microsoft SQL Server R/3 won't start after database restore or database copy File management for SQL Server Page 8 of 9

9 Number Short Text R3COPY on NT-MS SQL Server Restore with SQL Server Platform changes between Intel and Alpha with SQL Server Page 9 of 9

Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment

Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment Upgrade and Installation Guide Document Version: 1.60 2017-11-17 PUBLIC Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment Content 1 Document History.... 3 2 Introduction....5 3

More information

SR3 ABAP+Java on AIX: IBM DB2 for Linux,

SR3 ABAP+Java on AIX: IBM DB2 for Linux, PUBLIC Installation Guide SAP NetWeaver 7.0 SR3 ABAP+Java on AIX: IBM DB2 for Linux, UNIX, and Windows Including the following: SAP NetWeaver ABAP Application Server (AS-ABAP) SAP NetWeaver Java Application

More information

SAP BusinessObjects Profitability and Cost Management Upgrade Guide

SAP BusinessObjects Profitability and Cost Management Upgrade Guide PUBLIC SAP BusinessObjects Profitability and Cost Management Document Version: 10.0 2019-04-09 SAP BusinessObjects Profitability and Cost Management Upgrade Guide 2019 SAP SE or an SAP affiliate company.

More information

Environment 7.1 SR5 on AIX: Oracle

Environment 7.1 SR5 on AIX: Oracle PUBLIC Installation Guide SAP NetWeaver Composition Environment 7.1 SR5 on AIX: Oracle Production Edition Target Audience Technology consultants System administrators Document version: 1.1 05/16/2008 Document

More information

Environment 7.1 SR5 on Linux: IBM DB2 for Linux, UNIX, and

Environment 7.1 SR5 on Linux: IBM DB2 for Linux, UNIX, and PUBLIC Installation Guide SAP NetWeaver Composition Environment 7.1 SR5 on Linux: IBM DB2 for Linux, UNIX, and Windows Production Edition Target Audience Technology consultants System administrators Document

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

Sql Server 2008 Query Table Schema Management Studio Create

Sql Server 2008 Query Table Schema Management Studio Create Sql Server 2008 Query Table Schema Management Studio Create using SQL Server Management Studio or Transact-SQL by creating a new table and in Microsoft SQL Server 2016 Community Technology Preview 2 (CTP2).

More information

2072 : Administering a Microsoft SQL Server 2000 Database

2072 : Administering a Microsoft SQL Server 2000 Database 2072 : Administering a Microsoft SQL Server 2000 Database Introduction This course provides students with the knowledge and skills required to install, configure, administer, and troubleshoot the client-server

More information

Mssql 2005 The Database Principal Owns A. Schema In The Database And Cannot Be Dropped

Mssql 2005 The Database Principal Owns A. Schema In The Database And Cannot Be Dropped Mssql 2005 The Database Principal Owns A Schema In The Database And Cannot Be Dropped I have created two users and assign a database role. SqlServer.Smo) The database principal owns a schema in the database,

More information

Vendor: SAP. Exam Code: C_HANATEC131. Exam Name: SAP Certified Technology Associate (Edition 2013) -SAP HANA. Version: Demo

Vendor: SAP. Exam Code: C_HANATEC131. Exam Name: SAP Certified Technology Associate (Edition 2013) -SAP HANA. Version: Demo Vendor: SAP Exam Code: C_HANATEC131 Exam Name: SAP Certified Technology Associate (Edition 2013) -SAP HANA Version: Demo QUESTION NO: 1 You want to make sure that all data accesses to a specific view will

More information

How to System Copy for ABAP+Java

How to System Copy for ABAP+Java How to System Copy for ABAP+Java Applies to: SAP NetWeaver 7.0 SR2 ABAP+Java on Oracle+Linux. Summary This is a how-to document for performing a homogeneous system copy for a ABAP with a JAVA-add in. It

More information

Replicating and Restoring Microsoft SQL Databases with VERITAS Storage Replicator 2.1

Replicating and Restoring Microsoft SQL Databases with VERITAS Storage Replicator 2.1 Replicating and Restoring Microsoft SQL Databases with VERITAS Storage Replicator 2.1 V E R I T A S W H I T E P A P E R March 4, 2002 Table of Contents Introduction.................................................................................4

More information

PDF SQL 2005 BACKUP AND RESTORE SERVICE MANUAL EBOOK

PDF SQL 2005 BACKUP AND RESTORE SERVICE MANUAL EBOOK 11 May, 2018 PDF SQL 2005 BACKUP AND RESTORE SERVICE MANUAL EBOOK Document Filetype: PDF 414.88 KB 0 PDF SQL 2005 BACKUP AND RESTORE SERVICE MANUAL EBOOK SQL Server 2000/2005: Automated Database Backups

More information

Configuring Cisco Unified MeetingPlace Web Conferencing and SQL Server

Configuring Cisco Unified MeetingPlace Web Conferencing and SQL Server Configuring Cisco Unified MeetingPlace Web Conferencing and SQL Server Release: 7.1 Revised: March 1, 2013 1:25 pm All SQL Servers are required to be local to the Cisco Unified MeetingPlace server that

More information

How do you create an image of the operating systems during operation SIMATIC PCS 7 / Veritas System Recovery https://support.industry.siemens.com/cs/ww/en/view/56897157 Siemens Industry Online Support

More information

[2] Question: Why do changes to the profile parameter not take effect during the next system restart?

[2] Question: Why do changes to the profile parameter not take effect during the next system restart? SAP Note 539404 - FAQ: Answers to questions about the Security Audit Log Version 44 Validity: 26.11.2015 - active Language English Header Data Released On 26.11.2015 08:07:38 Release Status Released for

More information

Sql Server 2008 Schema Version R2 Create Database

Sql Server 2008 Schema Version R2 Create Database Sql Server 2008 Schema Version R2 Create Database Applies to: SQL Server (SQL Server 2008 through current version), Azure SQL Database, SQL Database V12, (Preview in some regions), Azure SQL Data. Restoring

More information

Sap Content Server For Windows Installation >>>CLICK HERE<<<

Sap Content Server For Windows Installation >>>CLICK HERE<<< Sap Content Server For Windows Installation Guide 6.40 Usually the R2 of 2008 server are not supported in SAP enviroment yet, but i do We were having a problem trying to install Content Server 6.40 on

More information

Database Migration Option: Target Database SAP ASE

Database Migration Option: Target Database SAP ASE UPGRADE GUIDE PUBLIC Software Update Manager 1.0 SP23 Document Version: 1.0 2019-01-21 Database Migration Option: Target Database SAP ASE 2019 SAP SE or an SAP affiliate company. All rights reserved. THE

More information

Administrator s Guide

Administrator s Guide Administrator s Guide 1995 2011 Open Systems Holdings Corp. All rights reserved. No part of this manual may be reproduced by any means without the written permission of Open Systems, Inc. OPEN SYSTEMS

More information

Question: 1 Which of the programming languages listed below are implemented plat for min dependently? Choose the correct answer(s).

Question: 1 Which of the programming languages listed below are implemented plat for min dependently? Choose the correct answer(s). Volume: 200 Questions Question: 1 Which of the programming languages listed below are implemented plat for min dependently? A. Fortran B. ABAP C. Java D. C/C++ Answer: B,C Question: 2 Which of the following

More information

Sql Server 2005 Change Schema For All Tables

Sql Server 2005 Change Schema For All Tables Sql Server 2005 Change Schema For All Tables Associated with each securable are a set of permissions that we can grant to a From SQL Server 2005 onwards, every database object such as a procedure, view,

More information

Application Servers - Installing SAP Web Application Server

Application Servers - Installing SAP Web Application Server Proven Practice Application Servers - Installing SAP Web Application Server Product(s): IBM Cognos 8.3, SAP Web Application Server Area of Interest: Infrastructure DOC ID: AS02 Version 8.3.0.0 Installing

More information

Drop Table Query Sql Server If Exists 2008 R2

Drop Table Query Sql Server If Exists 2008 R2 Drop Table Query Sql Server If Exists 2008 R2 Check If left blank, it will check for all the tables in the database IF OBJECT_ID('SearchTMP','U') IS NOT NULL DROP TABLE SearchTMP EXEC (@SQL) IF EXISTS(SELECT

More information

BR*Tools Studio 7.10 for Oracle Multi-instance Server Standalone Part 2: Server, Database Instances and their Users

BR*Tools Studio 7.10 for Oracle Multi-instance Server Standalone Part 2: Server, Database Instances and their Users BR*Tools Studio 7.10 for Oracle Multi-instance Server Standalone Part 2: Server, Database Instances and their Users Applies to: SAP BR*Tools Studio 7.10(2) for Oracle DBA on Unix/Linux with examples on

More information

Sql Server 2005 Create Script To Copy Database Schema And All The Objects

Sql Server 2005 Create Script To Copy Database Schema And All The Objects Sql Server 2005 Create Script To Copy Database Schema And All The Objects watch the online video course sql server triggers stored procedures and functions sql server 2005 create script to copy database

More information

SAP NETWEAVER - TRANSPORT MANAGEMENT

SAP NETWEAVER - TRANSPORT MANAGEMENT SAP NETWEAVER - TRANSPORT MANAGEMENT http://www.tutorialspoint.com/sap_netweaver/sap_netweaver_transport_management.htm Copyright tutorialspoint.com Advertisements Transport Management System (TMS) is

More information

Activant Solutions Inc. SQL 2005: Server Management

Activant Solutions Inc. SQL 2005: Server Management Activant Solutions Inc. SQL 2005: Server Management SQL Server 2005 suite Course 3 of 4 This class is designed for Beginner/Intermediate SQL Server 2005 System Administrators Objectives Create Maintenance

More information

Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server

Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server Installation Guide SAP Landscape Transformation Replication Server Document Version: 1.6 2017-06-14 CUSTOMER Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server - For SAP

More information

Sql Server 2008 Query Table Schema Management Studio Create New

Sql Server 2008 Query Table Schema Management Studio Create New Sql Server 2008 Query Table Schema Management Studio Create New rename a table in SQL Server 2016 by using SQL Server Management Studio or new features or changes to existing features in Microsoft SQL

More information

Migrating Eclipse.net from SQL Server 2005 to SQL Server 2008

Migrating Eclipse.net from SQL Server 2005 to SQL Server 2008 Purpose: This document describes the recommended method of the migration of the Eclipse.net SQL database from Microsoft SQL Server 2005 to 2008. Micro Librarian Systems LTD Page 1 of 6 Support: www.microlib.co.uk/mymls

More information

Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System

Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System Applies to: SAP Netweaver Mobile 710/711 systems. For more information, visit the Mobile homepage. Summary This document

More information

How To Create New Database In Sql Server 2008 Step By Step

How To Create New Database In Sql Server 2008 Step By Step How To Create New Database In Sql Server 2008 Step By Step 3.1 Creating and Configuring a SQL Server 2008 R2 or 2012 Database Account Manager to create a new user account for the WebCenter Sites database

More information

VMware vrealize Configuration Manager Backup and Disaster Recovery Guide vrealize Configuration Manager 5.8

VMware vrealize Configuration Manager Backup and Disaster Recovery Guide vrealize Configuration Manager 5.8 VMware vrealize Configuration Manager Backup and Disaster Recovery Guide vrealize Configuration Manager 5.8 This document supports the version of each product listed and supports all subsequent versions

More information

Manually Create Distribution Database Sql Server 2005 Move

Manually Create Distribution Database Sql Server 2005 Move Manually Create Distribution Database Sql Server 2005 Move If you need high availability for the distribution database, you have limited options: immediate sync set to true because of this old bug from

More information

E-Sourcing System Copy [System refresh from Production to existing Development]

E-Sourcing System Copy [System refresh from Production to existing Development] E-Sourcing System Copy [System refresh from Production to existing Development] Applies to: SAP Netweaver 7.0 and E-Sourcing 5.1/CLM 2.0 Summary This document discusses about the steps to do an E-Sourcing

More information

Copy Table From One Database To Another Sql

Copy Table From One Database To Another Sql Copy Table From One Database To Another Sql Server 2000 SQL 2000 Copy rows of data from one table to another in the same database "Server: Msg 107, Level 16, State 3, Line 1 The column prefix 'PartsSales'

More information

Sql 2008 Copy Tables Structure And Database To Another

Sql 2008 Copy Tables Structure And Database To Another Sql 2008 Copy Tables Structure And Database To Another Copy NAV Database Structure to another Database along with Data in SQL @tablevar table(name varchar(300)) declare @columntablevar table(column_name

More information

PUBLIC. System Copy Guide. System Copy for SAP Systems Based on SAP ABAP. Target Audience. System administrators Technology consultants

PUBLIC. System Copy Guide. System Copy for SAP Systems Based on SAP ABAP. Target Audience. System administrators Technology consultants PUBLIC System Copy Guide System Copy for SAP Systems Based on SAP NetWeaver 7.0 SR3 ABAP Target Audience System administrators Technology consultants Document version: 1.0 03/28/2008 Document History Caution

More information

Database Table Schema Sql Server 2008 R2 Management Studio

Database Table Schema Sql Server 2008 R2 Management Studio Database Table Schema Sql Server 2008 R2 Management Studio Requires CREATE VIEW permission in the database and ALTER permission on the schema in which the view is being Using SQL Server Management Studio.

More information

1. You want to update a productive SAP HANA system to the next support package stack (SPS).

1. You want to update a productive SAP HANA system to the next support package stack (SPS). SAP EDUCATION SAMPLE QUESTIONS: C_HANATEC151 SAP Certified Technology Associate - SAP HANA (Edition 2015) Disclaimer: These sample questions are for self-evaluation purposes only and do not appear on the

More information

C_HANAIMP142

C_HANAIMP142 C_HANAIMP142 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Where does SAP recommend you create calculated measures? A. In a column view B. In a business layer C. In an attribute view D. In an

More information

Change Database Schema Oracle Sql Server 2008

Change Database Schema Oracle Sql Server 2008 Change Database Schema Oracle Sql Server 2008 R2 PostgreSQL Data Wizard is a Windows GUI utility to transfer both schema and data from exportsql - a Microsoft Access module which exports Access Database

More information

SQL 2005 BACKUP AND RESTORE PRODUCT CATALOG EBOOK

SQL 2005 BACKUP AND RESTORE PRODUCT CATALOG EBOOK 30 October, 2017 SQL 2005 BACKUP AND RESTORE PRODUCT CATALOG EBOOK Document Filetype: PDF 322.29 KB 0 SQL 2005 BACKUP AND RESTORE PRODUCT CATALOG EBOOK One way is to drop fulltext catalog and indexes,

More information

For general information about the SAP Printer Vendor program please check note

For general information about the SAP Printer Vendor program please check note Note Language: English Version: 5 Validity: Valid Since 24.06.2013 Summary Symptom The company TSC is silver-level member of the SAP Printer Vendor program and within this program offers support for the

More information

Sql Server 2005 Transfer Schema Ownership

Sql Server 2005 Transfer Schema Ownership Sql Server 2005 Transfer Schema Ownership Applies To: SQL Server 2014, SQL Server 2016 Preview Before dropping a database user that owns securables, you must first drop or transfer ownership of those Beginning

More information

Preupgrade. Preupgrade overview

Preupgrade. Preupgrade overview overview, page 1 Virtual contact center upgrades, page 2 Common Ground preupgrade task flow, page 3 Technology Refresh preupgrade task flow, page 5 Common Ground preupgrade tasks, page 6 Technology Refresh

More information

Using VERITAS Volume Replicator for Disaster Recovery of a SQL Server Application Note

Using VERITAS Volume Replicator for Disaster Recovery of a SQL Server Application Note Using VERITAS Volume Replicator for Disaster Recovery of a SQL Server Application Note February 2002 30-000632-011 Disclaimer The information contained in this publication is subject to change without

More information

SAP Note Zero administration memory management as of 4.0A/ Windows

SAP Note Zero administration memory management as of 4.0A/ Windows Note Language: English Version: 21 Validity: Valid Since 15.02.2007 Summary Symptom Zero administration memory management on Windows as of SAP Release 4.0A. Other terms Reason and Prerequisites The configuration

More information

SAP8 Database Administration

SAP8 Database Administration Andre Faustmann, Michael Greulich, Andre Siegling, Benjamin Wegener, and Ronny Zimmermann SAP8 Database Administration with IBM* DB2* a ^. Galileo Press Bonn Boston Foreword 15 Acknowledgments 17 1.1 Who

More information

Ms Sql Server 2008 R2 Check If Temp Table Exists

Ms Sql Server 2008 R2 Check If Temp Table Exists Ms Sql Server 2008 R2 Check If Temp Table Exists I need to store dynamic sql result into a temporary table #Temp. Dynamic SQL Query How to check if column exists in SQL Server table 766 Insert results.

More information

VISIO DATABASE DIAGRAM SQL SERVER

VISIO DATABASE DIAGRAM SQL SERVER 23 April, 2018 VISIO DATABASE DIAGRAM SQL SERVER Document Filetype: PDF 449.84 KB 0 VISIO DATABASE DIAGRAM SQL SERVER Hi, Visio still has various database diagramming options and these can be bound to

More information

Steps To Create Database Manually In Oracle 10g In Windows

Steps To Create Database Manually In Oracle 10g In Windows Steps To Create Database Manually In Oracle 10g In Windows Oracle Database Vault Installation Guide, 10g Release 2 (10.2) for Microsoft Windows (32-Bit). B32384-04 applications that may create a risk of

More information

Sql Server Management Studio 2008 Change Table Schema

Sql Server Management Studio 2008 Change Table Schema Sql Server Management Studio 2008 Change Table Schema You can delete (drop) a table from your database in SQL Server 2016 by using SQL Server Management Studio or Transact-SQL. Topic Status: Some information

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database OVERVIEW About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the

More information

Use Schema_id Sql Server Schema Id Sys Tables

Use Schema_id Sql Server Schema Id Sys Tables Use Schema_id Sql Server Schema Id Sys Tables schema_id) = s. The column principal_id in sys.schemas contains the ID of the schema owner, so to get the name you can Use the column principal_id in sys.tables,

More information

Sql 2008 Copy Table Structure And Database To

Sql 2008 Copy Table Structure And Database To Sql 2008 Copy Table Structure And Database To Another Table Different you can create a table with same schema in another database first and copy the data like Browse other questions tagged sql-server sql-server-2008r2-express.

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr Getting Started Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr Getting Started Guide Safyr 7.1 This product is subject to the

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

PowerCenter Repository Maintenance

PowerCenter Repository Maintenance PowerCenter Repository Maintenance 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide

Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide 2016 Dassault Systèmes. Apriso, 3DEXPERIENCE, the Compass logo and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA,

More information

ITdumpsFree. Get free valid exam dumps and pass your exam test with confidence

ITdumpsFree.  Get free valid exam dumps and pass your exam test with confidence ITdumpsFree http://www.itdumpsfree.com Get free valid exam dumps and pass your exam test with confidence Exam : C_HANAIMP_12 Title : SAP Certified Application Associate - SAP HANA (Edition 2016 - SPS12)

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

Manual Backup Sql Server 2000 Command Line Restore Database

Manual Backup Sql Server 2000 Command Line Restore Database Manual Backup Sql Server 2000 Command Line Restore Database Overview Creating command line backups is very straightforward. There are basically two commands that allow you to create backups, BACKUP DATABASE.

More information

SCI APPLICATIONS SERVER. Transaction Log (D:) Raid 5

SCI APPLICATIONS SERVER. Transaction Log (D:) Raid 5 SCI APPLICATIONS Sci Applications Server The directory structure below shows the recommended setup of the server for each individual hospital. Each application/store server should be part of a domain to

More information

Microsoft Exchange Server 2007 Implementation and Maintenance

Microsoft Exchange Server 2007 Implementation and Maintenance Microsoft Exchange Server 2007 Implementation and Maintenance Chapter 1 Exchange Server 2007 Deployment 1.1 Overview, Hardware & Editions 1.2 Exchange Server, Windows & Active Directory 1.3 Administration

More information

Installation Dino Explorer Suite Guide Installation Guide. Version 6.2.0

Installation Dino Explorer Suite Guide Installation Guide. Version 6.2.0 Dino Dino Explorer Explorer Suite Installation Dino Explorer Suite Guide Installation Guide Version 6.2.0 Contents 1 Introduction... 3 2 Installing the Dino Server... 4 3 Installing Dino Client... 6 4

More information

Parallels Virtuozzo Containers 4.5 for Windows Release Candidate Readme

Parallels Virtuozzo Containers 4.5 for Windows Release Candidate Readme Parallels Virtuozzo Containers 4.5 for Windows Release Candidate Readme May 29, 2009 This document provides first-priority information on the Parallels Virtuozzo Containers 4.5 for Windows Release Candidate

More information

Update The Statistics On A Single Table+sql Server 2005

Update The Statistics On A Single Table+sql Server 2005 Update The Statistics On A Single Table+sql Server 2005 There are different ways statistics are created and maintained in SQL Server: to find out all of those statistics created by SQL Server Query Optimizer

More information

Related Documents... 7 AVM-RTA DS AVM-LaserFocus... 8 Pre-requisites... 8

Related Documents... 7 AVM-RTA DS AVM-LaserFocus... 8 Pre-requisites... 8 SAP RM AVM README README V1.0 SAP RM AVM Readme... 1 Purpose... 1 Overview... 2 Navigation Path for Software and Documents download... 2 Base Installation Package... 2 Support Packs... 2 RM AVM Component

More information

COURSE 20462C: ADMINISTERING MICROSOFT SQL SERVER DATABASES

COURSE 20462C: ADMINISTERING MICROSOFT SQL SERVER DATABASES Page 1 of 11 ABOUT THIS COURSE This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database. The course focuses on teaching individuals

More information

Sql Server 2000 Manually Run Maintenance Plan

Sql Server 2000 Manually Run Maintenance Plan Sql Server 2000 Manually Run Maintenance Plan The backups are produced by maintenance plans on the production server then Each day we run a SQL statement similar to this to overwrite each database: I think

More information

SQL Server DBA Course Details

SQL Server DBA Course Details SQL Server DBA Course Details By Besant Technologies Course Name Category Venue SQL Server DBA Database Administration Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address Velachery,

More information

CT-Softwareberatungs GmbH Installation guide CT-BW Analyzer&Docu 3.0

CT-Softwareberatungs GmbH Installation guide CT-BW Analyzer&Docu 3.0 Installation guide CT-BW Analyzer & Docu 3.0 The installation time takes about 5 minutes, normally you can press ENTER to take the default installation values. The manual is described in detail. Every

More information

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express Edition to Microsoft SQL Server 2005, 2008, or 2008 R2

More information

Manual Backup Sql Server 2000 Command Line Restore

Manual Backup Sql Server 2000 Command Line Restore Manual Backup Sql Server 2000 Command Line Restore Overview Creating command line backups is very straightforward. There are basically two commands that allow you to create backups, BACKUP DATABASE. Under

More information

SQL 2008 BACKUP OPERATION MANUAL

SQL 2008 BACKUP OPERATION MANUAL 03 May, 2018 SQL 2008 BACKUP OPERATION MANUAL Document Filetype: PDF 351.14 KB 0 SQL 2008 BACKUP OPERATION MANUAL SQL Server 2008 r2 backup failed Question for PRO. This SQL Server tutorial shows how to

More information

SAP C_HANATEC_12 Exam

SAP C_HANATEC_12 Exam Volume: 188 Questions Question No: 1 What are the recommended ways to perform a database backup?. A. Use the./hdbsetup command B. Use SQL commands C. Use the BRBACKUP command D. Use SAP HANA Studio Answer:

More information

Manual Backup Sql Server Express 2008 Schedule Database Sqlcmd

Manual Backup Sql Server Express 2008 Schedule Database Sqlcmd Manual Backup Sql Server Express 2008 Schedule Database Sqlcmd Automate Backups Using SQL Server Management Studio Express and Note: These instructions were prepared using SQL Server Express 2008 and Windows

More information

Process Orchestrator Releases Hard or Soft Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y.

Process Orchestrator Releases Hard or Soft Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y. This document describes the version and compatibility requirements for installing and upgrading Cisco Process Orchestrator. This document also provides information about the hardware platforms and software

More information

Training 24x7 DBA Support Staffing. Administering a SQL Database Infrastructure (40 Hours) Exam

Training 24x7 DBA Support Staffing. Administering a SQL Database Infrastructure (40 Hours) Exam Administering a SQL Database Infrastructure (40 Hours) Exam 70-764 Prerequisites Basic knowledge of the Microsoft Windows operating system and its core functionality. Working knowledge of Transact-SQL.

More information

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

More information

Maintaining a Microsoft SQL Server 2008 Database (Course 6231A)

Maintaining a Microsoft SQL Server 2008 Database (Course 6231A) Duration Five days Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA)

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) Prerequisites Have some experience with relational databases and SQL What will you learn? The MySQL for Database Administrators

More information

MS-20462: Administering Microsoft SQL Server Databases

MS-20462: Administering Microsoft SQL Server Databases MS-20462: Administering Microsoft SQL Server Databases Description This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database.

More information

MySQL for Database Administrators Ed 3.1

MySQL for Database Administrators Ed 3.1 Oracle University Contact Us: 1.800.529.0165 MySQL for Database Administrators Ed 3.1 Duration: 5 Days What you will learn The MySQL for Database Administrators training is designed for DBAs and other

More information

Basic Migration Guideline

Basic Migration Guideline Basic Migration Guideline Purpose The purpose of this document is to assist customers with moving (migrating) the LogMate system from one server to another. What You Will Need Latest LogMate software Local

More information

Certification Suite BC-ILM 3.0

Certification Suite BC-ILM 3.0 Master Guide Certification Suite ABAP Document Version: 1.1 2016-06-27 ABAP Typographic Conventions Type Style Example Example EXAMPLE Example Example EXAMPLE Description Words or characters

More information

WWCdi Error 80040E14: Description 'Warning: The join order has been enforced because a local join hint is used'

WWCdi Error 80040E14: Description 'Warning: The join order has been enforced because a local join hint is used' Tech Note 921 Optimizing SQL Server for Large Galaxy Migration All Tech Notes, Tech Alerts and KBCD documents and software are provided "as is" without warranty of any kind. See the Terms of Use for more

More information

Alter Change Default Schema Oracle Sql Developer

Alter Change Default Schema Oracle Sql Developer Alter Change Default Schema Oracle Sql Developer Set default schema in Oracle Developer Tools in Visual STudio 2013 any other schema's. I can run alter session set current_schema=xxx Browse other questions

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

SAP Certified Technology Associate - System Administration (SAP HANA as a database) with SAP NetWeaver 7.4

SAP Certified Technology Associate - System Administration (SAP HANA as a database) with SAP NetWeaver 7.4 SAP EDUCATION SAMPLE QUESTIONS: C_TADM55_74 SAP Certified Technology Associate - System Administration (SAP HANA as a database) with SAP NetWeaver 7.4 Disclaimer: These sample questions are for self-evaluation

More information

SAP Note Setting up SSL on Web Application Server ABAP

SAP Note Setting up SSL on Web Application Server ABAP Note Language: English Version: 14 Validity: Valid Since 22.12.2009 Summary Symptom You encounter problems when you set up SSL on the Web Application Server ABAP. Other terms SSL, HTTPS, coding, trust

More information

Password Manager for SAP Single Sign-On Implementation Guide

Password Manager for SAP Single Sign-On Implementation Guide PUBLIC SAP Single Sign-On 3.0 SP02 Document Version: 1.1 2018-07-31 Password Manager for SAP Single Sign-On Implementation Guide 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN

More information

SAP NetWeaver BI. Unicode Compliance. Product Management SAP NetWeaver BI. Version 7.0 December, 2008

SAP NetWeaver BI. Unicode Compliance. Product Management SAP NetWeaver BI. Version 7.0 December, 2008 SAP NetWeaver BI Unicode Compliance Product Management SAP NetWeaver BI Version 7.0 December, 2008 Agenda 1. Unicode in General 2. Excursus: MDMP 3. Unicode support of SAP NetWeaver BI 4. Interfaces to

More information

SAP NetWeaver 04 Security Guide. Operating System Security: SAP System Security Under Windows

SAP NetWeaver 04 Security Guide. Operating System Security: SAP System Security Under Windows SAP NetWeaver 04 Security Guide Operating System Security: SAP System Security Under Windows Document Version 1.00 April 29, 2004 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18

More information

Housekeeping for SAP HANA Platform

Housekeeping for SAP HANA Platform RollOut Guide SAP Business One, version for SAP HANA Document Version: 1.0 2018-11-07 Typographic Conventions Type Style Example Example EXAMPLE Example Example Description Words or characters

More information

Qlik Connector for SAP Installation guide

Qlik Connector for SAP Installation guide Qlik Connector for SAP Installation guide Release 6.4.0 Copyright 1993-2017 QlikTech International AB. All rights reserved. 1 Contents 1. General configuration... 4 1.1. Installing the connectors... 4

More information

Basic database tasks using SQL 2005 and Controller 8.x

Basic database tasks using SQL 2005 and Controller 8.x Basic database tasks using SQL 2005 and Controller 8.x Overview This document will demonstrate how to perform standard Controller 8 tasks that involve SQL 2005 database. NOTES: To use Controller 8 with

More information