Adding, Dropping Storage Path(s) and Rebalancing Tablespaces

Size: px
Start display at page:

Download "Adding, Dropping Storage Path(s) and Rebalancing Tablespaces"

Transcription

1 Adding, Dropping Storage Path(s) and Rebalancing Tablespaces Applies to: All SAP releases on DB2 9.7 for Linux, UNIX, and Windows. For more information, visit the Landscape Design and Architecture homepage. Summary One of the DB2 9.7 manageability enhancements with automatic storage supports removing storage paths from a database and rebalancing the tablespaces online. In this document, we provide step by step instructions on how to rebalance an automatic storage tablespace after storage paths have been added to or removed from a database. Some of the performance data is also provided based on the test done at our lab. Author: Cong Lin Company: IBM Canada Created on: 01 November 2009 Author Bio Cong Lin is a member of the IBM SAP Integration and Support Center at the IBM Toronto Lab. Her current activities include testing of SAP applications with DB2 for LUW and helping customers with problem analysis and troubleshooting. She is also a customer advocate, providing support for large customer accounts running SAP and DB2 LUW SAP AG 1

2 Table of Contents 1 Overview Preparation Step by Step Instructions Adding Storage Paths Procedures Performance Data Removing Storage Paths Procedure Performance Data Adding and Removing Storage Paths at the Same Time Procedure Performance Data Rebalancing Tablespaces Rebalance the Tablespaces Monitor the Status of the Rebalancing Process Throttling the Rebalancing Process (Optional) Other Considerations Related Content Disclaimer and Liability Notice SAP AG 2

3 1 Overview Automatic storage is a DB2 feature intended to make storage management easier. Databases that are enabled for automatic storage have a set of one or more storage paths associated with it. You can modify this set of storage paths using the ALTER DATABASE statement. In DB2 releases prior to DB2 9.7, you were only able to add storage paths to a database that was enabled for automatic storage. Once added, there was no possibility to remove them without bringing the database down and causing an outage. Newly added storage paths were also not immediately used by existing automatic storage tablespaces. Only if the disk space on the existing storage paths was full and existing tablespace containers could not be extended to accommodate the growth, the newly added storage paths was used. As a result, adding new storage paths alone could only address the issue of capacity. To improve the I/O parallelism as well, redirected restore is needed. As of DB2 9.7, you can immediately use any storage that you add to an automatic storage database by rebalancing the automatic storage tablespaces. Rebalancing initiates the creation of containers on recently added storage paths, reallocates the data across the new, expanded set of containers and stripe sets. Therefore, rebalancing after new storage paths have been added to the database improves I/O parallelism for the tablespaces. Also starting from DB2 9.7, you no longer need to perform a redirect restore to remove some existing storage paths. You can now online remove existing storage paths from database enabled for automatic storage. Following are the three user scenarios that take advantage of these new features in DB2 9.7: Adding storage paths and rebalancing automatic storage tablespaces Removing storage paths and rebalancing automatic storage tablespaces Adding and removing storage paths and rebalancing automatic storage tablespaces In this document, we provide a step by step guide on how to perform above storage management tasks and to illustrate the impact of adding and removing storage paths on automatic storage tablespaces SAP AG 3

4 2 Preparation Before you start working on any of the three scenarios described in this document, make sure you read the following checklist: 1. Check if you instance is at the correct level: DB2 9.7 GA and higher This document is meant for DB2 9.7 and higher. To check, run the db2level command. 2. Check if your current database is already enabled for automatic storage. The following example shows a database that has not yet been enabled for automatic storage: saplp4: db2ax4> db2pd db AX4 -storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 0 days 00:49:18 saplp4: db2ax4> Database db2pd Storage db AX4 Paths: -storagepath Database Partition Number 0 -- of Database Storage Paths AX4 -- Active 0 -- Up 0 days 00:49:18 Database Storage Paths: Any value that does not equal 0 in the Number of Storage Paths indicates that the database is enabled for automatic storage. Take a note on how many storage paths your database has and continue with the next step. If your database has not yet enabled for automatic storage, see document Enable Automatic Storage for Your SAP Database and Table Spaces for details. 3. Check if your tablespaces are already enabled for automatic storage. In this document, we also assume that all your permanent tablespaces are managed by automatic storage. If this is not the case, see document Enable Automatic Storage for Your SAP Database and Table Spaces for details. You can use following SQL command to check if table spaces are managed by automatic storage, A value 1 in the field TBSP_USING_AUTO_STORAGE indicates this table space is managed by automatic storage. SELECT SUBSTR(TBSP_NAME, 1,30) as TBSP_NAME, TBSP_USING_AUTO_STORAGE from TABLE(SNAP_GET_TBSP_V91('')) AS T TBSP_NAME TBSP_USING_AUTO_STORAGE PSAPTEMP16 1 D97#ODSD 1 D97#ODSI 1 D97#DIMD 1 D97#DIMI 1 D97#FACTD 1 D97#FACTI SAP AG 4

5 4. Get the new storage paths ready. If you plan to add new storage paths or move data from existing storage paths to new paths, make sure these new storage paths have been created. If you have a multi partition database, make sure these new storage paths exist on all partitions. 5. Make sure that there is enough disk space available. This step is critical for a successful rebalance as described in the following: For adding new storage path case, since the new containers on the new storage paths must be created before the data could be moved, the tablespaces will have a much bigger total size during and after the rebalancing. Make sure the new storage paths have enough disk space to host the new containers for the data. For more information about the layout of a tablespace before and after it was rebalanced, see the Figure 1below. For example, if your tablespace currently has 4 containers over 2 existing storage paths (2 containers per path), you just add one more storage path to the database. Rebalancing this tablespace creates 2 new containers of the same size like those existing ones on the new storage path. If your tablespace has a size of approx. 100 GB, then 50 GB free space on the new storage path is needed for a successful rebalancing process. After the rebalancing is done, the size of the tablespace will be 150 GB. However, the high-water mark of the tablespace should stay the same as before the rebalancing process. You can reduce the total size of the tablespace using ALTER TABLESPACE REDUCE statement. To drop a storage path, make sure that the rest of the existing storage paths have enough space to host the containers for existing data plus data from the dropped path. For more information about the layout of a rebalanced tablespace before and after the storage path was dropped, see Figure 2. Figure 1. Adding a storage path and rebalancing an automatic storage table space 2009 SAP AG 5

6 Figure 2. Dropping a storage path and rebalancing an automatic storage table space 3 Step by Step Instructions 3.1 Adding Storage Paths Procedures In this example, the original database was created on two storage paths (sapdata5 and sapdata6). Two more storage paths (sapdata7 and sapdata8) are added. 1. Take a tablespace snapshot and run db2pd to keep a record of the starting status. In the following example, there are two storage paths in this database: saplp4: db2ax4>db2pd d AX4 -storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 5 days 02:25:28 Database Storage Paths: Number of Storage Paths 2 Address PathID PathState PathName 0x CB20 0 InUse /db2/ax4/sapdata5 0x C840 1 InUse /db2/ax4/sapdata SAP AG 6

7 The following is an example of a tablespace snapshot for AX4#DDICD. Take note of the number and location of the containers. The tablespace map shows one stripe set. saplp4: db2ax4>db2 get snapshot for tablespaces on AX4 Tablespace name = AX4#DDICD Total number of pages = Number of used pages = High water mark (pages) = Number of containers = 2 Container Name Container Name = /db2/ax4/sapdata5/db2ax4/node0000/ax4/t /c lrg = /db2/ax4/sapdata6/db2ax4/node0000/ax4/t /c lrg Table space map: Range Stripe Stripe Max Max Start End Adj. Containers Number Set Offset Extent Page Stripe Stripe [ 0] [ 0] (0,1) 2. Add the storage paths using the following ALTER DATABASE statement: ALTER DATABASE <DBName> ADD STORAGE ON <Path1> [,<Path2>,...,<Pathn>] Example: alter database AX4 add storage on '/db2/ax4/sapdata7', '/db2/ax4/sapdata8'; Note: After the new storage paths are added, they are not immediately used by the tablespaces. Run db2pd to check the status of all 4 database storage paths and note down the data in PathState column. saplp4: db2ax4> db2pd db AX4 -storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 5 days 02:47:09 Database Storage Paths: Number of Storage Paths 4 Address PathID PathState PathName 0x CB20 0 InUse /db2/ax4/sapdata5 0x C840 1 InUse /db2/ax4/sapdata6 0x D8EE5C0 4 NotInUse /db2/ax4/sapdata7 0x D81F560 5 NotInUse /db2/ax4/sapdata SAP AG 7

8 3. Identify all the tablespaces that should be striped across both existing and new paths. Assume that you want all your permanent tablespaces take advantage of the new storage paths right away. To determine all of the affected permanent tablespaces, you can manually scan the tablespace snapshot or using a SQL statement. The following SQL statement generates a list of all the regular and large automatic storage tablespaces in the database: SELECT TBSP_NAME FROM SYSIBMADM.SNAPTBSP WHERE TBSP_USING_AUTO_STORAGE=1 AND TBSP_CONTENT_TYPE IN ('ANY','LARGE') ORDER BY TBSP_ID; 4. Rebalance all the tablespaces provided in the previous step. To rebalance a table space, issue the following statement: ALTER TABLESPACE <TablespaceName> REBALANCE; Note: The rebalancing process might significantly impact your system performance. For more information, see section 3.4 Rebalance the tablespaces before kicking off any table spaces rebalance activity. Careful planning on when, how and which tablespace should be rebalanced at a certain time is important. 5. Confirm that the rebalancing process for all affected tablespaces has finished. To check the number of containers and their locations for all affected tablespaces, take a tablespace snapshot. In the following example, the number of containers was increased from 2 to 4. There should be only one stripe set in the tablespace map. Tablespace name = AX4#DDICD Total number of pages = Number of used pages = High water mark (pages) = Number of containers = 4 Container Name = /db2/ax4/sapdata5/db2ax4/node0000/ax4/t /c lrg Container Name = /db2/ax4/sapdata6/db2ax4/node0000/ax4/t /c lrg Container Name = /db2/ax4/sapdata7/db2ax4/node0000/ax4/t /c lrg Container Name = /db2/ax4/sapdata8/db2ax4/node0000/ax4/t /c lrg Table space map: Range Stripe Stripe Max Max Start End Adj. Containers Number Set Offset Extent Page Stripe Stripe [ 0] [ 0] (0,1,2,3) 2009 SAP AG 8

9 6. Optionally, reduce the tablespace size if needed. In the above example, note down the Total number of pages and High-water mark fields of the tablespace AX4#DDICD and compare the values with those in step 1. You will notice that the highwater mark stays the same but that Total number of pages has been doubled. This is due to the fact that the size of two new containers (one on each new path) created at the start of the rebalance process is the same as those of the two existing containers. Once the tablespace has been rebalanced, you could optionally reduce the size of this tablespace by running following SQL statement: ALTER TABLESPACE <tablespace_name> REDUCE; Here is an example: alter tablespace AX4#DDICD reduce; Performance Data The following describes how performance data is collected for our test scenario. While the rebalancing process was running, there were not many other concurrent activities on the database system. The time needed to rebalance a tablespace with a similar size on your system might vary in your particular environment. This will be affected by the file system layout, the ratio of new paths to existing storage paths, other concurrent system activities and hardware, and so on. Start with only one small and one medium size tablespace, which is followed by a large tablespace. Use your own results as a reference to estimate how long it takes to rebalance each of the remaining tablespaces and schedule the rebalancing process for each tablespace accordingly. TableSpace Size Time Used for Rebalance 41.7GB 4 hour 26 min 4.0 GB 24 min 2009 SAP AG 9

10 3.2 Removing Storage Paths Procedure In following example, the current database has four storage paths: sapdata5, sapdata6, sapdata7, and sapdata8. Storage path sapdata5 and sapdata6 are going to be removed from the database as follows: 1. Take a tablespace snapshot and run db2pd to keep a record of the starting status. db2pd d AX4 -storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 5 days 18:35:51 Database Storage Paths: Number of Storage Paths 4 Address PathID PathState PathName 0x CB20 0 InUse /db2/ax4/sapdata5 0x C840 1 InUse /db2/ax4/sapdata6 0x D8EE5C0 4 InUse /db2/ax4/sapdata7 0x D81F560 5 InUse /db2/ax4/sapdata8 2. Drop the storage paths with following ALTER DATABASE statement: ALTER DATABASE DROP STORAGE ON <Path1>,<Path2>,...,<Pathn>] Here is an example: alter database drop storage on '/db2/ax4/sapdata5', '/db2/ax4/sapdata6' Note: This action puts the mentioned storage paths in a drop pending state. Path(s) are not removed until all data on these storage paths are moved to other paths. To check the Pathstate column of all 4 storage paths, run db2pd SAP AG 10

11 db2pd d AX4 storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 5 days 18:58:10 Database Storage Paths: Number of Storage Paths 4 Address PathID PathState PathName 0x CB20 0 DropPending /db2/ax4/sapdata5 0x C840 1 DropPending /db2/ax4/sapdata6 0x D8EE5C0 4 InUse /db2/ax4/sapdata7 0x D81F560 5 InUse /db2/ax4/sapdata8 3. Identify all of the affected non temporary tablespaces that might have containers on the drop pending storage paths. You can either do this manually by scanning the output of the tablespace snapshot or by using an SQL statement. The following SQL statement generates a list of all the regular and large automatic storage tablespaces that have containers residing on a "Drop Pending" path: SELECT DISTINCT A.TBSP_NAME FROM SYSIBMADM.SNAPTBSP A, SYSIBMADM.SNAPTBSP_PART B WHERE A.TBSP_ID = B.TBSP_ID AND A.TBSP_CONTENT_TYPE IN ('ANY','LARGE') AND B.TBSP_PATHS_DROPPED = 1 4. Rebalance all the tablespaces identified in step 3. To rebalance a table space, issue the following statement: ALTER TABLESPACE <TablespaceName> REBALANCE; Rebalancing these tablespaces moves the permanent data off the containers on the drop pending paths onto the remaining storage paths and then the empty containers are dropped. Note: The rebalancing process might have significant performance impact on your system. Before starting the rebalancing process for any tablespace, see section 3.4 Rebalance the table spaces for more information. It is important that you carefully plan when, how and which tablespace should be rebalanced at a certain point in time. 5. Identify all affected temporary tablespaces. To determine the list of affected temporary table spaces, you can manually scan a tablespace snapshot output or you can execute a SQL statement. The following SQL statement generates a list of all the system temporary and user temporary automatic storage tablespaces in a database that have containers residing on a "Drop Pending" path: SELECT DISTINCT A.TBSP_NAME FROM SYSIBMADM.SNAPTBSP A, SYSIBMADM.SNAPTBSP_PART B WHERE A.TBSP_ID = B.TBSP_ID AND A.TBSP_CONTENT_TYPE IN ('USRTEMP','SYSTEMP') AND B.TBSP_PATHS_DROPPED= SAP AG 11

12 6. Move temporary tablespace off all Drop Pending paths if any exists In a standard SAP system database, there are two SMS temporary tablespaces: PSAPTEMP16 and SYSTOOLSTMPSPACE. If one of them has containers on the drop pending paths, you can either stop (deactivate) and start (activate) the database, which results in the containers being redefined. Alternatively, you can rename the existing temporary tablespace, re-create it on the correct paths and then drop the old temporary tablespace. The following is an example script that you can use to rename and re-create the tablespace. First, run the script recreate_tmptbs.sql and then runt the script drop_oldtmp.sql. Content of recreate_tmptbs.sql: rename tablespace PSAPTEMP16 to oldtemp16; rename tablespace SYSTOOLSTMPSPACE to oldtoolstmpspace; create temporary tablespace PSAPTEMP16 in nodegroup IBMTEMPGROUP pagesize 16k extentsize 2 prefetchsize automatic no file system caching dropped table recovery off; create user temporary tablespace SYSTOOLSTMPSPACE in nodegroup IBMCATGROUP pagesize 16k extentsize 2 prefetchsize automatic Content of drop_oldtmp.sql drop tablespace oldtemp16; drop tablespace oldtoolstmpspace ; Note: If you were not able to drop one of your old temporary tablespaces, it might still be used. Try to drop it at a later time SAP AG 12

13 7. Confirm that the dropped storage paths are no longer listed. Once there are no tablespaces actively using the storage path that were dropped, the paths are immediately removed from the database. To check, run db2pd again. saplp4: db2ax4>db2pd d AX4 -storagepaths Database Partition 0 -- Database AX4 -- Active -- Up 6 days 10:10:33 Database Storage Paths: Number of Storage Paths 2 Address PathID PathState PathName 0x D8EE5C0 4 InUse /db2/ax4/sapdata7 0x D81F560 5 InUse /db2/ax4/sapdata8 Note: If at this step, the paths to be dropped are still listed as Drop pending, then one or more tablespaces are still using it. In this case, repeat step 3 to step 6 to remove all the data from drop pending paths Performance Data The following describes how performance data is collected for our scenario. While the rebalancing process was running, there were not many other concurrent activities on the database system. The time needed to rebalance a tablespace with a similar size on your system might vary in your particular environment. This will be affected by the file system layout, ratio of new paths to existing storage paths, other concurrent system activities and hardware, and so on. Start with only one small and one medium size tablespace, which is then followed by a large tablespace. Use your own results as a reference to estimate how long it takes to rebalance each of the remaining tablespaces and schedule the rebalancing process for each tablespace accordingly. Tablespace Size Time Used for Rebalance 41.7 GB 7 hour 5 min 4.0 GB 41 min 2009 SAP AG 13

14 3.3 Adding and Removing Storage Paths at the Same Time Procedure You can add and drop storage path from the database using a single ALTER DATABASE statement or using multiple ALTER DATABASE statements that you issue at different points in time. To use a single SQL statement, enter the following: ALTER DATABASE ADD STORAGE ON <newpath1> [<newpath2> ] DROP STORAGE ON <existingpath1> [,<existingpath2>, ] Here is an example: alter database add storage on '/db2/ax4/sapdata3' drop '/db2/ax4/sapdata8'; The rest of the procedure is the same as described in section 3.2 Removing Storage Paths. However, there is one difference that you have to be aware of: when you identify all the tablespaces for rebalancing, you need to include all regular and large automatic storage tablespaces instead of only the tablespaces residing on the Drop pending paths. The following SQL statement generates a list of all regular and large automatic storage tablespaces in the database: SELECT DISTINCT TBSP_ID, TBSP_NAME FROM SYSIBMADM.SNAPTBSP WHERE TBSP_USING_AUTO_STORAGE = 1 AND TBSP_CONTENT_TYPE IN ('ANY','LARGE') ORDER BY TBSP_ID Performance Data The following describes how performance data is collected for our test scenario. The database started with two storage paths, a new path was added and an existing one was dropped. While the rebalancing process was running, there were not many other concurrent activities on the system. The time needed to rebalance a tablespace with a similar size on your system might vary in your particular environment. This will be affected by the file system layout, ratio of new paths to existing storage paths, other concurrent system activities and hardware, and so on. Start with only one small and one medium size tablespace, which is then followed by a large tablespace. Use your own results as a reference to estimate how long it takes to rebalance each of the remaining tablespaces and schedule the rebalancing process for each tablespace accordingly. Tablespace Size Time Used for Rebalance 41.7 GB 4 hour 27 min 4.0 GB 43 min 2009 SAP AG 14

