Third-Party Software Support. Converting from SAS Table Server to a SQL Server Database
|
|
|
- Frank Hudson
- 10 years ago
- Views:
Transcription
1 Third-Party Software Support Converting from SAS Table Server to a SQL Server Database
2
3 Table of Contents Prerequisite Steps... 1 Database Migration Instructions for the WebSphere Application Server... 1 Step 1: Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server Step 2. Create the new target database Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in WebSphere Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database Step 7. Update the workflow to use the proper dialect Step 8. Populate the database with the tables that are needed for the SAS Content Server Step 9. Configure the SAS Content Server to use the new database as its repository Step 10. Verify that the new database is the new back-end data store Database Migration Instructions for the WebLogic Application Server Step 1: Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server Step 2. Create the new target database Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in WebLogic Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database Step 7. Update the workflow to use the proper dialect Step 8. Populate the database with the tables that are needed for the SAS Content Server Step 9. Configure the SAS Content Server to use the new database as its repository Step 10. Verify that the new database is the new back-end data store Database Migration Instructions for the JBoss Application Server Step 1. Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server Step 2. Create the new target database Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in JBoss Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services i
4 Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database Step 7. Update the workflow to use the proper dialect Step 8. Populate the database with the tables that are needed for the SAS Content Server Step 9. Configure the SAS Content Server to use the new database as its repository Step 10. Verify that the new database is the new back-end data store Appendix ii
5 This document provides instructions for updating an existing deployment of the third maintenance release for SAS 9.2 (TS2M3) that is configured to use SAS Table Server. These instructions explain how to migrate from SAS Table Server to a SQL Server database for use with the SAS Web Infrastructure Platform, SAS Shared Services, and the SAS Content Server. Prerequisite Steps Before you attempt the migration steps that are provided in this document, complete the following tasks: 1. Download the SAS WIP Database Importer (ftp://ftp.sas.com/techsup/download/blind/dbimporter92m3.zip). 2. Install a Java 6 Java Runtime Environment (JRE). 3. Add the JAVA_HOME environment variable to your system environment properties and set it to the value of the installation home directory of the Java 6 JRE. 4. Download Apache Ant or later. In your command window or in your system s environment properties, set the ANT_HOME environment variable to the value of its installation home directory. Note: Apache Ant is included in the download for the SAS WIP Database Importer that is mentioned above in Step Download the SQL Server Java Database Connectivity (JDBC) driver Java Archive (JAR) file and add it to the jars/sqlserver/ directory that is defined in the build.properties file within the download for the SAS WIP Database Importer. Database Migration Instructions for the WebSphere Application Server Step 1: Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server. Extract the data that is related to the Web Infrastructure Platform and Shared Services from SAS Table Server. To do this, use the SAS Migration Utility and package the data in a ZIP file. You use this file later to load the data into the new database. 1. Download the SAS Migration Utility (support.sas.com/demosdownloads/setupcat.jsp?cat=sas+migration+utility) and save it to a folder on your file system, such as C:\SMU. 2. Copy the contents of the smu.properties file that is located in the Appendix of this document and save it to a file on your system. 3. In the smu.properties file, update the values for the host name, port number, file path, user name, and password to match your environment. 4. Create the folder C:\SMU_packages on your file system. This is the location where the migration package will be created. The folder value should match the value for the SMU.Output.Dir property from the smu.properties file. 1
6 5. From the command prompt, change to the directory where the downloaded SAS Migration Utility is stored. 6. Submit the following command to create the migration package: smu92_32 -properties "path-to-your-smu.properties-file" -only biservmid Here is an example: smu92_32 -properties "C:\smu.properties" -only biservmid 7. Go to the C:\SMU_packages\your-environment\biservmid directory and locate the WIP_database.zip file, which contains the data from SAS Table Server. Step 2. Create the new target database. Install and configure the new target database if you do not already have one running. If needed, consult the database administrator at your site for assistance. Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services. Create the Web Infrastructure Platform and Shared Services tables in SQL Server. 1. Open the database_sqlserver.properties file from the SAS WIP Database Importer that you previously downloaded. Update the values for the following properties to match the values for your environment: database.host database.port database.name database.user.id database.user.password database.schema.pattern Note: The SQL Server database schema is the uppercased value of the log on ID (for example, ${DATABASE.USER.ID}). 2. Open the build.properties file from the SAS WIP Database Importer. Remove the comment delimiters from the following line: database.type=sqlserver 3. Update the values for the following properties to match the values for your environment: a. database.type specifies the type of the target database (for example, database.type=sqlserver). 2 b. sql.scripts.data.dir specifies the absolute path to the data directory in the SASHOME location, which contains the SQL scripts for the Web Infrastructure Platform that are used to create its database tables, load
7 its out-of-the-box data, and drop its database tables (for example, sql.scripts.data.dir=c:\\ Program Files\\SAS\\SASSharedServices\\9.2\\Config\\Deployment\\Data\\). c. database.zip.file specifies the absolute path to the v920m3 WIP_database.zip file from which records will be read and inserted into the target v920m3 database. The WIP_database.zip file is created by the SASSMU2 (for example, database.zip.file=c:\\public\\v920m3\dbimporter92m3 \\test\\sassmu2\\wip_database.zip). d. log4j.config.file specifies the Log4J configuration file which is used by the database importer for the Web Infrastructure Platform. Edit the log4j.properties file to specify the location of the log file (for example, log4j.config.file=file:///c:/public/v920m3/dbimporter92m3/ log4j.properties). e. java.maxmemory specifies the maximum amount of memory that can be used by the database importer for the Web Infrastructure Platform (Java application) (for example, java.maxmemory=2048m). 4. Open a command window and change to the SAS WIP Database Importer directory. Submit the createdatabasetables command to create the database tables for the Web Infrastructure Platform and Shared Services (for example, C:\DbImporter92m3> ant -f build.xml createdatabasetables). Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in WebSphere. The initial installation created a data source named SharedServices that references SAS Table Server. This step redirects that reference to a new data source that relies on SQL Server. Before you create the JDBC provider (named SharedServices JDBC Provider) and the JDBC data source (named SharedServices), enter the value SQLServerJAASAlias in the JAAS - J2C Authentication Data Alias text box. This will contain the user ID and password that are used to authenticate the connection to the SharedServices data source. This alias will be referenced when you are creating the new JDBC data source SharedServices. 1. Log on to WebSphere (for example, 2. Select Security Secure administration, applications, and infrastructure Java Authentication and Authorization Service J2C authentication data link. 3. Enter the value SQLServerJAASAlias in the JAAS - J2C Authentication Data Alias text box. 4. On the JAAS - J2C Authentication Data New page, enter the following information for these required fields: Alias: SQLServerJAASAlias User ID: user-id-for-connection-to-the-database Password: password-for-connection-to-the-database Note: WebSphere stores this password using its own encoding mechanism. 3
8 You must remove the existing SharedServices data source definition that is based on SAS Table Server information using the WebSphere Administration Console: 1. In the left pane, select Resources JDBC Data sources. 2. Select SharedServices and click Delete. 3. Click Save to store the change to the master configuration. Next, create a new SharedServices data source definition that is based on SQL Server. 1. Select the scope as follows: Node: node-name Server: SASServer1 2. Click New. 3. From the Create a New Data Source page, specify the following information: a. Step 1: Enter basic datasource information Datasource name: SharedServices JNDI name: sas/jdbc/sharedservices Click Next. b. Step 2: Select JDBC provider Select Create a new JDBC provider. Click Next. c. Step 2.1: Create new JDBC provider Database type=sql Server Provider type=microsoft SQL Server JDBC driver Implementation type=connection pool data source Name=SharedServices Microsoft SQL Server JDBC driver Description=SharedServices Microsoft SQL Server JDBC driver Click Next. d. Step 2.2: Enter database class path information Specify the directory location of the SQL Server JDBC JAR file. Click Next. e. Step 3: Enter database-specific properties Enter the following values for your SQL Server database: 4 Database name Port number Server name
9 Deselect Use this data source in container managed persistence (CMP). Click Next. f. Step 4: Set up security aliases Component-managed authentication alias: cell-name/sqlserverjaasalias Mapping-configuration alias: (none) Container-managed authentication alias: cell-name/sqlserverjaasalias Click Next. g. Step 5: Summary Review the following items: Scope cells:cell-name:nodes:node-name:servers:sasserver1 Data source name SharedServices JNDI name sas/jdbc/sharedservices JDBC provider name SharedServices Microsoft SQL Server JDBC driver Class path ${SQLServer_JDBC_DRIVER_PATH}/jar-name.jar ${MICROSOFT_JDBC_DRIVER_PATH} your-path-here/jar-name.jar ${MICROSOFT_JDBC_DRIVER_NATIVEPATH} your-path-here Implementation class name com.microsoft.sqlserver.jdbc. SQLServerConnectionPoolDataSource Database name your-database-name Port number your-port-number Server name your-server-name Use this data source in container managed persistence (CMP) false Component-managed authentication alias cell-name/sqlserverjaasalias Mapping-configuration alias (none) Container-managed authentication alias cell-name/sqlserverjaasalias 4. Click Finish to complete the new definition. Be sure to save the changes to the master configuration. Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services. The SAS installation and configuration process stores metadata about the properties for Shared Services. Updating the metadata is a manual change to the configuration. Therefore, the properties must be updated to accommodate possible future migrations. Here are the steps to update the metadata for the configuration properties: 1. Start SAS Management Console and log on as sasadm (or another fully privileged user ID). 2. Click the Folders tab and select System Applications SAS Shared Services. 3. Select the SharedServices9.2 folder. 4. In the right pane, right-click SharedServices9.2 and select Properties. 5. Click the Configuration tab. 6. Specify the following values for the SharedServices properties: 5
10 a. data.dbms.type: sqlserver b. dbms.biservmid.host: SQLServer-host-name c. dbms.biservmid.jdbc.dir: directory-path-containing-the-sqlserver-jdbcdriver-jar d. dbms.biservmid.name: SQLServer-database-name e. dbms.biservmid.port: SQLServer-port-number f. dbms.biservmid.userid: SQLServer-userID g. dbms.biservmid.validation.query: select 1 from dual 7. Click OK to exit the dialog box, and then exit SAS Management Console. Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database. Migrate the data that was exported from SAS Table Server to the new database. 1. Open a command window and navigate to the directory for the SAS WIP Database Importer. 2. Submit the importdatabase command to create the Web Infrastructure Platform and Shared Services database tables (for example, C:\DbImporter92m3> ant -f build.xml importdatabase). Step 7. Update the workflow to use the proper dialect. Update the workflow in order to use the new database. 1. Open the sas.shared9.2.ear file. Within this EAR file, open the workflow.properties file, which resides in the \sas.workflow.war\web-inf\ directory. 2. Add a comment delimiter to the following line: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect Here is an example: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect 3. Remove the comment delimiter from the following line: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect Here is an example: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect 6 4. Redeploy the sas.shared9.2.ear file.
11 Step 8. Populate the database with the tables that are needed for the SAS Content Server. The scripts that were needed to create the tables for the SAS Content Server were executed by the createdatabasetables command in the previous steps. Step 9. Configure the SAS Content Server to use the new database as its repository. This section discusses the steps that are needed to migrate the stored SAS Content Server data from SAS Table Server to a SQL Server database. It also details the steps that are needed to configure the SAS Content Server for the new SQL Server database. In order to migrate the data, you need to convert the SAS Content Server from using the SAS Table Server to using the file system and then to using SQL Server. Revert to the file system after you have configured the SAS Content Server for SAS Table Server. 1. Stop WebSphere. 2. Back up the following directory: SAS-configuration-directory/Lev1/AppData/SASContentServer 3. Create a new directory as follows: SAS-configuration-directory/Lev1/AppData/SASContentServer/temp 4. Copy the repository.xml file that resides in the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB INF/templates/ directory to the SAS-configurationdirectory/Lev1/AppData/SASContentServer/temp directory. 5. Change directory to SAS-configuration-directory/Lev1/Web/Utilities. Verify that your JCRCopyRepository.sh script has only one set of Java Naming and Directory Interface (JNDI) arguments for SAS Table Server. It should look similar to the following:!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.icons. contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas/config/Lev1/ Web/Applications/SASSharedServices9.2/JDBCDrivers/sas.nls.collator.jar:/sas/ config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts.jar:/ 7
12 sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts. nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. security.sspi.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \ -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jndiName=sas/jdbc/SharedServices \ -Dscs.jndi.jdbcUrl=jdbc:sastkts://your-host-name: 2172?constring=\(DSN=SharedServices\) \ -Dscs.jndi.driver=com.sas.tkts.TKTSDriver \ -Dscs.jndi.user=sastrust@saspw \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit 0 6. Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/Lev1/AppData /SASContentServer/Repository /SAS-configuration-directory/Lev1/Lev1 /AppData/SASContentServer/temp You are now using the file system as the temporary back end for the SAS Content Server. Next, configure the SAS Content Server to use SQL Server as the back-end database. 7. Change the name of the SAS Content Server repository from Repository to RepositoryTS. For a Windows operating environment, use the following command: move C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\RepositoryTS For UNIX and z/os operating environments, use the following command: mv SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository SAS-configuration-directory/Lev1/AppData/SASContentServer/RepositoryTS 8. Create a new directory called Repository in the same location. Under Windows, use the following command: mkdir C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository Under UNIX and z/os, use the following command: mkdir SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository 9. Copy the repository.sqlserver.xml file from the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB-INF/templates directory to the /SAS-configurationdirectory/Lev1/AppData/SASContentServer/Repository directory that was created in the 8
13 preceding step. Rename the file to repository.xml. The following example shows syntax for a UNIX environment: cp /SASHOME/SASWebInfrastructurePlatform/9.2/Static/wars/sas.svcs.scs/WEB- INF/templates/repository.SQLServer.xml Repository/repository.xml 10. Obtain the values for the database name, host name, port number, user ID, and password from the web application server. On the IBM WebSphere application server, the values are available from the WebSphere Administration Console. In the console, select Resources JDBC Data Sources Custom Properties. 11. Change directory to /SAS-configuration-directory/Lev1/Web/Utilities. Ensure that the SQL Server driver is included in the DRIVER list in your JCRCopyRepository.sh script. Then update the JNDI values to the values that are needed to connect to the SQL Server database. Your script should look similar the following:!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.icons. contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas/config/Lev1/ Web/Applications/SASSharedServices9.2/JDBCDrivers/sas.nls.collator.jar:/sas/ config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts. nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. security.sspi.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar:/your-directory/yourdriver-name.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \ -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jndiName=sas/jdbc/SharedServices \ -Dscs.jndi.jdbcUrl= jdbc:sqlserver://host1433;databasename=sharedservices;selectmethod=cursor\ -Dscs.jndi.driver= com.microsoft.sqlserver.jdbc.sqlserverdriver \ -Dscs.jndi.user=your-id \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit 0 9
14 12. Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/AppData /SASContentServer/temp /SAS-configuration-directory/Lev1/AppData /SASContentServer/Repository 13. Restart WebSphere. Step 10. Verify that the new database is the new back-end data store. To verify that the SAS Content Server is using SQL Server, save a new report in SAS Web Report Studio or add content from SAS Management Console to the SAS Content Server. The size of your tables will increase if the SAS Content Server is properly configured to use SQL Server. To verify that the Web Infrastructure Platform and Shared Services are using SQL Server, save a new alert in the SAS BI Dashboard. The size of your tables will increase if the Web Infrastructure Platform and Shared Services are properly configured to use SQL Server. Database Migration Instructions for the WebLogic Application Server Step 1: Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server. Extract the data that is related to the Web Infrastructure Platform and Shared Services from SAS Table Server. To do this, use the SAS Migration Utility and package the data in a ZIP file. You use this file later to load the data into the new database. 1. Download the SAS Migration Utility (support.sas.com/demosdownloads/setupcat.jsp?cat=sas+migration+utility) and save it to a folder on your file system, such as C:\SMU. 2. Copy the contents of the smu.properties file that is located in the Appendix of this document and save it to a file on your system. 3. In the smu.properties file, update the values for the host name, port number, file path, user name, and password to match your environment. 4. Create the folder C:\SMU_packages on your file system. This is the location where the migration package will be created. The folder value should match the value for the SMU.Output.Dir property in the smu.properties file. 5. From the command prompt, change to the directory where the downloaded SAS Migration Utility is stored. 6. Submit the following command to create the migration package: smu92_32 -properties "path-to-your-smu.properties-file" -only biservmid Here is an example: 10 smu92_32 -properties "C:\smu.properties" -only biservmid
15 7. Go to the C:\SMU_packages\your-environment\biservmid directory and locate the WIP_database.zip file, which contains the data from SAS Table Server. Step 2. Create the new target database. Install and configure the new target database if you do not already have one running. If needed, consult the database administrator at your site for assistance. Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services. 1. Open the database_sqlserver.properties file from the SAS WIP Database Importer that you previously downloaded. Update the values for the following properties to match the values for your environment: database.host database.port database.name database.user.id database.user.password database.schema.pattern Note: The SQL Server database schema is the uppercased value of the log on ID (for example, ${DATABASE.USER.ID}). 2. Open the build.properties file from the SAS WIP Database Importer. Remove the comment delimiters from the following line: database.type=sqlserver 3. Update the values for the following properties to match the values for your environment: a. database.type specifies the type of the target database (for example, database.type=sqlserver. b. sql.scripts.data.dir specifies the absolute path to the data directory in the SASHOME location, which contains the SQL scripts for the Web Infrastructure Platform that are used to create its database tables, load its out-of-the-box data, and drop its database tables (for example, sql.scripts.data.dir=c:\\ Program Files\\SAS\\SASSharedServices\\9.2\\Config\\Deployment\\Data\\). c. database.zip.file specifies the absolute path to the v920m3 WIP_database.zip file from which records will be read and inserted into the target v920m3 database. The WIP_database.zip file is created by the SASSMU2 (for example, database.zip.file=c:\\public\\v920m3\dbimporter92m3 \\test\\sassmu2\\wip_database.zip). d. log4j.config.file specifies the Log4J configuration file which is used by the database importer for the Web Infrastructure Platform. Edit the log4j.properties file to specify the location of the log file (for example, log4j.config.file=file:///c:/public/v920m3/dbimporter92m3/log4j. properties). 11
16 e. java.maxmemory specifies the maximum amount of memory that can be used by the database importer for the Web Infrastructure Platform (Java application) (for example, java.maxmemory=2048m). 4. Open a command window and change to the SAS WIP Database Importer directory. Submit the createdatabasetables command to create the database tables for the Web Infrastructure Platform and Shared Services (for example, C:\DbImporter92m3> ant -f build.xml createdatabasetables). Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in WebLogic. The initial installation created a data source named SharedServices that references SAS Table Server. This step redirects that reference to a new data source that relies on SQL Server. Update the values for the database name, host name, port number, user ID, and password for the SQL Server database Connection Pool in the WebLogic administrative console. On the SQL Server WebLogic application server, the values are available from the WebLogic Administration Console. Select SASDomain Services JDBC Data Sources SharedServices Configuration and then click the Connection Pool tab. Update the values for the new SQL Server database. Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services. The SAS installation and configuration process stores metadata about the properties for Shared Services. Updating the metadata is a manual change to the configuration. Therefore, the properties must be updated to accommodate possible future migrations. Here are the steps to update the metadata for the configuration properties: 1. Start SAS Management Console and log on as sasadm (or another fully privileged user ID). 2. Click the Folders tab and select System Applications SAS Shared Services. 3. Select the SharedServices9.2 folder. 4. In the right pane, right-click SharedServices9.2 and select Properties. 5. Click the Configuration tab. 6. Specify the following values for the SharedServices properties: a. data.dbms.type: sqlserver b. dbms.biservmid.host: SQLServer-host-name c. dbms.biservmid.jdbc.dir: directory-path-containing-the-sqlserver-jdbcdriver-jar d. dbms.biservmid.name: SQLServer-database-name e. dbms.biservmid.port: SQLServer-port-number 12
17 f. dbms.biservmid.userid: SQLServer-userID g. dbms.biservmid.validation.query: select 1 from dual 7. Click OK to exit the dialog box, and then exit SAS Management Console. Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database. Migrate the data that was exported from SAS Table Server to the new database. 1. Open a command window and navigate to the directory for the SAS WIP Database Importer. 2. Submit the importdatabase command to create the Web Infrastructure Platform and Shared Services database tables (for example, C:\DbImporter92m3> ant -f build.xml importdatabase). Step 7. Update the workflow to use the proper dialect. Using the following steps, update the workflow to use the new database. 1. Open the sas.shared9.2.ear file. Then, within this EAR file, open the workflow.properties file, which resides in the \sas.workflow.war\web-inf\ directory. 2. Add a comment delimiter to the following line: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect Here is an example: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect 3. Remove the comment delimiter from the following line: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect Here is an example: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect 4. Redeploy the sas.shared9.2.ear file. Step 8. Populate the database with the tables that are needed for the SAS Content Server. The scripts that were needed to create the tables for the SAS Content Server were executed by the createdatabasetables command in the previous steps. 13
18 Step 9. Configure the SAS Content Server to use the new database as its repository. This section discusses the steps that are needed to migrate the stored SAS Content Server data from SAS Table Server to a SQL Server database. It also details the steps that are needed to configure the SAS Content Server for the new SQL Server database. In order to migrate the data, you need to convert the SAS Content Server from using SAS Table Server to using the file system and then to using SQL Server. Revert to the file system after you have configured the SAS Content Server for SAS Table Server. 1. Stop the WebLogic process. 2. Back up the following directory: SAS-configuration-directory/Lev1/AppData/SASContentServer 3. Create a new directory as follows: SAS-configuration-directory/Lev1/AppData/SASContentServer/temp 4. Copy the repository.xml file that resides in the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB INF/templates/ directory to the SAS-configurationdirectory/Lev1/AppData/SASContentServer/temp directory. 5. Change directory to SAS-configuration-directory/Lev1/Web/Utilities. Verify that your JCRCopyRepository.sh script has only one set of JNDI arguments for SAS Table Server. It should look similar to the following: 14!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.icons. contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas/config/Lev1/ Web/Applications/SASSharedServices9.2/JDBCDrivers/sas.nls.collator.jar:/sas/ config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts. nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. security.sspi.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \
19 -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jndiName=sas/jdbc/SharedServices \ -Dscs.jndi.jdbcUrl=jdbc:sastkts://your-host-name: 2172?constring=\(DSN=SharedServices\) \ -Dscs.jndi.driver=com.sas.tkts.TKTSDriver \ -Dscs.jndi.user=sastrust@saspw \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit 0 6. Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/Lev1/AppData /SASContentServer/Repository /SAS-configuration-directory/Lev1/Lev1 /AppData/SASContentServer/temp You are now using the file system as the temporary back end for the SAS Content Server. Next, configure the SAS Content Server to use SQL Server as the back-end database. 7. Change the name of the SAS Content Server repository from Repository to RepositoryTS. For a Windows operating environment, use the following command: move C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\RepositoryTS For UNIX and z/os operating environments, use the following command: mv SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository SAS-configuration-directory/Lev1/AppData/SASContentServer/RepositoryTS 8. Create a new directory called Repository in the same location. Under Windows, use the following command: mkdir C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository Under UNIX and z/os, use the following command: mkdir SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository 9. Copy the repository.sqlserver.xml file from the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB-INF/templates directory to the /SAS-configurationdirectory/Lev1/AppData/SASContentServer/Repository directory that was created in the previous step. Rename the file to repository.xml. The following example shows syntax for a UNIX environment: cp /SASHOME/SASWebInfrastructurePlatform/9.2/Static/wars/sas.svcs.scs/WEB- INF/templates/repository.sqlserver.xml Repository/repository.xml 10. Obtain the values for the database name, host name, port number, user ID, and password from the web application server. 15
20 On the SQL Server WebLogic application server, the values are available from the WebLogic Administration Console. Select SASDomain Services JDBC Data Sources SharedServices Configuration and then click the Connection Pool tab access the values. 11. Change directory to /SAS-configuration-directory/Lev1/Web/Utilities. Ensure that the SQL Server driver is included in the DRIVER list in your JCRCopyRepository.sh script. Then update the JNDI values to the values that are needed to connect to the SQL Server database. Your script should look similar the following:!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.icons. contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas/config/Lev1/ Web/Applications/SASSharedServices9.2/JDBCDrivers/sas.nls.collator.jar:/sas/ config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts.jar:/ sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts. nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. security.sspi.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar:/your-directory/yourdriver-name.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \ -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jdbcUrl=jdbc:SQLServer://host:5432/SharedServices\ -Dscs.jndi.driver=com.SQLServer.jdbc.Driver \ -Dscs.jndi.user=your-id \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/AppData /SASContentServer/temp /SAS-configuration-directory/Lev1/AppData /SASContentServer/Repository Restart WebLogic.
21 Step 10. Verify that the new database is the new back-end data store. To verify that the SAS Content Server is using SQL Server, save a new report in SAS Web Report Studio or add content from SAS Management Console to the SAS Content Server. The size of your tables will increase if the SAS Content Server is properly configured to use SQL Server. To verify that the Web Infrastructure Platform and Shared Services are using SQL Server, save a new alert in the SAS BI Dashboard. The size of your tables will increase if the Web Infrastructure Platform and Shared Services are properly configured to use SQL Server. Database Migration Instructions for the JBoss Application Server Step 1. Extract the Web Infrastructure Platform and Shared Services data from SAS Table Server. Extract the data that is related to the Web Infrastructure Platform and Shared Services from SAS Table Server. To do this, use the SAS Migration Utility and package the data in a ZIP file. You use this file later to load the data into the new database. 1. Download the SAS Migration Utility (support.sas.com/demosdownloads/setupcat.jsp?cat=sas+migration+utility) and save it to a folder on your file system, such as C:\SMU. 2. Copy the contents of the smu.properties file that is located in the Appendix of this document and save it to a file on your system. 3. In the smu.properties file, update the values for the host name, port number, file path, user name, and password to match your environment. 4. Create the folder C:\SMU_packages on your file system. This is the location where the migration package will be created. The folder value should match the value for the SMU.Output.Dir property from the smu.properties file. 5. From the command prompt, change to the directory where the downloaded SAS Migration Utility is stored. 6. Submit the following command to create the migration package: smu92_32 -properties "path-to-your-smu.properties-file" -only biservmid Here is an example: smu92_32 -properties "C:\smu.properties" -only biservmid 7. Go to the C:\SMU_packages\your-environment\biservmid directory and locate the WIP_database.zip file, which contains the data from SAS Table Server. 17
22 Step 2. Create the new target database. Install and configure the new target database if you do not already have one running. If needed, consult the database administrator at your site for assistance. Step 3. Populate the database with the tables that are needed for the Web Infrastructure Platform and Shared Services. Create the Web Infrastructure Platform and Shared Services tables in SQL Server. 1. Open the database_sqlserver.properties file from the SAS WIP Database Importer that you previously downloaded. Update the values for the following properties to match the values for your environment: database.host database.port database.name database.user.id database.user.password database.schema.pattern Note: The SQL Server database schema is the uppercased value of the log on ID (for example, ${DATABASE.USER.ID}). 2. Open the build.properties file from the SAS WIP Database Importer. Remove the comment delimiters from the following line: database.type=sqlserver 3. Update the values for the following properties to match the values for your environment: a. database.type specifies the type of the target database (for example, database.type=sqlserver). b. sql.scripts.data.dir specifies the absolute path to the data directory in the SASHOME location, which contains the SQL scripts for the Web Infrastructure Platform that are used to create its database tables, load its out-of-the-box data, and drop its database tables (for example, sql.scripts.data.dir=c:\\ Program Files\\SAS\\SASSharedServices\\9.2\\Config\\Deployment\\Data\\). c. database.zip.file specifies the absolute path to the v920m3 WIP_database.zip file from which records will be read and inserted into the target v920m3 database. The WIP_database.zip file is created by the SASSMU2 (for example, database.zip.file=c:\\public\\v920m3\dbimporter92m3 \\test\\sassmu2\\wip_database.zip). d. log4j.config.file specifies the Log4J configuration file which is used by the database importer for the Web Infrastructure Platform. Edit the log4j.properties file to specify the location of the log file (for example, log4j.config.file=file:///c:/public/v920m3/dbimporter92m3/ log4j.properties). 18
23 e. java.maxmemory specifies the maximum amount of memory that can be used by the database importer for the Web Infrastructure Platform (Java application) (for example, java.maxmemory=2048m). 4. Open a command window and change to the SAS WIP Database Importer directory. Submit the createdatabasetables command to create the database tables for SAS the Web Infrastructure Platform and Shared Services (for example, C:\DbImporter92m3> ant -f build.xml createdatabasetables). Step 4. Update the Web Infrastructure Platform and Shared Services data source that is defined in JBoss. The initial installation created a data source named SharedServices that referenced SAS Table Server. This step redirects that reference to a new data source that relies on SQL Server. 1. Copy the SQL Server JDBC driver JAR file ojdbc6.jar to the /JBoss-home/server/SASServer1/lib directory. 2. Open the SharedServices ds.xml file that is located in the /JBoss-home/server/SASServer1 /deploy/ directory. Update the values in the file to point to the SQL Server database, as shown in the following example: <?xml version="1.0" encoding="utf-8"?> <datasource> <local-tx-datasource> <driver-class>com.microsoft.sqlserver.jdbc.sqlserverdriver</driver-class> <jndi-name>sas/jdbc/sharedservices</jndi-name> <connection-property name="stmtpooling">0</connection-property> <connection-property name="constring">(dsn=sharedservices)</connection-property> <connection-url>jdbc:sqlserver://host1433;databasename= SharedServices;SelectMethod=cursor</connection-url> <user-name>your-user-name</user-name> <password>your-password</password> </local-tx-datasource> </datasource> Step 5. Update the configuration properties for the Web Infrastructure Platform and Shared Services. The SAS installation and configuration process stores metadata about the properties for Shared Services. Updating the metadata is a manual change to the configuration. Therefore, the properties must be updated to accommodate for possible future migrations. Here are the steps to update the metadata for the configuration properties: 1. Start SAS Management Console and log on as sasadm (or another fully privileged user ID). 2. Click the Folders tab and select System Applications SAS Shared Services. 3. Select the SharedServices9.2 folder. 4. In the right pane, right-click SharedServices9.2 and select Properties. 5. Click the Configuration tab. 6. Specify the following values for the SharedServices properties: 19
24 a. data.dbms.type: sqlserver b. dbms.biservmid.host: SQLServer-host-name c. dbms.biservmid.jdbc.dir: directory-path-containing-the-sqlserver-jdbcdriver-jar d. dbms.biservmid.name: SQLServer-database-name e. dbms.biservmid.port: SQLServer-port-number f. dbms.biservmid.userid: SQLServer-userID g. dbms.biservmid.validation.query: select 1 from dual 7. Click OK to exit the dialog box, and then exit SAS Management Console. Step 6. Migrate the Web Infrastructure Platform and Shared Services from SAS Table Server to the new database. Migrate the data that was exported from SAS Table Server to the new database. 1. Open a command window and navigate to the directory for the SAS WIP Database Importer. 2. Submit the importdatabase command to create the Web Infrastructure Platform and Shared Services database tables (for example, C:\DbImporter92m3> ant -f build.xml importdatabase). Step 7. Update the workflow to use the proper dialect. Update the workflow in order to use the new database. 1. Open the sas.shared9.2.ear file. Within this EAR file open workflow.properties, which resides in the \sas.workflow.war\web-inf\ directory. 2. Add a comment delimiter to the following line: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect Here is an example: workflow.hibernate.dialect=com.sas.workflow.engine.services.dao. TSFirebirdDialect 3. Remove the comment delimiter from the following line: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect Here is an example: workflow.hibernate.dialect=org.hibernate.dialect.sqlserverdialect 4. Redeploy the sas.shared9.2.ear file. 20
25 Step 8. Populate the database with the tables that are needed for the SAS Content Server. The scripts that were needed to create the tables for the SAS Content Server were executed by the createdatabasetables command in the previous steps. Step 9. Configure the SAS Content Server to use the new database as its repository. This section discusses the steps that are needed to migrate the stored SAS Content Server data from SAS Table Server to a SQL Server database. It also details the steps that are needed to configure the SAS Content Server for the new SQL Server database. In order to migrate the data, you need to convert the SAS Content Server from using SAS Table Server to using the file system and then to using SQL Server. Revert to the file system after you have configured the SAS Content Server for SAS Table Server. 1. Stop the JBoss process. 2. Back up the following directory: SAS-configuration-directory/Lev1/AppData/SASContentServer 3. Create a new directory as follows: SAS-configuration-directory/Lev1/AppData/SASContentServer/temp 4. Copy the repository.xml file that resides in the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB INF/templates/ directory to the SAS-configurationdirectory/Lev1/AppData/SASContentServer/temp directory. 5. Change directory to SAS-configuration-directory/Lev1/Web/Utilities. Verify that your JCRCopyRepository.sh script has only one set of JNDI arguments for SAS Table Server. It should look similar to the following:!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar: /sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.icons. contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/ sas.icons.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas/config/Lev1/ Web/Applications/SASSharedServices9.2/JDBCDrivers/sas.nls.collator.jar:/sas/ config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts.jar:/ 21
26 sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda.tkts. nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. security.sspi.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \ -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jndiName=sas/jdbc/SharedServices \ -Dscs.jndi.jdbcUrl=jdbc:sastkts://your-host-name: 2172?constring=\(DSN=SharedServices\) \ -Dscs.jndi.driver=com.sas.tkts.TKTSDriver \ -Dscs.jndi.user=sastrust@saspw \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit 0 6. Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/Lev1/AppData /SASContentServer/Repository /SAS-configuration-directory/Lev1/Lev1 /AppData/SASContentServer/temp You are now using the file system as the temporary back end for the SAS Content Server. Next, configure the SAS Content Server to use SQL Server as the back-end database. 7. Change the name of the SAS Content Server repository from Repository to RepositoryTS. For a Windows operating environment, use the following command: move C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\RepositoryTS For UNIX and z/os operating environments, use the following command: mv SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository SAS-configuration-directory/Lev1/AppData/SASContentServer/RepositoryTS 8. Create a new directory called Repository in the same location. Under Windows, use the following command: mkdir C:\SAS-configuration-directory\Lev1\AppData\SASContentServer\Repository Under UNIX and z/os, use the following command: mkdir SAS-configuration-directory/Lev1/AppData/SASContentServer/Repository 9. Copy the repository.sqlserver.xml file from the SASHOME/SASWebInfrastructurePlatform/9.2/ Static/wars/sas.svcs.scs/WEB-INF/templates directory to the /SAS-configurationdirectory/Lev1/AppData/SASContentServer/Repository directory that was created in the 22
27 preceding step. Rename the file to repository.xml. The following example shows syntax for a UNIX environment: cp /SASHOME/SASWebInfrastructurePlatform/9.2/Static/wars/sas.svcs.scs/WEB- INF/templates/repository.SQLServer.xml Repository/repository.xml 10. Open the repository.xml file and search for the following parameter: <param name="url" value="sas/jdbc/sharedservices"/> Modify that parameter as follows: <param name="url" value="java:sas/jdbc/sharedservices"/> This value appears six times within the repository.xml file. You must modify all six instances of the parameter. Note: If a workspace.xml file exists in the /SAS-configuration-directory/Lev1/AppData /SASContentServer/Repository/workspaces/default directory on the middle-tier server, it will contain two instances of the same parameter. You must also modify those two instances with the value <param name="url" value="java:sas/jdbc/sharedservices"/>. 11. Obtain the values for the database name, host name, port number, user ID, and password from the web application server. On the JBoss web application server, these values are located in the SharedServices ds.xml file that resides in the SAS-configuration-directory/Lev1/Web/Common/jboss directory. 12. Change directory to /SAS-configuration-directory/Lev1/Web/Utilities. Ensure that the SQL Server driver is included in the DRIVER list in your JCRCopyRepository.sh script. Then update the JNDI values to the values that are needed to connect to the SQL Server database. Your script should look similar the following:!/bin/sh -p JCRCopyRepository.sh. `dirname $0`/../../level_env.sh LAUNCHERJAR=$SASVJR_HOME/eclipse/plugins/sas.launcher.jar UTILITIESDIR=$LEVEL_ROOT/Web/Utilities PICKLISTS=/sas/SASWebInfrastructurePlatform/9.2/Picklists/wars/sas.svcs.scs/ picklist DRIVER=/sas/config/Lev1/Web/Applications/SASSharedServices9.2/JDBCDrivers/icu4j. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/log4j.jar :/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.jar :/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.core.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. icons.contents.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.icons.jar:/sas/config/Lev1/Web/Applications/SASSharedServices9.2 /JDBCDrivers/sas.icons.nls.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.jar:/sas/config/Lev1/Web/ Applications/SASSharedServices9.2/JDBCDrivers/sas.intrnet.javatools.nls.jar:/sas /config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.nls.collator. jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas.oda. tkts.jar:/sas/config/lev1/web/applications/sassharedservices9.2/jdbcdrivers/sas. oda.tkts.nls.jar:/sas/config/lev1/web/applications/sassharedservices9.2/ JDBCDrivers/sas.security.sspi.jar:/sas/config/Lev1/Web/Applications/ SASSharedServices9.2/JDBCDrivers/sas.svc.connection.jar:/sas/config/Lev1/Web/ 23
28 Applications/SASSharedServices9.2/JDBCDrivers/sas.svc.connection.nls.jar:/yourdirectory/your-driver-name.jar CLASSPATH=$UTILITIESDIR:$LAUNCHERJAR "$JAVA_JRE_COMMAND" \ -classpath "$CLASSPATH" \ -Djava.system.class.loader=com.sas.app.AppClassLoader \ -Dsas.app.launch.config="$PICKLISTS" \ -Dsas.app.repository.path="$SASVJR_REPOSITORYPATH" \ -Dsas.app.class.path="$UTILITIESDIR:$DRIVER" \ -Djava.security.auth.login.config=../Common/login.config \ -Xmx256m \ -Dscs.jndi.jndiName=sas/jdbc/SharedServices \ -Dscs.jndi.jdbcUrl= jdbc:sqlserver://host1433;databasename=sharedservices;selectmethod=cursor\ -Dscs.jndi.driver=com.microsoft.SQLServer.jdbc.SQLServerDriver \ -Dscs.jndi.user=your-id \ -Dscs.jndi.pwd=your-password \ org.apache.jackrabbit.core.jcrcopyrepository $1 $2 exit Execute the following command:./jcrcopyrepository.sh /SAS-configuration-directory/Lev1/AppData /SASContentServer/temp /SAS-configuration-directory/Lev1/AppData /SASContentServer/Repository 14. Restart JBoss. Step 10. Verify that the new database is the new back-end data store. To verify that the SAS Content Server is using SQL Server, save a new report in SAS Web Report Studio or add content to the SAS Content Server from SAS Management Console. The size of your tables will increase if the SAS Content Server is properly configured to use SQL Server. To verify that the Web Infrastructure Platform and Shared Services are using SQL Server, save a new alert in the SAS BI Dashboard. The size of your tables will increase if the Web Infrastructure Platform and Shared Services are properly configured to use SQL Server. 24
29 Appendix This appendix contains the contents of the smu.properties file. The configuration directory from which the migration utility will read. This should typically be the "Lev" directory. It will usually contain SASMain, Data, and Product directories. SMU.config.dir=C:\\SAS\\EntBIServer\\Lev1 The directory that contains the SAS executable. SMU.SASROOT=C:\\Program Files\\SAS\\SASFoundation\\9.2 The directory that is the installation base of the SAS product set. SMU.SASHOME=C:\\Program Files\\SAS The metadata server host. This must be defined for the migration utility to run successfully. The port defaults to If a different metadata port was used, this must be set to the correct port. SMU.host.metadata=your-metadata-server-host-name SMU.port.metadata=8561 The metadata server administrative user and password. This must be an unrestricted user so that all data can be read for metadata extraction. The password should be encoded using the {sas001} method. Use PROC PWENCODE to get the encoded password. SMU.user=sasadm@saspw SMU.password=your-password A workspace profile is acceptable as an alternative to providing the host, port, user, and password (if the password is in the profile). This can be just the profile name, which will look in the default location and the current working directory, or a full path to the profile. 25
30 Converting from SAS Table Server to a SQL Server Database SMU.profile=my-server The migration package output directory. It will be created if this is being run against the metadata server tier. Otherwise, it should already contain the results from your metadata server tier run and any other upstream tiers. The results from every tier of your deployment should be included in the same migration package. SMU.Output.Dir=C:\\SMU_packages If the SMU is being run on a system with multiple network interfaces, or a dynamic host name, this property might need to be set to get the "right" name that is used for directory naming, and so on. SMU.localhost=my.localhost.com Specify the user ID and password which will be used to open a connection to the Shared Services database. If the database for shared services is the SASTable Server, supply the credentials for the SAS Trusted User. If the database for shared services is not a SAS database, supply the credentials that are appropriate for that database. SMU.webinfpltfm.dbms.userid=sastrust@saspw SMU.webinfpltfm.dbms.password=your-password In order for the SAS Content Server content repository to be copied, the content server web application has to be stopped. This property allows the migration utility to pause and prompt the user to stop the application, copy the repository, and then pause and prompt the user to restart the application. If this is false, and a lock on the repository is detected by the analysis, it will put an error message in the report and not attempt the copy. SMU.scs.allow.sync=true These properties are used for SAS Content Servers that have had their repositories customized by the end user. If you don't understand these, chances are you don't need them. scs.jndi.jndiname= scs.jndi.driver= scs.jndi.jdbcurl= scs.jndi.user= scs.jndi.pwd=
31 scs.jndi.jdbcdir= Specifies non-standard locations for SAS application data sets and catalogs for the migration utility to move. The utility packages these directories in the levconfig output folder in the "userdirs" subdirectory. List absolute paths or paths relative to the SAS configuration directory. Separate multiple paths with a comma. levconfig.user.dirs=my_sas_solution_data_sets,my_sas_solution_catalogs, C:\my_data\my_SAS_solution_misc This property should be set to true, if SMU will be run multiple times on the same machine because multiple tiers of SAS 9.2 are deployed on the same machine. SMU.isMultipleTierMachine=true SMU.SAS.version=9.2 27
32 SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are trademarks of their respective companies. Copyright 2012 SAS Institute Inc., Cary, NC, USA. All rights reserved.
Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy
Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and
Configuring the SQL Server Data Source on WebSphere for LiveCycle Form Manager and LiveCycle Workflow
Adobe Enterprise & Developer Support Knowledge Article ID: c4712 bc Configuring the SQL Server Data Source on WebSphere for This article describes how to configure a Microsoft SQL Server data source on
Configuring IBM WebSphere Application Server 6.1 to Support SAS 9.2 Web Applications
Configuration Guide Configuring IBM WebSphere Application Server 6.1 to Support SAS 9.2 Web Applications This document is for SAS installers who want to configure IBM WebSphere Application Server for use
Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811. in Microsoft Windows Operating Environments
Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811 in Microsoft Windows Operating Environments Table of Contents Introduction... 1 Step 1: Create a SAS Software Depot..... 1 Step 2: Prepare
Installation Guide. Version 2.1. on Oracle Java Cloud Service 2015-06-19
Installation Guide on Oracle Java Cloud Service Version 2.1 2015-06-19 1 Preface This installation guide provides instructions for installing FlexDeploy on the Oracle Java Cloud Service. For on-premise
Install guide for Websphere 7.0
DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,
Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications
Configuration Guide Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications This document describes how to configure Web authentication with BEA WebLogic for the SAS Web applications.
CONFIGURATION AND APPLICATIONS DEPLOYMENT IN WEBSPHERE 6.1
CONFIGURATION AND APPLICATIONS DEPLOYMENT IN WEBSPHERE 6.1 BUSINESS LOGIC FOR TRANSACTIONAL EJB ARCHITECTURE JAVA PLATFORM Last Update: May 2011 Table of Contents 1 INSTALLING WEBSPHERE 6.1 2 2 BEFORE
By Wick Gankanda Updated: August 8, 2012
DATA SOURCE AND RESOURCE REFERENCE SETTINGS IN WEBSPHERE 7.0, RATIONAL APPLICATION DEVELOPER FOR WEBSPHERE VER 8 WITH JAVA 6 AND MICROSOFT SQL SERVER 2008 By Wick Gankanda Updated: August 8, 2012 Table
SAS Marketing Automation 4.4. Unix Install Instructions for Hot Fix 44MA10
SAS Marketing Automation 4.4 Unix Install Instructions for Hot Fix 44MA10 Introduction This document describes the steps necessary to install and deploy the SAS Marketing Automation 4.4 Hot fix Release
Installing and Configuring Adobe LiveCycle 9.5 Connector for Microsoft SharePoint
What s new Installing and Configuring Adobe LiveCycle 9.5 Connector for Microsoft SharePoint Contents Introduction What s new on page 1 Introduction on page 1 Installation Overview on page 2 System requirements
Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014
Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...
HR Onboarding Solution
HR Onboarding Solution Installation and Setup Guide Version: 3.0.x Compatible with ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: November 2014 2014 Perceptive Software. All rights
Configuring IBM WebSphere Application Server 7.0 for Web Authentication with SAS 9.3 Web Applications
Configuration Guide Configuring IBM WebSphere Application Server 7.0 for Web Authentication with SAS 9.3 Web Applications Configuring the System for Web Authentication This document explains how to configure
Content Server. Version: 6.3. Installing Content Server with WebSphere Application Server
Content Server Version: 6.3 Installing Content Server with WebSphere Application Server Document Revision Date: Dec. 1, 2005 FATWIRE CORPORATION PROVIDES THIS PUBLICATION AS IS WITHOUT WARRANTY OF ANY
DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER
White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity
WebSphere Business Monitor V7.0 Installation and stand-alone server profile creation
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 Installation and stand-alone server profile creation What this exercise is about... 2 Exercise requirements... 2 What
Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x
Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into
FileNet Business Activity Monitor (BAM) Release Notes
FileNet Business Activity Monitor (BAM) Release Notes Release 3.6.0 September 2006 FileNet is a registered trademark of FileNet corporation. All other product and brand names are trademarks or registered
Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide
Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Step 1: Setting Up Required Users and Groups o Windows Operating Systems Only Step 2: Installing Software Using the SAS
Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication
Technical Paper Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Release Information Content Version: 1.0 October 2015. Trademarks and Patents SAS Institute
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the
BusinessObjects Enterprise XI Release 2
BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of
VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com
VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET
Install BA Server with Your Own BA Repository
Install BA Server with Your Own BA Repository This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
Securing SAS Web Applications with SiteMinder
Configuration Guide Securing SAS Web Applications with SiteMinder Audience Two application servers that SAS Web applications can run on are IBM WebSphere Application Server and Oracle WebLogic Server.
Moving the TRITON Reporting Databases
Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,
Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files
About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end
INSTALLING AND DEPLOYING ADOBE LIVECYCLE ES4 FOR WEBSPHERE
INSTALLING AND DEPLOYING ADOBE LIVECYCLE ES4 FOR WEBSPHERE Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: About This Document
Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose
Setting up the Oracle Warehouse Builder Project Purpose In this tutorial, you setup and configure the project environment for Oracle Warehouse Builder 10g Release 2. You create a Warehouse Builder repository
Upgrade Guide BES12. Version 12.1
Upgrade Guide BES12 Version 12.1 Published: 2015-02-25 SWD-20150413111718083 Contents Supported upgrade environments...4 Upgrading from BES12 version 12.0 to BES12 version 12.1...5 Preupgrade tasks...5
Getting Started using the SQuirreL SQL Client
Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,
AWS Schema Conversion Tool. User Guide Version 1.0
AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may
Oracle Utilities Customer Care and Billing Integration to Oracle Utilities Meter Data Management
Implementation Guide Oracle Utilities Customer Care and Billing Integration to Oracle Utilities Meter Data Management Installation Guide Release 12.1 Media Pack E64681-01 June 2015 Oracle Utilities Customer
ITG Software Engineering
IBM WebSphere Administration 8.5 Course ID: Page 1 Last Updated 12/15/2014 WebSphere Administration 8.5 Course Overview: This 5 Day course will cover the administration and configuration of WebSphere 8.5.
Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2
Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server
Set Up BA Server and Tools
Set Up BA Server and Tools This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014 Pentaho Corporation.
StreamServe Persuasion SP4
StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document
WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern What this exercise is about... 2 Exercise requirements... 2
StreamServe Persuasion SP5 Control Center
StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents
EMC Documentum Content Services for SAP Repository Manager
EMC Documentum Content Services for SAP Repository Manager Version 6.0 Installation Guide P/N 300 005 500 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com
Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management
IBM Tivoli Software Maximo Asset Management Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management Document version 1.0 Rick McGovern Staff Software Engineer IBM Maximo
Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server
Configuration Guide Configuring IBM HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on IBM WebSphere Application Server This document is revised for SAS 9.3. In previous versions
Simba XMLA Provider for Oracle OLAP 2.0. Linux Administration Guide. Simba Technologies Inc. April 23, 2013
Simba XMLA Provider for Oracle OLAP 2.0 April 23, 2013 Simba Technologies Inc. Copyright 2013 Simba Technologies Inc. All Rights Reserved. Information in this document is subject to change without notice.
SpagoBI exo Tomcat Installation Manual
SpagoBI exo Tomcat Installation Manual Authors Luca Fiscato Andrea Zoppello Davide Serbetto Review Grazia Cazzin SpagoBI exo Tomcat Installation Manual ver 1.3 May, 18 th 2006 pag. 1 of 8 Index 1 VERSION...3
Moving the Web Security Log Database
Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server
Cúram Deployment Guide for WebSphere Application Server
IBM Cúram Social Program Management Cúram Deployment Guide for WebSphere Application Server Version 6.0.4 Note Before using this information and the product it supports, read the information in Notices
Project Management (PM) Cell
Informatics for Integrating Biology and the Bedside i2b2 Installation/Upgrade Guide (Linux) Project Management (PM) Cell Document Version: 1.5.1 i2b2 Software Version: 1.5 Table of Contents About this
Ellucian Recruiter Installation and Integration. Release 4.1 December 2015
Ellucian Recruiter Installation and Integration Release 4.1 December 2015 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies
An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0)
An Oracle White Paper March 2011 Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) Table of Contents Introduction... 2 Overview... 2 Adding WebCenter Adapter for
Oracle Enterprise Performance Management System 11.1.2.2 IBM WebSphere Manual Deployment Guide
Oracle Enterprise Performance Management System 11.1.2.2 IBM WebSphere Manual Deployment Guide Page 1 Description... 3 Documentation... 3 Abbreviations and Terms... 3 Deployment Procedure... 4 1. Installing
Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server
Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 2 (11.1.2.1.0) E17075-02 September 2011 This document provides information on: Section 1, "Oracle Team
LAE 5.1. Windows Server Installation Guide. Version 1.0
LAE 5.1 Windows Server Installation Guide Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT
AWS Schema Conversion Tool. User Guide Version 1.0
AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
HOW TO DEPLOY AN EJB APLICATION IN WEBLOGIC SERVER 11GR1
HOW TO DEPLOY AN EJB APLICATION IN WEBLOGIC SERVER 11GR1 Last update: June 2011 Table of Contents 1 PURPOSE OF DOCUMENT 2 1.1 WHAT IS THE USE FOR THIS DOCUMENT 2 1.2 PREREQUISITES 2 1.3 BEFORE DEPLOYING
Define ODBC Database Library using Management Console
Define ODBC Database Library using Management Console Introduction: Open database connectivity (ODBC) standards provide a common interface to a variety of databases, including AS/400, dbase, Microsoft
1 How to install CQ5 with an Application Server
1 How to install CQ5 with an Application Server Contents 1.1. WebSphere v6.1... 1 1.2. WebLogic v10.3... 3 1.3. Tomcat v6... 6 1.4. JBoss v4... 8 1.5. Generic Procedures... 10 The following sections detail
TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation
TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS
WebSphere Business Monitor V7.0 Configuring a remote CEI server
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should be able to do... 2 Introduction... 3 Part 1: Install
Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0
Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher
EMC Documentum Composer
EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights
Configuring an Alternative Database for SAS Web Infrastructure Platform Services
Configuration Guide Configuring an Alternative Database for SAS Web Infrastructure Platform Services By default, SAS Web Infrastructure Platform Services is configured to use SAS Framework Data Server.
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Witango Application Server 6. Installation Guide for OS X
Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: [email protected] Web: www.witango.com
How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected (
Avaya one X Portal 1.1.3 Lightweight Directory Access Protocol (LDAP) over Secure Socket Layer (SSL) Configuration This document provides configuration steps for Avaya one X Portal s 1.1.3 communication
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means
Installation Instructions for Hot Fix I92003
Installation Instructions for Hot Fix I92003 UNIX Hot fix I92003 addresses the issue(s) in SAS Credit Scoring for Banking 5.1 as documented in the Issue(s) Addressed section of the hot fix download page:
HP Enterprise Integration module for SAP applications
HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP
Active Directory Adapter with 64-bit Support Installation and Configuration Guide
IBM Security Identity Manager Version 6.0 Active Directory Adapter with 64-bit Support Installation and Configuration Guide SC27-4384-02 IBM Security Identity Manager Version 6.0 Active Directory Adapter
SAS Marketing Optimization. Windows Installation Instructions for Hot Fix 51mo14
SAS Marketing Optimization Windows Installation Instructions for Hot Fix 51mo14 Introduction This document describes the steps necessary to install and deploy the SAS Marketing Optimization 5.1 hot fix
EMC Documentum My Documentum for Microsoft SharePoint
EMC Documentum My Documentum for Microsoft SharePoint Version 6.5 SP2 Installation and Configuration Guide P/N 300-009-826 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000
Plug-In for Informatica Guide
HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials
Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure
E-mail Listeners. E-mail Formats. Free Form. Formatted
E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail
SAS 9.3 Intelligence Platform Middle-Tier Administration Guide Third Edition
SAS 9.3 Intelligence Platform Middle-Tier Administration Guide Third Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS 9.3 Intelligence
Novell Access Manager
J2EE Agent Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP3 February 02, 2011 www.novell.com Novell Access Manager 3.1 SP3 J2EE Agent Guide Legal Notices Novell, Inc., makes no representations
Using the DataDirect Connect for JDBC Drivers with WebLogic 8.1
Using the DataDirect Connect for JDBC Drivers with WebLogic 8.1 Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the WebLogic Application Server
Operating System Installation Guide
Operating System Installation Guide This guide provides instructions on the following: Installing the Windows Server 2008 operating systems on page 1 Installing the Windows Small Business Server 2011 operating
Working with WebSphere 4.0
44 Working with WebSphere 4.0 This chapter is for developers who are familiar with WebSphere Application Enterprise Server, version 4.0 (WAS 4.0) and would like to deploy their applications using WAS 4.0.
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.
Witango Application Server 6. Installation Guide for Windows
Witango Application Server 6 Installation Guide for Windows December 2010 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: [email protected] Web: www.witango.com
Configuring Secure Socket Layer and Client-Certificate Authentication on SAS 9.3 Enterprise BI Server Systems That Use Oracle WebLogic 10.
Configuring Secure Socket Layer and Client-Certificate Authentication on SAS 9.3 Enterprise BI Server Systems That Use Oracle WebLogic 10.3 Table of Contents Overview... 1 Configuring One-Way Secure Socket
Advantage Joe. Deployment Guide for WebLogic v8.1 Application Server
Advantage Joe Deployment Guide for WebLogic v8.1 Application Server This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational
This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform.
Technical Note Overview This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform. Legal Notice The information in this document is preliminary and is subject to change without
SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com
SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download
Scheduling in SAS 9.4 Second Edition
Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute
User's Guide - Beta 1 Draft
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Cluster Server Agent vnext User's Guide - Beta 1 Draft SC27-2316-05 IBM Tivoli Composite Application Manager for Microsoft
Force.com Migration Tool Guide
Force.com Migration Tool Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 29, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark
Microsoft Corporation. Project Server 2010 Installation Guide
Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups
Configuring an Oracle Business Intelligence Enterprise Edition Resource in Metadata Manager
Configuring an Oracle Business Intelligence Enterprise Edition Resource in Metadata Manager 2011 Informatica Abstract This article shows how to create and configure an Oracle Business Intelligence Enterprise
BEAWebLogic. Portal. WebLogic Portlets for SAP Installation Guide
BEAWebLogic Portal WebLogic Portlets for SAP Installation Guide Version 8.1 with Service Pack 4 (SAP Portlets Version 1.1) Document Revised: September 2004 Copyright Copyright 2004-2005 BEA Systems, Inc.
How to protect, restore and recover SQL 2005 and SQL 2008 Databases
How to protect, restore and recover SQL 2005 and SQL 2008 Databases Introduction This document discusses steps to set up SQL Server Protection Plans and restore protected databases using our software.
Scheduling in SAS 9.3
Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3
ADFS 2.0 Application Director Blueprint Deployment Guide
Introduction: ADFS 2.0 Application Director Blueprint Deployment Guide Active Directory Federation Service (ADFS) is a software component from Microsoft that allows users to use single sign-on (SSO) to
SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10
3245 University Avenue, Suite 1122 San Diego, California 92104 USA SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 Document Number: SII-TT-002 Date Issued: July 8,
User's Guide - Beta 1 Draft
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent vnext User's Guide - Beta 1 Draft SC27-2319-05 IBM Tivoli Composite Application Manager for Microsoft
Authoring for System Center 2012 Operations Manager
Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack
