11g upgrade script gen_inst.sql fails to export all users

I'm trying to upgrade a database from 10g XE to 11g XE; however, the upgrade script gen_inst.sql that's included with the installation media fails to include all of the database users in the sql file it generates. Out of 33 users, only 3 are included in the ws.sql file that is created. I can't seem to find any difference between the users that are included and those that are missed, all have the same roles and default tablespaces, but I'm new to Oracle XE so I might be missing something. Does anyone know why the script might miss certain users?

The homepage says its Application Express 2.1.0.00.39.
If I'm understanding this correctly there should still be more than 3 schema owners, for example when I run the query "select distinct owner from dba_tables" I see the rest of the users that I was expecting.
When I imported the data onto the 11g server (using impdp) I can see in the logs that it's importing the other schemas (e.g. imported "MP_DOC"."TEXT" ... in this case MP_DOC does not show up in the list of workspaces or users after running the install.sql script, but MP_DOUG does, and from what I can see they both should be there).
My apologies if I'm not being clear or understanding this right.

Similar Messages

  • Silent install of SQL Server 2008r2 for ALL users?

    We ship an installer that does a silent install of SQL Server 2008r2 with all the 'right' parameters pre-configured. We use this:
    /QS /INSTANCENAME=MSSQLSERVER /ACTION=Install /FEATURES=SQL,BC,Conn,ADV_SSMS /SAPWD=MyPasswordGoesHere /SECURITYMODE=SQL /TCPENABLED=1 /ADDCURRENTUSERASSQLADMIN /SQLSVCSTARTUPTYPE=Automatic /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /AGTSVCACCOUNT="NT
    AUTHORITY\SYSTEM" /IACCEPTSQLSERVERLICENSETERMS
    However, the problem is that if a tech installs it for another user, that user does not have access, since ADDCURRENTUSERASSQLADMIN flag only adds the user who installed it -- rather than adding ALL users on the computer. (Or at least all admins.)
    I tried replacing ADDCURRENTUSERASSQLADMIN with this:
    /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS"
    but that also failed to work. How can we install for all users, or at least all administrators?
    NOTE: we do NOT know the name of the computer or the users. The installer has to work for any computer setup.
    Similar question has already been asked, but wasn't helpful:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/8354675f-be9b-4909-b776-942f03954807/how-to-do-a-silent-install-of-sql-2010-express-for-all-users-on-a-computer?forum=sqlexpress
    The documentation does not make it clear what you can pass as allowed SQLSYSADMINACCOUNTS parameters. I also am not sure if I would need to change the AGTSVCACCOUNT or SQLSVCACCOUNT?

    I tried one more thing:
    /SQLSYSADMINACCOUNTS="BUILTIN\Administrators"
    which does not halt installation with an error. 
    However, doing:
    osql -E
    create database test
    go
    in a command prompt from a different admin user on the same machine results in a permissions error... but works if done from a command prompt on the user account from which MSSQLServer was installed.
    So for some reason /SQLSYSADMINACCOUNTS="BUILTIN\Administrators" does not work as expected.
    Anyone have any idea why?
    I checked the output log from the install, and found it had generated and used a configurationFIle to do the install. I looked in that file, and these were the settings, even though I did NOT pass /ADDCURRENTUSERASSQLADMIN as a command line option:
    ; Windows account(s) to provision as SQL Server system administrators. 
    SQLSYSADMINACCOUNTS="BUILTIN\Administrators"
    ; The default is Windows Authentication. Use "SQL" for Mixed Mode Authentication. 
    SECURITYMODE="SQL"
    ; Provision current user as a Database Engine system administrator for SQL Server 2008 R2 Express. 
    ADDCURRENTUSERASSQLADMIN="True"

  • User export does not export all users....

    Hi all,
    EP60 SP2 P4 HF8. Datasource is Database.
    I'm exporting all users via the Export/Import iview in the User Administration role. However, the export file only shows part of all the users, not all. SAP Note 801393 descibes this problem exactly, but the proposed solution does not work either.
    Any ideas?
    Kind regards
    Marcel Rabe

    Hi,
    I've got the same issue.
    When using the export function from the portal, the user list is not complete.
    The stream seems to be cut off when too many users need to be exported(Length/size issue)?
    Did someone find a solution?
    Thx,
    Regards,
    Steve Rymenants

  • Export all user's schema , without One

    Dear Friends ,
    I am running Oracle 10g in my production server . Here I have near about 20 user/schema . Now I want to export data from 19 user without 1 user , i.e., I just take export 19 users only . Is it possible to do ? Is there any script to do this ?

    Hi,
    >>Is it possible to do
    Yes it is. If you want to use a old export version you must use the OWNER clause.
    exp system/password owner=user1,user2,user3,user4,user5... file=test.dmpNow, as you are using Oracle 10g, you can use the SCHEMAS clause in the new expdp (Datapump). So, I advise you to take a look either at [url  http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#i1009203]Overview of Oracle Data Pump or [url http://www.orafaq.com/wiki/Datapump]Datapump Faq
    Cheers
    Legatti

  • Script to Copy preference file to all users profiles and to the default template

    I have build a package using Apple PackageMaker, this will install an application and a preference (plist) file to the current logged in user. Now I wanted to build a postflight script, which can copy a plist (ex com.test.plist) form an current logged in user to other user account on a machine also to the default user template (/System/Library/user template/...../Library/preferences) so any new user account created will have same preference file copied.

    Hi Mark...here is another script which work well if I have to copy my preference file from an account named as "admin" or some other account. However, it not certain that all Mac machine will have a account named as "admin". This is why I am looking for a way to copy the preference file from /private/var location to all user accounts on a mac.
    #!/bin/sh
    localUsers=$( dscl . list /Users UniqueID | awk '$2 >= 501 {print $1}' | grep -v admin )
    for userName in "$localUsers"; do
         cp /Users/admin/Library/Preferences/org.mypreference.plist /Users/$userName/Library/Preferences/
         chown $userName /Users/$userName/Library/Preferences/org.mypreference.plist
    done
    I tried to update it as suggest in some other forum like this, still no luck
    #!/bin/sh
    UserAccounts=`dscl . list /Users UniqueID | awk '$2 > 500 { print $1 }'`
    for userName in "$UserAccounts"; do
         cp /private/var/org.mypreference.plist /Users/$userName/Library/Preferences/
         chown $userName /Users/$userName/Library/Preferences/org.mypreference.plist
    done
    When I run the above script it comes up with the following error:
    cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
    cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
    chown: admin: No such file or directory
    chown: admin/Library/Preferences/org.mypreference.plist: No such file or directory

  • Export all user security profiles at once

    Is there a way to export all of the e-sourcing user profiles at once?
    Thanks for your help,
    Jerry

    You posted here with Firefox 9.0.1, is that the version you are using on that test PC? <br />If so, update to Firefox 10.0.1 and see the new ''(as of 10.0)'' first start after a program update routine. Mozilla changed the add-on compatibility check that kicks in when the Firefox version number has changed. It's probably going to make your issue worse, time wise, after a Firefox program update.
    As far as updating all the Profiles at the same time, '''LastVersion''' data is kept in the '''compatibility.ini''' file in each Profile - ''LastVersion=10.0.1_20120208060813/20120208060813'' - Firefox checks that file each time the Profile is used. When the version number currently being launched doesn't match the saved pref, it triggers the "updated" routine (but it works for the version used being older or newer than the pref).
    The only thing I can think of is to run a '''batch''' file to update the '''LastVersion''' value change in all the Profiles that weren't used for receiving the Firefox update, to match the new LastVersion.

  • Exporting all users

    OEL 4
    Oracle 10g
    Hi
    I want to export all the users (with rows=n )except system is there a single command to do this??
    What i intend to do is to create same users in a test as in production.
    Thanks

    Hello,
    As you are in 10g, you may use also the Datapump:
    expdp <user>/<password> FULL=Y DIRECTORY=<directory> DUMPFILE=<file>.dmp LOGFILE=<file>.log CONTENT=METADATA_ONLYPlease find enclosed a link about Datapump:
    http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
    Hope this help.
    Best regards,
    Jean-Valentin

  • Pre-Upgrade script utlu111i.sql warnings

    Hi Everybody
    Part of the upgrade process from 9i to 11.1.0.7 i ran a utlu111i.sql(11.1 Pre-Upgrade Information Tool) on my 9i(9.2.0.5) db.
    Most of the things checked out okay except for some misc warnings and depreciated pfile settings:
    Miscellaneous Warnings
    WARNING: --> Database contains INVALID objects prior to upgrade.
    .... USER SYS has 18 INVALID objects.
    .... USER SYSADM has 983 INVALID objects.
    .... USER SYSTEM has 1 INVALID objects.
    Can someone tell me how can i check these invalid objects?
    Obsolete/Deprecated Parameters: [Update Oracle Database 11.1 init.ora or spfile]
    --> "hash_join_enabled"
    --> "log_archive_start"
    --> "remote_os_authent"
    --> "background_dump_dest" replaced by "diagnostic_dest"
    --> "user_dump_dest" replaced by "diagnostic_dest"
    --> "core_dump_dest" replaced by "diagnostic_dest"
    what are the replacements for the first 3?
    Thank you

    >
    Can someone tell me how can i check these invalid objects?
    >
    select owner, object_name, object_type from dba_objects where status <> 'VALID' order by 1,2,3;what are the replacements for the first 3?
    >
    hash_join_enabled --> see ML Doc 268581.1 (Obsolete / Deprecated Initialization Parameters in 10.1)
    log_archive_start --> same doc as above
    remote_os_authent --> http://download.oracle.com/docs/cd/B28359_01/server.111/b28320/initparams199.htm#sthref590
    HTH
    Srini

  • SharePoint 2007 Export to Excel 2010 or Excel 2013 Fails to Export All Fields in All Items View

    Hi All,
    When I am trying to export the SharePoint View from SharePoint site to Spreadsheet (Excel 2013), I am able not able to export the the whole data, I'm missing some numerical columns from being displayed in Excel
    I have Infopath form (2007) published on SharePoint Site and I am using MOSS 2007 and Excel 2013. My form has only 20 or so fields and the rest are fields I generated in the form library to do several other calculations. I have already 73 columns
    displayed which should be exported to Excel, need help

    Hi,
    As per your post, I understand “Excel cannot connect to the SharePoint list” is thrown out in Excel 2010 when exporting the external list in SharePoint 2013. We are able to export the external list to Excel 2013.
    This issue does not occur on the standard lists.
    I am able to reproduce the issue and it could be a potential issue in SharePoint 2013.
    We will log this issue to our suggestion box. As after the submission, we may not have any time guarantee when the fix may be released, but it may come out on next cumulative update.
    Appreciate your time and efforts.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • SQL fails on newly created user

    I just downloaded Oracle XE, installed and managed to go through all the steps in the Getting Started manual, i.e. creating a simple application and tried simple SELECT statements on EMPLOYEES and JOBS tables using the user account, "HR". I have tried to create two new user accounts with same settings as "HR". But when I log in as any of these two new users and just try on the SQL window with the same SELECT statements, I would get an ORA-00942 - form or view not exist. What else should I have to do? Do I have to grant certain access rights to the new accounts? I checked also the video tutorial and couldn't see any thing.

    When you create a table, it is by default created in user's schema, which is same as username. In fact, if you create table table_name as user hr, you create table hr.table_name. That's not an issue if you try to access this table as the creator. But it is a problem if you want to access this table using different user accounts.
    If you log in as e.g. usera, you can use query like this:
    SELECT * FROM hr.table_name

  • Find users fails to return all users

    We've noticed what appears to be an issue with "Accounts, Find Users, Starts With" and/or lower case letters.
    For example, if we selected 'Last Name Starts With' and used 'Taylor', we got back 20 users.
    When we used 'Last Name Contains' and used 'Taylor', we got back 86 users.
    We saw similar issues with using lower case letters.
    Has anyone else noticed an issue like this?

    Well to be fair, those two searches could very well return those results..
    searching a database with key like 'Taylor%' and with key like '%Taylor%' are different search criteria, the first is a bit more restrictive so I would expect less returns.
    The real question is... are there really more than 20 entries whose key starts with the string "Taylor"? If indeed you dump the database and find that there are 86 entries whose key starts with the string "Taylor" then its time to complain to Sun.

  • Gen_inst.sql completes but XE isn't upgraded to 11

    Hello,
    I'm using Windows and have XE 10g installed. I use Apex 4.0 for the application layer.
    I ran the upgrade script via SQL Plus, and it seems like it ran OK. From the SQL> prompt I input @"C:\(download directory structure)\OracleXE\DISK1\upgrade\gen_inst.sql";
    It took a few minutes then it came back with the SQL> prompt.
    However, when I input Select * from v$version; It still shows 10g.
    Am I missing something?
    Thanks for your help.

    Thanks. That link was helpful. However, I had to put "Host " in front of the "expdp" and "impdp" commands, and they worked fine from there.
    However, It doesn't copy the tables over from 10G.
    When I ran the impdp procedures the first time, I got errors saying the user SAINTSUSANNA didn't exist. That's the default user for the database. I executed CREATE USER in SQLPLUS for that user and re-ran the "Host impdp" step, but it still didn't work. Oracle XE is created in "C:/oraclexe" just like it was on Release 10G.
    Here's the first part of that log.
    Import: Release 11.2.0.2.0 - Production on Thu Dec 29 21:02:58 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** full=Y directory=DUMP_DIR dumpfile=DB10G.dmp logfile=expdpDB10G1.log
    Processing object type DATABASE_EXPORT/TABLESPACE
    ORA-39083: Object type TABLESPACE failed to create with error:
    ORA-01119: error in creating database file 'C:\ORACLEXE\ORADATA\XE\UNDO.DBF'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.
    Failing sql is:
    CREATE UNDO TABLESPACE "UNDO" DATAFILE 'C:\ORACLEXE\ORADATA\XE\UNDO.DBF' SIZE 52428800 AUTOEXTEND ON NEXT 5242880 MAXSIZE 524288000 BLOCKSIZE 8192 EXTENT MANAGEMENT LOCAL AUTOALLOCATE
    ORA-31684: Object type TABLESPACE:"SYSAUX" already exists
    ORA-31684: Object type TABLESPACE:"TEMP" already exists
    ORA-31684: Object type TABLESPACE:"USERS" already exists
    ORA-39083: Object type TABLESPACE failed to create with error:
    ORA-01119: error in creating database file 'C:\ORACLEXE\ORADATA\XE\APEX_1244616068553754.DBF'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.
    Failing sql is:
    CREATE TABLESPACE "APEX_1244616068553754" DATAFILE 'C:\ORACLEXE\ORADATA\XE\APEX_1244616068553754.DBF' SIZE 10551296 AUTOEXTEND ON NEXT 10485760 MAXSIZE 104923136 LOGGING ONLINE PERMANENT BLOCKS
    Processing object type DATABASE_EXPORT/SYS_USER/USER
    Processing object type DATABASE_EXPORT/SCHEMA/USER
    ORA-31684: Object type USER:"OUTLN" already exists
    ORA-31684: Object type USER:"TSMSYS" already exists
    ORA-31684: Object type USER:"SAINTSUSANNA" already exists
    ORA-31684: Object type USER:"ANONYMOUS" already exists
    ORA-31684: Object type USER:"HR" already existscedure, but it still didn't work. I got a number of errors in the expdpDB10G1.log.
    Edited by: PhilMan2 on Dec 29, 2011 9:40 PM

  • R12.1.1 upgrade driver failed due to OKC user connectivity (RHEL 5.9)

    Hi Team,
    I was in the middle of the R12.1.1 upgrade and the driver failed due to OKC user connectivity .
    I have checked all the possibilities.
    Please let me know how to proceed from here. Though I restarted the patch it is failing due to OKC user login denied.
    Assigned: file as_accesses_n17.xdf on worker 1 for product as username APPS.
    Assigned: file cnpln.odf on worker 2 for product cn username CN.
    Assigned: file invtxhi.odf on worker 3 for product inv username INV.
    Assigned: file mscplan.odf on worker 4 for product msc username MSC.
    Assigned: file MSC_SYSTEM_ITEMS.xdf on worker 5 for product msc username APPS.
    Assigned: file OKCDAUT.odf on worker 6 for product okc username OKC.
    Assigned: file OKCDSUP.odf on worker 7 for product okc username OKC.
    Assigned: file OKCOTH1.odf on worker 8 for product okc username OKC.
    Assigned: file OKCPTY1.odf on worker 9 for product okc username OKC.
    Assigned: file OKCREP1.odf on worker 10 for product okc username OKC.
    Assigned: file OKCSHD1.odf on worker 11 for product okc username OKC.
    Assigned: file OKCVARL.odf on worker 12 for product okc username OKC.
    Assigned: file OKCXRPT.odf on worker 13 for product okc username OKC.
    Connecting to OKC......Unable to connect.
    AutoPatch error:
    The following ORACLE error:
    ORA-01017: invalid username/password; logon denied
    occurred while executing the SQL statement:
    CONNECT OKC/*****
    AutoPatch error:
    Error while evaluating "Check Object"
    Telling workers to quit...
    2 workers have quit. Waiting for 14 more.
    12 workers have quit. Waiting for 4 more.
    13 workers have quit. Waiting for 3 more.
    15 workers have quit. Waiting for 1 more.
    All workers have quit.
    AutoPatch error:
    Error running SQL and EXEC commands in parallel

    user11962637 wrote:
    Hi Srini,
    Thank you for the update.
    The password is working fine no issues with the connectivity from my end, but upgrade driver is failing with the same error.
    sqlplus apps/apps
    SQL*Plus: Release 10.1.0.5.0 - Production on Fri May 17 18:18:03 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> conn okc/okc
    Connected.
    SQL> conn system/crp2system
    Connected.
    SQL> exitThis will happen if you change the password using the ALTER USER command rather than using the FNDCPASS executable
    Srini

  • Cant't submit plsql scripts with sql developer

    good morning
    i try again , submitting the creation of table books alone , and it replies :
    Error starting at line 1 in command:
    CREATE TABLE books (
    book_id VARCHAR2(20),
    title VARCHAR2(50)
    CONSTRAINT title_not_null NOT NULL,
    author_last_name VARCHAR2(30)
    CONSTRAINT last_name_not_null NOT NULL,
    author_first_name VARCHAR2(30),
    rating NUMBER,
    CONSTRAINT books_pk PRIMARY KEY (book_id),
    CONSTRAINT rating_1_to_10 CHECK (rating IS NULL OR
    (rating >= 1 and rating <= 10)),
    CONSTRAINT author_title_unique UNIQUE (author_last_name, title))
    Error report:
    SQL Error: Connexion interrompue
    could you help me please ?
    thanks.

    Looks like a straight permissions issue. Can you select from tables? Do you have Connect access? Can you paste that script into SQL*Plus as the same user and create the table there?
    Sue

  • CSSExport fails to export the security of External users.

    Hello there,
    I have setup the security for the users of MSAD. The security is working fine, but unable to take an export of the security using CSSExport, not sure what I am missing?
    The tool exports all my native users but not AD users. Can somebody help please, I am on 11.1.1.3
    Thanks
    Vince

    Hi John, I did have this problem which caused another problem which I had to fix to before anything else, now I am back to the same problem.
    Below is my properties file.
    # For detailed information on the Import/Export Utility, see
    # Hyperion Security Administration Guide.
    # URI of CSS.xml.
    # For export operations, use the URI of the CSS.xml belonging to the Shared Services that controls the source Native Directory.
    # For import operations, use the URI of the CSS.xml belonging to the Shared Services that controls the target Native Directory.
    # Example, http://MyServer:<port>/framework/getCSSConfigFile or file:/C:/Hyperion/CSS.xml
    importexport.css=file:/D:/Hyperion/deployments/Tomcat5/SharedServices9/config/CSS.xml
    # Name of the machine that hosts Shared Services.
    # For export operations, use the server name where the source Shared Services is running.
    # For import operations, use the server name where the target Shared Services is running.
    importexport.cmshost=localhost
    # Shared Services port.
    # Be sure to use the secure port, if Shared Services is deployed to use SSL communication.
    # For export operations, use the port where the source Shared Services is running.
    # For import operations, use the port where the target Shared Services is running.
    importexport.cmsport=28080
    #import export operations
    # The Native Directory user account that is to be used for the operation typically the admin user
    # For export operations, use an administrator's account from the source system.
    # For import operations, use an administrator's account from the target system.
    importexport.username=admin
    # Password. Type password in clear text. After the first run, the Import/Export Utility encrypts this password.
    importexport.password={CSS}MRcYv323uzxGr8rFdvQLcA==
    # Set this property to false if you do not want to see trace information in the Console window.
    importexport.enable.console.traces=true
    # Name and location of trace log file for detailed errors. File is not created if you do not provide a valid path and file name.
    importexport.trace.events.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/trace.log
    # Name and location of error log file. File is not created if you do not provide a valid path and file name.
    importexport.errors.log.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/errors.log
    # Locale (two-letter language code) to use for the operation.
    # If data in the specified locale is not available, data in
    # the default locale of the server where the utility is run is exported or imported.
    # See Hyperion Security Administration Guide for a list of supported locales.
    importexport.locale=en
    # Set this property to true if you are using an SSL connection for the operation. Valid values are true or false
    importexport.ssl_enabled=false
    # EXPORT OPERATIONS
    # Update this section to export data from the source Native Directory into a file.
    # The format in which the export file is to be created.
    # Must match the format of the file specified for export.file property. Valid values are csv and xml
    export.fileformat=csv
    # Location of the file into which the data is to be exported.
    # Must match the format of the file specified for export.fileformat property.
    # For XML and CSV file formats, see Hyperion Security Administration Guide.
    export.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/export.csv
    # Set this property to false if you do not want to export internal identities.
    # Provisioning information becomes stale if this value is set to false.
    export.internal.identities=true
    # Set this property to false if you do not want to export the encrypted passwords of the native users.
    export.native.user.passwords=true
    # Set this property to false if you want to export only a subset of the provisioning data.
    # If this property is set to false, you must specify export.projectnames AND export.applicationnames
    # OR export.provisioning.apps to select the subset of data to export.
    export.provisioning.all=true
    # Set this property to true if you want to export delegated lists.
    export.delegated.lists=false
    # Filter to use to select users for export. Use * as the filter to export all users.
    # You can use regular expressions using * as the wildcard.
    export.user.filter=*
    # Filter to use to select groups for export. Use * as the filter to export all groups.
    # You can use regular expressions using * as the wildcard.
    export.group.filter=*@Native Directory
    # Filter to use to select roles for export. Use * as the filter to export all roles.
    # You can use regular expressions using * as the wildcard.
    # export.role.filter=*
    # A comma-separated list of product types for which roles are to be exported.
    # Use * as the filter to export all products
    # Must be specified as product code-product version; for example, HAVA-9.3.1.
    # See Hyperion Security Administration Guide for a list of product codes.
    # export.producttype=HUB-9.2.0
    # Applications from which provisioning data is to be exported separated by commas.
    # Application names must be in (in (projectname=application name) format.
    # export.provisioning.apps=(HUB=Global Roles)
    # Do not use this property. Use export.provisioning.apps OR export.provisioning.all=true instead
    # Provided in this release for backward compatibility
    # export.projectnames=HUB
    # Do not use this property. Use export.provisioning.apps OR export.provisioning.all=true
    # Provided in this release for backward compatibility
    # export.applicationnames=Global Roles
    # IMPORT OPERATIONS
    # Update this section to validate an import file or to import data into a target Native Directory.
    # The format of the import file.
    # Must match the format of the file specified for import.file property.
    import.fileformat=xml
    # Name and location of the file to import or validate.
    # You can import or validate XML and CSV files.
    # For XML and CSV file formats, see Hyperion Security Administration Guide
    # Must match the format of the file specified for import.fileformat property.
    import.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/import.xml
    # The import operation to perform.
    # Options are: CREATE, UPDATE, CREATE/UPDATE and DELETE
    import.operation=create/update
    # Name and location of the file where failed import transactions are to be recorded.
    # File is not created if you do not provide a valid path and file name.
    import.failed.operations.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/failed.xml
    # The maximum number of allowable errors during the import operation.
    # The import operation aborts after the limit is reached. Default is 0 which means no limits on errors.
    import.maxerrors=0
    Below is my errors file,
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e0\31\20\3f\9b\23\07\49\93\c2\79\b2\b0\49\37\95?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\3f\ae\bb\f6\75\5d\0f\42\a5\93\c1\08\93\42\02\fc?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a4\f4\17\97\cc\df\bd\4a\ac\72\8a\c8\ce\7e\34\28?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\48\37\f6\ba\28\f0\67\4a\9e\c8\02\c8\1b\ee\5b\e6?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\92\1c\ab\31\49\c6\05\48\aa\db\54\7d\23\05\52\e0?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\57\8a\ef\9f\a8\de\45\42\af\14\56\ba\13\ae\74\49?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f0\75\44\96\b0\f7\e3\45\82\ff\b7\e4\b4\ea\c5\58?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\c5\35\66\44\e9\5c\29\49\a2\2a\5f\de\66\d6\89\fd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\db\e2\e9\4e\96\37\18\4b\a7\63\b1\13\8d\aa\03\2e?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d3\bf\93\05\ef\fc\54\4c\b0\76\22\55\00\ec\93\af?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d4\9f\a6\08\fa\f4\d3\4b\8e\18\2b\f7\28\0a\67\57?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\51\27\f3\94\e9\18\66\45\a0\89\60\ca\72\d6\a6\47?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\5e\1c\8f\3e\89\fb\01\48\90\c7\bb\22\af\58\68\3f?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\8c\dd\5b\d0\1c\70\a9\4f\96\15\96\ac\9c\6f\f0\16?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\61\f8\e0\b3\35\2e\3f\41\8f\68\2e\db\bc\03\8b\93?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\58\82\85\05\50\70\7d\49\8c\f4\98\16\17\ee\93\58?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\46\59\1e\b2\a2\a7\9a\4c\bc\4b\68\5a\0d\72\a8\a2?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f9\1f\55\01\1f\8f\4b\4d\b3\0f\59\66\ad\30\d0\cb?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\9a\c1\3b\a5\b2\e0\c1\4d\99\1e\17\3e\4c\87\d2\9b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\67\50\2b\40\0b\60\7b\4f\99\af\71\21\fd\5a\50\29?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ab\63\85\50\ff\1b\7d\41\b3\0a\72\9d\a3\88\4f\8b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a1\56\63\93\bf\59\6e\48\87\69\b6\0b\32\7f\52\33?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\36\4d\3c\15\cd\c9\2d\44\88\d8\0a\fb\e3\12\67\4a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d1\80\1f\4d\d0\85\2f\45\a3\e1\08\41\41\9a\78\68?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\4f\aa\d0\cb\98\68\31\47\88\bf\b0\ed\ca\54\5f\59?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\de\eb\41\e5\50\40\01\4c\af\50\25\04\a9\ec\84\49?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\4d\7d\fe\0c\12\c8\5e\4f\a5\c1\9d\7b\f3\94\e4\95?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b5\8c\d2\e2\67\c2\5d\41\96\95\62\f9\38\3b\cf\85?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b6\9e\79\8d\59\aa\c9\4b\b7\be\56\ec\cd\5c\66\8d?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e0\31\20\3f\9b\23\07\49\93\c2\79\b2\b0\49\37\95?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ff\d7\a8\3c\20\83\67\45\a2\9b\d6\d2\15\15\ae\89?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\3f\ae\bb\f6\75\5d\0f\42\a5\93\c1\08\93\42\02\fc?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a4\f4\17\97\cc\df\bd\4a\ac\72\8a\c8\ce\7e\34\28?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\1c\63\79\4e\02\03\3e\46\a1\10\52\5b\ed\62\1d\ac?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\48\37\f6\ba\28\f0\67\4a\9e\c8\02\c8\1b\ee\5b\e6?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\8d\a3\4e\54\55\3b\6b\41\a7\5c\14\b5\59\27\40\e4?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\7e\92\39\0e\56\e0\dc\46\a1\98\df\8c\09\cf\b5\bd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ca\1a\bd\ee\c8\6d\cd\49\bc\a6\7e\9d\25\6b\20\3b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\bc\fa\06\20\54\87\e2\4f\84\fe\44\37\2a\a7\0a\5e?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\92\1c\ab\31\49\c6\05\48\aa\db\54\7d\23\05\52\e0?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\9b\a5\89\0c\62\a0\ac\42\ac\ce\98\06\0f\ff\25\f3?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\57\8a\ef\9f\a8\de\45\42\af\14\56\ba\13\ae\74\49?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f0\75\44\96\b0\f7\e3\45\82\ff\b7\e4\b4\ea\c5\58?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ed\ad\78\38\3f\15\4d\47\bc\52\2e\b8\4e\8f\6c\ba?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\fc\a7\50\3a\e2\94\51\4c\aa\08\3b\5e\cf\c8\fa\91?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\90\4d\fe\71\d4\30\d1\4d\85\82\b3\9e\12\96\35\b0?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\c5\35\66\44\e9\5c\29\49\a2\2a\5f\de\66\d6\89\fd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\db\e2\e9\4e\96\37\18\4b\a7\63\b1\13\8d\aa\03\2e?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a3\0d\83\85\2f\25\5a\48\a0\54\ab\08\ef\97\3c\d2?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\06\60\8b\30\1c\b1\34\44\84\31\cb\10\6a\95\a6\ed?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d3\bf\93\05\ef\fc\54\4c\b0\76\22\55\00\ec\93\af?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d3\30\0f\35\fe\91\32\43\a5\e4\91\49\62\be\7f\fd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e9\d0\c9\0e\1e\e9\35\41\a2\1e\1b\7a\06\b0\c4\34?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\dd\5a\d7\3b\e2\e4\78\49\a2\20\75\9f\98\05\aa\4a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d4\9f\a6\08\fa\f4\d3\4b\8e\18\2b\f7\28\0a\67\57?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f0\ff\03\04\48\be\b1\45\8b\56\c9\9b\e3\93\8d\3b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\51\27\f3\94\e9\18\66\45\a0\89\60\ca\72\d6\a6\47?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\5e\1c\8f\3e\89\fb\01\48\90\c7\bb\22\af\58\68\3f?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e2\1a\02\15\12\6a\2f\4e\ba\e8\c2\58\0e\70\14\3c?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\69\28\99\d8\66\d0\a4\4e\a2\c3\c4\ca\d4\0e\d5\49?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\8c\95\bd\ff\ce\3b\15\4e\8d\9b\d5\46\3b\3b\b4\38?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ec\c6\4f\26\6a\88\e4\4d\81\52\43\8e\b7\e3\c1\cf?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\8c\dd\5b\d0\1c\70\a9\4f\96\15\96\ac\9c\6f\f0\16?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\34\c0\e7\86\46\d1\c1\40\be\2d\fc\51\b4\f1\a4\6c?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d4\0d\fa\c3\6e\ce\76\48\b2\ff\f4\09\cd\d2\b9\1a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\61\f8\e0\b3\35\2e\3f\41\8f\68\2e\db\bc\03\8b\93?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\58\82\85\05\50\70\7d\49\8c\f4\98\16\17\ee\93\58?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\7f\0c\fe\a0\a8\ad\3e\4d\bb\82\71\0e\46\a6\19\2b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\fa\ec\b6\3d\b4\62\c8\4b\93\36\8c\bc\fe\69\25\10?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e6\1d\a7\0f\6d\47\cb\4d\84\69\a2\eb\1d\23\66\de?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\43\65\6c\09\db\d0\c6\4a\98\8a\aa\5a\4f\dd\89\b0?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\82\c1\8c\ff\f0\03\c8\4f\92\ef\f1\b9\cf\15\2c\24?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\2c\42\26\2d\51\51\65\40\af\a6\10\dd\28\80\82\84?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\67\74\7a\91\6f\7e\9f\41\8c\b0\3c\9a\3a\74\40\8d?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a8\80\24\74\26\83\48\49\85\a8\fa\1d\ca\35\cc\aa?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b3\05\f5\35\48\2f\58\40\a5\15\42\bc\5f\1e\29\e5?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ed\2a\f0\f0\dc\6f\6c\49\9e\3f\dc\4e\4b\37\82\57?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\8c\e5\ae\0b\da\88\78\47\9d\5a\4c\f1\ec\4f\a4\11?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\24\a6\ef\16\92\69\f7\4a\8a\b4\9a\de\d1\36\ff\7b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b5\32\a8\6b\d5\df\5c\48\81\7c\35\e4\8c\83\eb\25?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\c6\1f\b1\f0\f0\68\0f\40\ad\40\2a\1c\61\6c\da\15?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\1a\43\c4\ef\29\13\8a\47\ae\60\a9\ae\f7\51\49\4d?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\46\59\1e\b2\a2\a7\9a\4c\bc\4b\68\5a\0d\72\a8\a2?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\40\da\7a\d7\b6\35\8a\47\84\d8\f0\9d\27\c3\b0\74?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f9\1f\55\01\1f\8f\4b\4d\b3\0f\59\66\ad\30\d0\cb?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\4d\7d\fe\0c\12\c8\5e\4f\a5\c1\9d\7b\f3\94\e4\95?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\51\7c\24\89\0a\cc\66\4f\9a\ca\1e\53\3b\78\0f\15?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d2\5c\44\7d\5d\d0\0b\44\ad\0b\e7\b6\0e\cb\43\71?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\23\d8\1f\fd\81\44\f4\4b\a1\ef\53\2c\41\6a\10\f8?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\61\56\c4\3b\53\fd\ee\4f\8d\33\a4\53\c1\b3\81\a5?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\9a\c1\3b\a5\b2\e0\c1\4d\99\1e\17\3e\4c\87\d2\9b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f9\04\4d\23\59\f3\12\4e\8b\5e\e9\5a\1f\1a\23\91?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\69\b6\25\7e\23\e0\cf\46\80\15\23\f9\1a\17\95\ae?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\1e\87\16\5d\df\f3\1f\45\af\42\16\f4\47\dd\03\2c?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\92\70\cd\08\e2\3f\28\40\b3\42\4f\08\85\6f\11\f2?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\16\f7\71\b6\c3\1b\d5\44\b4\6b\6d\32\d7\da\d1\a9?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\c7\e0\95\cf\62\b0\e1\42\ac\8a\9b\28\fb\d4\f3\21?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a7\2c\72\6c\16\73\cf\4c\a7\62\43\ea\03\67\b8\1a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\67\50\2b\40\0b\60\7b\4f\99\af\71\21\fd\5a\50\29?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d6\29\c5\58\8f\1f\11\45\94\34\38\13\36\a5\e9\a9?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\40\7c\b6\7e\ab\4f\18\44\96\8b\ff\22\17\a9\16\8d?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d9\6d\98\0f\61\d4\f6\49\b6\e3\b6\06\94\a8\b1\dd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\ab\63\85\50\ff\1b\7d\41\b3\0a\72\9d\a3\88\4f\8b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\e2\94\42\c8\1a\78\33\48\ae\8c\75\77\49\7f\ff\d1?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\6a\96\85\b9\03\e0\76\49\92\db\85\53\7a\e0\e5\7a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\91\96\71\ff\97\86\a1\4c\a2\cc\6b\ef\47\d9\3f\bd?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\de\eb\41\e5\50\40\01\4c\af\50\25\04\a9\ec\84\49?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a2\70\00\e6\bf\6c\65\4e\92\43\ff\ac\bf\fe\17\5b?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\a1\56\63\93\bf\59\6e\48\87\69\b6\0b\32\7f\52\33?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\78\79\b6\82\31\9b\bd\44\a1\a5\4a\6e\34\df\0e\86?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\38\33\3e\f3\a5\99\1d\4f\89\54\65\88\a6\09\23\f7?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\36\4d\3c\15\cd\c9\2d\44\88\d8\0a\fb\e3\12\67\4a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b2\07\f1\d0\cf\17\9a\4a\a7\67\df\8b\ad\24\39\04?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\14\65\00\44\49\15\d4\40\97\b5\28\83\c2\42\3f\e6?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\cd\d0\e6\45\34\23\4c\43\90\be\e4\40\91\16\ef\33?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\05\cb\82\83\de\d0\7e\4a\97\19\1f\66\5f\25\f4\92?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f3\b4\e8\e1\62\55\0a\41\9b\78\21\bb\1a\e8\5e\e5?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\d1\80\1f\4d\d0\85\2f\45\a3\e1\08\41\41\9a\78\68?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b7\4b\fc\d4\6b\94\f4\49\85\29\06\86\8c\ff\12\3a?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\4a\58\e8\06\b8\c0\58\41\85\fe\b4\9b\b6\e2\65\ae?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\b2\0f\bc\99\04\ad\a5\4c\a9\85\25\25\fd\23\26\bb?USER
    Export : Exception encountered while retrieving user msad://OBJECTGUID=\f9\cb\b1\9a\4e\8c\bd\48\ba\6a\0a\2d\ff\e1\2a\57?USER
    Export : Failed to load provisioning data for app id users.atheros.com.BPMA:BPMA_corpdb
    Export : Failed to load provisioning data for app id users.atheros.com.BPMA:BPMA_corpdb
    Please help me as I need to set up a mechanism to export and import everything in shared services,
    Thank you,
    Vince.

Maybe you are looking for