15 3.4 Rebalancing Tablespaces Rebalance the Tablespaces Once you have identified the tablespaces, the next step is to run the following statement for each of the listed tablespaces. Provided that there is sufficient space on the storage paths, it should not matter in what sequence the rebalances are performed. You can rebalance one tablespace at a time or a group of tablespaces in parallel. However, rebalancing has an impact of the performance of your system. Avoid rebalancing during system peak times and consider rebalancing really large tablespaces in smaller groups or individually. Alternatively, you could also use the throttling utility to limit the performance impact of rebalancing on your system. For more information, see section Throttling the Rebalance Process. To rebalance a tablespace, issue the following SQL statement: ALTER TABLESPACE <TablespaceName> REBALANCE; Here is an example: Alter tablespace AX4#ES700D rebalance; It can be seen in the output of this command that the rebalancing job runs asynchronous in the background and does not affect the availability of the data SAP AG 15

16 3.4.2 Monitor the Status of the Rebalancing Process To monitor the status, you could either run the db2list utilities show detail or take a tablespace snapshot. Db2 list utilities show detail Here is an example output: ID = 6219 Type Database Name = REBALANCE = AX4 Partition Number = 0 Description = Tablespace ID: 37 Start Time = 04/27/ :37: State Invocation Type = Executing = User Throttling: Priority = Unthrottled Progress Monitoring: Estimated Percentage Complete = 15 Total Work Completed Work = extents = 3318 extents Start Time = 04/27/ :37: ID = 6216 Type Database Name = REBALANCE = AX4 Partition Number = 0 Description = Tablespace ID: 36 Start Time = 04/27/ :37: State Invocation Type = Executing = User Throttling: Priority = Unthrottled Progress Monitoring: Estimated Percentage Complete = 4 Total Work Completed Work = extents = 4404 extents Start Time = 04/27/ :37: In example above, the tablespaces with ID 37 and 36 are still being rebalanced SAP AG 16

17 As soon as the tablespace has been rebalanced, the Rebalancer Mode in the tablespace snapshot for this tablespace shows No Rebalancing. Otherwise, you see DMS rebalancer is active for that tablespace in the tablespace snapshot. In the following example, tablespace < SYSCATSPACE > has only one stripe set in the table space map after having been rebalanced: Tablespace name Rebalancer Mode = SYSCATSPACE = No Rebalancing Number of containers = 2 Container Name = /db2/ax4/sapdata7/db2ax4/node0000/ax4/t /c cat Container Name = /db2/ax4/sapdata8/db2ax4/node0000/ax4/t /c cat Table space map: Range Stripe Stripe Max Max Start End Adj. Containers Number Set Offset Extent Page Stripe Stripe [ 0] [ 0] (0,1) The rebalancing process is logged in the db2diag.log. You can calculate the time used to rebalance a tablespace based on these log entries: E1342A392 LEVEL: Info PID : TID : 4379 PROC : db2sysc 0 INSTANCE : db2ax4 NODE : 000 EDUID : 4379 EDUNAME: db2rebal (AX4) 0 FUNCTION MESSAGE : DB2 UDB, buffer pool services, sqlb_rev_rebalance, probe:10 : ADM6058I Rebalancer for table space "AX4#ES700I" (ID "21") was started E6339A396 LEVEL: Info PID : TID : 4379 PROC : db2sysc 0 INSTANCE : db2ax4 NODE : 000 EDUID : 4379 EDUNAME : db2rebal (AX4) 0 FUNCTION MESSAGE : DB2 UDB, buffer pool services, sqlb_rebalance, probe:2876 : ADM6062I Rebalance for table space "AX4#ES700I" (ID "21") has been completed SAP AG 17

18 3.4.3 Throttling the Rebalancing Process (Optional) The database manager configuration parameter util_impact_lim sets the limit on the impact that throttled utilities can have on the overall workload of the machine. By default, parameter util_impact_lim is set to 10, which means all utilities combined can have no more than an impact of 10% average on the total workload as judged by the throttling algorithm. Value 100 indicates no throttling. To run in throttled mode, a utility must also be invoked with a non zero priority. You could use the SET UTIL_IMPACT_PRIORITY command to throttle a tablespace rebalancing process. To do so, you need to obtain the utility ID with the LIST UTILITIES command and to set the priority to a value. Here is the command: SET UTIL_IMPACT_PRIORITY FOR <utility_id> TO <priority>; 2009 SAP AG 18

19 Here is an example: augsburg2:db2ax4 68> db2 list utilities show detail ID = 4 Type Database Name = REBALANCE = AX4 Partition Number = 0 Description = Tablespace ID: 0 Start Time = 05/28/ :43: State Invocation Type = Executing = User Throttling: Priority = Unthrottled Progress Monitoring: Estimated Percentage Complete = 8 Total Work Completed Work = extents = 3884 extents Start Time = 05/28/ :43: augsburg2:db2ax4 69> db2 set UTIL_IMPACT_PRIORITY FOR 4 to 50 DB20000I The SET UTIL_IMPACT_PRIORITY command completed successfully. augsburg2:db2ax4 70> db2 list utilities show detail ID = 4 Type Database Name = REBALANCE = AX4 Partition Number = 0 Description = Tablespace ID: 0 Start Time = 05/28/ :43: State Invocation Type = Executing = User Throttling: Priority = 50 Progress Monitoring: Estimated Percentage Complete = 17 Total Work Completed Work = extents = 8150 extents Start Time = 05/28/ :43: SAP AG 19

20 4 Other Considerations In a partitioned database environment, consider the following: If you add more storage paths to the database, the same set of storage paths must be used on each database partition (unless database partition expression is used). If the specified path does not exist on every database partition, the statement is rolled back. If you remove a storage path from the database, the path is maintained independently on each partition. Once a Drop Pending path is no longer in use on a given database partition, it is removed physically from that partition. On other partitions, it might still show the path as being in "Drop Pending" state. You have to issue the rebalancing command on every partition. If a storage path is added to a database multiple times, you also to be aware of the following: You can add a given storage path to a database multiple times. This will result in multiple containers on that path. If you are using the DROP STORAGE ON clause, specifying that particular path once drops all instances of the path from the database SAP AG 20

21 5 Related Content For more information, see the SAP on DB2 for Linux, UNIX, and Windows Web page in the SAP Community Network. For more information, visit the Landscape Design and Architecture homepage SAP AG 21

22 Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document SAP AG 22

IBM Db2: Investigating Automatic Storage Table Spaces and Data Skew

IBM Db2: Investigating Automatic Storage Table Spaces and Data Skew Front cover IBM Db2: Investigating Automatic Storage Table Spaces and Data Skew George Wangelien Zachary Hoggard Redpaper Investigating automatic storage table spaces and data skew The scope of this IBM

More information

Using Radio Buttons in Web Template

Using Radio Buttons in Web Template Using Radio Buttons in Web Template Applies to: SAP BW 3.5. For more information, visit the Business Intelligence homepage. Summary One of the ideal requirements in the BW Web Reporting is the user wants

More information

Recreating BIA Indexes to Address the Growth of Fact Index Table

Recreating BIA Indexes to Address the Growth of Fact Index Table Recreating BIA Indexes to Address the Growth of Fact Index Table Applies to: Software Component: SAP_BW.Release: 700 BIA version: 53 Summary In this article we would learn the application of recreating

More information

DB Connect with Delta Mechanism

DB Connect with Delta Mechanism Applies to: SAP BI/BW. For more information, visit the EDW homepage Summary This Article demonstrates the steps for handling Delta mechanism with Relational Database Management System (RDBMS) like SQL,

More information

Database Statistics During ODS Activation

Database Statistics During ODS Activation Database Statistics During ODS Activation Applies to: SAP BW (3.5) / SAP BI (7.0). For more information, visit the EDW homepage Summary ODS Activation step periodically recalculates the statistics. This

More information

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Applies to: Web Dynpro ABAP. Summary This tutorial explains how to display Web Dynpro ABAP Application in Microsoft Share

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

Chapter 3: Database Components

Chapter 3: Database Components 3. Database Components 3-1 DBA Certification Course (Summer 2008) Chapter 3: Database Components Tablespaces Buffer Pools Schemas Catalog 3. Database Components 3-2 Objectives After completing this chapter,

More information

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP Applies to: SAP Netweaver 2004S: Web Dynpro for ABAP. For more information, visit the User Interface Technology homepage.

More information

POWL: Infoset Generation with Web Dynpro ABAP

POWL: Infoset Generation with Web Dynpro ABAP POWL: Infoset Generation with Web Dynpro ABAP Applies to: WebDynpro ABAP Developer. For more information, visit the Web Dynpro ABAP homepage. Summary: This document explains how to create an Infoset, generate

More information

How to Create and Schedule Publications from Crystal Reports

How to Create and Schedule Publications from Crystal Reports How to Create and Schedule Publications from Crystal Reports Applies to: SAP BusinessObjects Enterprise. For more information, visit the Business Objects homepage. Summary This white paper describes how

More information

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 Applies to: SAP NetWeaver Master Data Management (MDM) SP3, SP4, SP5. Summary This article provides a step-by-step procedure for manually

More information

Material Master Archiving in Simple Method

Material Master Archiving in Simple Method Material Master Archiving in Simple Method Applies to: This article is applicable for SAP MM Module of SAP Version SAP 4.7 till SAP ECC 6.0 Summary This article describes a process called Material Master

More information

Process Chain Log Deletion

Process Chain Log Deletion Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage Summary Process chains are used in BW landscape to automate the loading sequence. There are multiple process

More information

MDM Syndicator: Custom Items Tab

MDM Syndicator: Custom Items Tab MDM Syndicator: Custom Items Tab Applies to: SAP NetWeaver Master Data Management (MDM) SP04, SP05 and SP06. For more information, visit the Master Data Management homepage. Summary This article provides

More information

Step by Step Guide How to Use BI Queries in Visual Composer

Step by Step Guide How to Use BI Queries in Visual Composer Step by Step Guide How to Use BI Queries in Visual Composer Applies to: SAP BW 7.x. For more information, visit the EBW homepage. Summary The objective of this Article is to explain step by step guide

More information

ecatt Part 6 System Data Container

ecatt Part 6 System Data Container \ ecatt Part 6 System Data Container Applies to: SAP 5.0 Summary In the Part I of ecatt series, we covered the introduction to ecatt, its prerequisites, features, when to go for SAP GUI mode recording

More information

Table Row Popup in Web Dynpro Component

Table Row Popup in Web Dynpro Component Table Row Popup in Web Dynpro Component Applies to Web Dynpro for ABAP, NW 7.0. For more information, visit the Web Dynpro ABAP homepage. Summary This document helps to create Table Rowpopin in a Web Dynpro

More information

How to use Boolean Operations in the Formula as Subsidiary for IF Condition

How to use Boolean Operations in the Formula as Subsidiary for IF Condition How to use Boolean Operations in the Formula as Subsidiary for IF Condition Applies to: SAP BW 3.5 & BI 7.0. For more information, visit the EDW homepage. Summary This paper will explain you how to use

More information

Easy Lookup in Process Integration 7.1

Easy Lookup in Process Integration 7.1 Easy Lookup in Process Integration 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management homepage. Summary Unlike previous version of PI (7.0) / XI (3.0,

More information

Step by Step Guide for PI Server Start and Stop Procedure

Step by Step Guide for PI Server Start and Stop Procedure Step by Step Guide for PI Server Start and Stop Procedure Applies to: This document applies to PI 7.0 and 7.1 and above. For more information, visit the Application Management homepage. Summary This document

More information

Displaying SAP Transaction as Internet Application in Portal

Displaying SAP Transaction as Internet Application in Portal Displaying SAP Transaction as Internet Application in Portal Summary This article explains how we can display SAP transaction as Internet Application Components (IAC) in portal to make it simpler for the

More information

Solution to the Challenges in Pivoting

Solution to the Challenges in Pivoting Solution to the Challenges in Pivoting Applies to: SAP NetWeaver 2004s/ MDM 5.5 SP 06. For more information, visit the Master Data Management homepage. Summary This article strives to describe the different

More information

Standalone BW System Refresh

Standalone BW System Refresh Applies to: Software Component: SAP_BW. For more information, visit the EDW homepage Summary BW relevant steps/scenarios during refresh of an existing non-productive BW system from productive BW system

More information

How to Configure User Status in mysap SRM

How to Configure User Status in mysap SRM How to Configure User Status in mysap SRM Applies to: mysap SRM 5.5 For more information, visit the Supplier Relationship Management homepage. Summary There had been quite a few instances in SRM Forum

More information

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Applies to: Open Text DocuLink for SAP Solutions 9.6.2. For more information, visit http://www.opentext.com Summary Open

More information

Maximizing Performance of IBM DB2 Backups

Maximizing Performance of IBM DB2 Backups Maximizing Performance of IBM DB2 Backups This IBM Redbooks Analytics Support Web Doc describes how to maximize the performance of IBM DB2 backups. Backing up a database is a critical part of any disaster

More information

BAPI Execution in offline Adobe Form

BAPI Execution in offline Adobe Form BAPI Execution in offline Adobe Form Applies to: Adobe form, Web dynpro JAVA, SAP ECC. For more information, visit the Web Dynpro Java homepage. Summary This article contains step by step description for

More information

Limitation in BAPI Scheduling Agreement (SA) Create or Change

Limitation in BAPI Scheduling Agreement (SA) Create or Change Limitation in BAPI Scheduling Agreement (SA) Create or Change Applies to: SAP ECC 6.0.For more information, visit the ABAP homepage. Summary The article describes the limitations in standard SAP BAPIs

More information

Step by Step Guide on How to Use Cell Definition in BEx Query

Step by Step Guide on How to Use Cell Definition in BEx Query Step by Step Guide on How to Use Cell Definition in BEx Query Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary This article explains the functionalities of Cell Definition

More information

Step by Step Method for File Archival in BW

Step by Step Method for File Archival in BW Step by Step Method for File Archival in BW Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage. Summary This document will give the reader step by step approach

More information

Creating Rules in Process Composer and using them in Process

Creating Rules in Process Composer and using them in Process Creating Rules in Process Composer and using them in Process Applies to: SAP NetWeaver Composition Environment 7.1 EHP-1 Version. For more information, visit the Composition homepage. Summary This article

More information

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Applies to: ECC 6.0 and BI 3.x and 7.0 For more information, visit the Business Intelligence homepage. Summary Many

More information

Step by Step Procedure for DSO Creation

Step by Step Procedure for DSO Creation Step by Step Procedure for DSO Creation Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary This article discusses about the step by step procedure for creating a DSO. Author:

More information

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability Duration: 4 Days Course Code: CL492G Overview: Gain a deeper understanding of the advanced recovery features of DB2 9 for Linux, UNIX,

More information

DB Partitioning & Compression

DB Partitioning & Compression Applies to: SAP BI 7, SQL Server 2005. For more information, visit the Business Intelligence homepage. Summary The purpose of this document is to outline a strategy for DB partitioning and compression

More information

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Applies to: SAP Business Intelligence 7.0. For more information, visit the Business Intelligence homepage. Summary This paper will take you through

More information

Creation of Key Figures with Higher Decimal Place Precision

Creation of Key Figures with Higher Decimal Place Precision Creation of Key Figures with Higher Decimal Place Precision Applies to: SAP Business Intelligence 7.0. Summary The objective of this Document is to explain how to Create Key figures with higher number

More information

Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling

Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling Changing the Source System Assignments in SAP BW Objects without Affecting the Data Modeling Applies to: SAP ECC 6.00 and SAP BW 7.0 releases. For more information, visit the Business Intelligence homepage.

More information

Data Flow During Different Update Mode in LO Cockpit

Data Flow During Different Update Mode in LO Cockpit Data Flow During Different Update Mode in LO Cockpit Applies to: SAP BW 3.x & SAP BI NetWeaver 2004s. For more information, visit the Business Intelligence homepage. Summary The objective of this Article

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

About ITAB Duplicate_Key (SAP lrsaods) Runtime Error

About ITAB Duplicate_Key (SAP lrsaods) Runtime Error About ITAB Duplicate_Key (SAP lrsaods) Runtime Error Applies to: SAP NetWeaver BW 3.x.For more information, visit the Business Intelligence homepage. Summary This article explains about the Runtime Error

More information

Internationalization in WebDynpro ABAP Applications

Internationalization in WebDynpro ABAP Applications Internationalization in WebDynpro ABAP Applications Applies to: SAP ECC 6.0. For more information, visit the Web Dynpro ABAP homepage. Summary The article describes the concept and procedure of developing

More information

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers A Step-by-Step Guide on IDoc-ALE between Two SAP Servers Applies to: All modules of SAP where data need to transfer from one SAP System to another SAP System using ALE IDoc Methodology. For more information,

More information

Material Listing and Exclusion

Material Listing and Exclusion Material Listing and Exclusion Applies to: Applies to ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary This document briefly explains how to restrict customers from

More information

Comparison Terms and SPL Check Logic

Comparison Terms and SPL Check Logic Comparison Terms and SPL Check Logic Applies to: SAP Business Objects Global Trade Services 7.2 and above. For more information, visit the Governance, Risk, and Compliance homepage. Summary This document

More information

Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008)

Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008) Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008) Applies to: SAP Crystal Dashboard and Presentation Design (Xcelsius 2008). For more information,

More information

Common Queries/Errors while working with Adobe Print PDF Forms

Common Queries/Errors while working with Adobe Print PDF Forms Common Queries/Errors while working with Adobe Print PDF Forms Applies to: SAP Adobe Forms (Print-based forms) Summary This document lists common queries and errors while working on Adobe Print Forms.

More information

DB2 Automatic Storage : The Future of Storage Management in DB2 for Linux, Unix and Windows

DB2 Automatic Storage : The Future of Storage Management in DB2 for Linux, Unix and Windows Session: E03 DB2 Automatic Storage : The Future of Storage Management in DB2 for Linux, Unix and Windows Matt Huras, Kelly Schlamb, IBM Monday, May 8, 2006 04:00 p.m. 05:10 p.m. Platform: DB2 for Linux

More information

Linking Documents with Web Templates

Linking Documents with Web Templates Linking Documents with Web Templates Summary This article explains certain ways to link documents with our Web-Templates which is a useful way of attaching information with a query. When the enduser runs

More information

Step By Step Procedure to Implement Soap to JDBC Scenario

Step By Step Procedure to Implement Soap to JDBC Scenario Step By Step Procedure to Implement Soap to JDBC Scenario Applies to This scenario is implemented in PI 7.0 server, service pack: 14. For more information, visit the SOA Management homepage. Summary This

More information

Add /Remove Links on ESS Home Page in Business Package 1.5

Add /Remove Links on ESS Home Page in Business Package 1.5 Add /Remove Links on ESS Home Page in Business Package 1.5 Applies to: SAP ECC EHP5. For more information, visit the Enterprise Resource Planning homepage. Summary Customizing links on ESS Overview page

More information

Developing Crystal Reports on SAP BW

Developing Crystal Reports on SAP BW Developing Crystal Reports on SAP BW Applies to: SAP BusinessObjects Crystal Reports. Summary This white paper explores various methods of accessing SAP BW data through Crystal Reports. Author: Arka Roy

More information

Generate Export Data Source

Generate Export Data Source Applies to: SAP BI 7.0 developers and support Users. For more information, visit the EDW homepage Summary This paper describes the data mart interface which makes it possible to update data from one data

More information

Data Extraction & DS Enhancement in SAP BI Step by Step

Data Extraction & DS Enhancement in SAP BI Step by Step Data Extraction & DS Enhancement in SAP BI Step by Step Applies to: SAP BI 7.0, SAP ABAP, For more information, visit the Business Intelligence homepage. Summary The objective of the article is to outline

More information

Validity Table in SAP BW/BI

Validity Table in SAP BW/BI Applies to: Applicable for SAP BI 3.x and above Summary To maintain the cubes non cumulative Key figures. Author: Om Ambulker Company: Cognizant, Pune Created on: 15 July 2011 Author Bio Om Ambulker is

More information

Server Connectivity and Data Load from Non SAP System to BW

Server Connectivity and Data Load from Non SAP System to BW Server Connectivity and Data Load from Non SAP System to BW Applies to: SAP NetWeaver 2004 and SAP NetWeaver 2004s. BW 3.5 & BI 7.0 For more information, visit the Business Intelligence homepage. Summary

More information

D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation

D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation Philip K. Gunning Gunning Technology Solutions, LLC 4 Oct 2006 11:00 a.m. 12:00 p.m. Repeated 5 Oct 2006, 10:30 a.m. 11:30 a.m. Platform:

More information

Web Dynpro ABAP: Dynamic Table

Web Dynpro ABAP: Dynamic Table Applies to: SAP ECC 6.0 Summary Normally ABAP consultants might be aware of how to create internal table dynamically. This article aims to help the consultants how to display the dynamic table using Web

More information

Graphical Mapping Technique in SAP NetWeaver Process Integration

Graphical Mapping Technique in SAP NetWeaver Process Integration Graphical Mapping Technique in SAP NetWeaver Process Integration Applies to: SAP NetWeaver XI/PI mappings. For more information, visit the Repository-based Modeling and Design homepage. Summary This guide

More information

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 Applies to: SAP NetWeaver Portal 7.3, NWDS 7.3. For more information, visit the Portal and Collaboration homepage. Summary This

More information

Extraction of Hierarchy into Flat File from R/3 and Loading in BW System

Extraction of Hierarchy into Flat File from R/3 and Loading in BW System Extraction of Hierarchy into Flat File from R/3 and Loading in BW System Applies to: This article applies to SAP R/3 (any version) and SAP B/W (any version).for more information, visit the Business Intelligence

More information

IBM DB2 9 Database Administrator for Linux UNIX and Windows Upgrade.

IBM DB2 9 Database Administrator for Linux UNIX and Windows Upgrade. IBM 000-736 DB2 9 Database Administrator for Linux UNIX and Windows Upgrade http://killexams.com/exam-detail/000-736 with three partitions in which part 1 will be placed in table space TBSP0, part 2 will

More information

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Applies to: SAP Business Object XI 3.1. For more information, visit the Business Objects homepage. Summary This article describes

More information

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts.

This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Applies to: SAP IS-Utilities 4.6 and above. Summary This article explains the steps to create a Move-in letter using Print Workbench and SAPScripts. Author: Company: Hiral M Dedhia L & T Infotech Ltd.

More information

Totals in Adobe forms

Totals in Adobe forms Applies to: Adobe Print forms designer version 8.0 in ECC6 For more information, visit the ABAP homepage. Summary This tutorial explains about Step-By-Step procedure to display subtotals and grand totals

More information

How to Default Variant Created for Report Developed In Report Painter/Writer

How to Default Variant Created for Report Developed In Report Painter/Writer How to Default Variant Created for Report Developed In Report Painter/Writer Applies to: Any business organization having reports developed using Report Painter/Report Writer. This is applicable from R/3

More information

Freely Programmed Help- Web Dynpro

Freely Programmed Help- Web Dynpro Freely Programmed Help- Web Dynpro Applies to: SAP ABAP Workbench that supports Web dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary In addition to the Dictionary Search

More information

IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs

IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs Day(s): 5 Course Code: CL442G Overview Learn how to tune for optimum the IBM DB2 9 for Linux, UNIX, and Windows relational

More information

Financial Statement Version into PDF Reader

Financial Statement Version into PDF Reader Financial Statement Version into PDF Reader Applies to: SAP release 4.7EE, ECC 5.0 and ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary: The objective of this article

More information

Information Broadcasting Part 3 Scheduling the First Report

Information Broadcasting Part 3 Scheduling the First Report Information Broadcasting Part 3 Scheduling the First Report Applies to: SAP BW 3.5 Summary This is part-3 article in the Information broadcasting (IB) series. Some things have already been discussed like

More information

Dynamically Enable / Disable Fields in Table Maintenance Generator

Dynamically Enable / Disable Fields in Table Maintenance Generator Dynamically Enable / Disable Fields in Table Maintenance Generator Applies to: SAP ABAP. For more information, visit the ABAP homepage. Summary This article demonstrates on how to Enable / Disable fields

More information

DB2 Performance Essentials

DB2 Performance Essentials DB2 Performance Essentials Philip K. Gunning Certified Advanced DB2 Expert Consultant, Lecturer, Author DISCLAIMER This material references numerous hardware and software products by their trade names.

More information

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Applies to: All versions of SAP. Summary This article will explain you the process of creating custom SU01 transaction code

More information

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Applies to: SAP BI 2004s or SAP BI 7.x. For more information visit the Enterprise Data Warehousing. Summary This article will explain about

More information

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services)

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary Sometimes business

More information

SAP QM-IDI Interface. SDN Contribution. Applies to: Summary. Author Bio. SAP QM Interfaces

SAP QM-IDI Interface. SDN Contribution. Applies to: Summary. Author Bio. SAP QM Interfaces SDN Contribution SAP QM-IDI Interface Applies to: SAP QM Interfaces Summary A description of the steps needed to activate a communication between Quality management and an external system using the QM-IDI

More information

SAP BI BO Unit/Currency Logic for Unknown Units Case Study

SAP BI BO Unit/Currency Logic for Unknown Units Case Study SAP BI BO Unit/Currency Logic for Unknown Units Case Study Applies to: This solution is implemented for a combination of SAP BO XI 3.1 SP2 FP 2.1 and SAP NW BI 7.0 EHP1 SP6 For more information, visit

More information

Step By Step: the Process of Selective Deletion from a DSO

Step By Step: the Process of Selective Deletion from a DSO Step By Step: the Process of Selective Deletion from a DSO Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage. Summary Selective deletion from DSO refers to deleting specific values

More information

The Top 10 DB2 LUW Mistakes

The Top 10 DB2 LUW Mistakes DB2Night Show The Top 10 DB2 LUW Mistakes P.O. Box 200, 5520 AE Eersel, The Netherlands Tel.:+31.497-530190, E-mail: kbrant@kbce.com Disclaimer and Trademarks Please be aware that the actual programming

More information

Data Inconsistency in the Cube and Aggregate

Data Inconsistency in the Cube and Aggregate Data Inconsistency in the Cube and Aggregate Applies to: SAP BW 3.5 & BI 7.0. For more information, visit the Business Intelligence homepage. Summary: A query, which reads data from aggregates, sometimes

More information

Setting up Connection between BW and R/3 for Data Load

Setting up Connection between BW and R/3 for Data Load Setting up Connection between BW and R/3 for Data Load Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document guides to establish connection between

More information

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Applies to: SAP BW 3.X & BI 7.0. For more information, visit the Business Intelligence homepage. Summary This article

More information

Printer Landscape Made Easy!!

Printer Landscape Made Easy!! Applies to SAP NetWeaver 2004s / SAP_BASIS 7.00. For more information, visit the Landscape Design and Architecture homepage. Summary This article deals with the step by step procedure to be carried out

More information

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Applies to: This Article is intended for all those ABAPers who are interested in creating SAP-SETS and use them in ABAP. For more information,

More information

How to Create View on Different Tables and Load Data through Generic Datasource based on that View

How to Create View on Different Tables and Load Data through Generic Datasource based on that View How to Create View on Different Tables and Load Data through Generic Datasource based on that View Applies to: SAP Business Intelligence (BI 7.0). For more information, visit the EDW homepage Summary This

More information

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Applies to: SAP Customer Relationship Management (SAP CRM) Release 7.0 SP 01, November 2008. SAP NetWeaver 7.0 including

More information

Web Dynpro: Coloring Table Conditionally

Web Dynpro: Coloring Table Conditionally Web Dynpro: Coloring Table Conditionally Applies to: SAP ECC 6.0. For more information, visit the Web Dynpro ABAP homepage. Summary This article is designed for the beginners in Web Dynpro who have ABAP

More information

Currency Translation in SAP BI Step by step Guide

Currency Translation in SAP BI Step by step Guide Currency Translation in SAP BI Step by step Guide Applies to: SAP BIW 3.5, SAP NetWeaver 7.0. For more information, visit the Business Intelligence homepage. Summary Currency translation allows you to

More information

Universal Worklist - Delta Pull Configuration

Universal Worklist - Delta Pull Configuration Universal Worklist - Delta Pull Configuration Applies to: This article applied to SAP Netweaver 7.01 SP06 Portal, SAP ECC 6.0 EHP4. For more information, visit the Portal and Collaboration homepage Summary

More information

Cut Over Activities Specific for LIS* Data Sources

Cut Over Activities Specific for LIS* Data Sources Cut Over Activities Specific for LIS* Data Sources Applies to: SAP BW 3.5/SAP BI 7.0. For more information visit the Enterprise Data Warehousing Homepage Summary The basic purpose of this document is to

More information

Purpose of Goods Receipt Message indicator in Purchase Orders

Purpose of Goods Receipt Message indicator in Purchase Orders Purpose of Goods Receipt Message indicator in Purchase Orders Applies to: This article is applicable for SAP MM Module of SAP for version SAP 4.7 till SAP ECC 6.O. For more information, visit the Supply

More information

List of Values in BusinessObjects Web Intelligence Prompts

List of Values in BusinessObjects Web Intelligence Prompts List of Values in BusinessObjects Web Intelligence Prompts Applies to: This solution is implemented for a combination of SAP NW BI 7.0 and SAP BO XI 3.1. For more information visit Business Objects Home

More information

How to Create Tables in MaxDB using SQL Studio

How to Create Tables in MaxDB using SQL Studio How to Create Tables in MaxDB using SQL Studio Wipro Technologies January 2005 Submitted By Kathirvel Balakrishnan SAP Practice Wipro Technologies www.wipro.com Page 1 of 11 Establishing a connection to

More information

Data Source Replication and Activation of Transfer Structures

Data Source Replication and Activation of Transfer Structures Data Source Replication and Activation of Transfer Structures Applies to: SAP Net Weaver BW. For more information, visit the EDW homepage Summary Detailed Documentation and practical implementation of

More information

ABAP HR: Standard Info Type Enhancement

ABAP HR: Standard Info Type Enhancement ABAP HR: Standard Info Type Enhancement Applies to: This document applies to SAP ECC 6.0, SAP Netweaver 2004s. For more information, visit the ABAP homepage. Summary This article contains the step by step

More information

Deploying BusinessObjects Explorer on Top of a SAP BI Query

Deploying BusinessObjects Explorer on Top of a SAP BI Query Deploying BusinessObjects Explorer on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, BusinessObjects Explorer 3.1. For more information, visit the Business Intelligence homepage. Summary The

More information

Step by Step Guide for SCM Server Start and Stop Procedure with LiveCache and Optimizer.

Step by Step Guide for SCM Server Start and Stop Procedure with LiveCache and Optimizer. Step by Step Guide for SCM Server Start and Stop Procedure with LiveCache and Optimizer. Applies to: This document applies to SCM 5.0 (NW 7) and above with LiveCache 7.6 (LCAPPS 2005_700, LiveCache Applications

More information

DB2 self-tuning memory manager log parser

DB2 self-tuning memory manager log parser Skill Level: Intermediate Askari Naqvi (askarin@ca.ibm.com) Software Development Analyst IBM Christian Garcia-Arellano (cmgarcia@ca.ibm.com) Software Developer IBM Haysam Alsayed (halsayed@ca.ibm.com)

More information

Config Tool Activities

Config Tool Activities Applies to: This Article applies to Enterprise Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This article describes a few of the activities in Config Tool. Author:

More information