Export UB10 user database

I thought both MS and UB databases were combined, but when I brought by user database in my merge database, the UB footprints didn't follow.
I've gone through the great pains of rebuilding my UB database and I want to properly export it like MS does. How is this done??????????
Why isn't there an export option? Anyone?Message Edited by kittmaster on 07-20-2007 11:29 AM
Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com

At this point all of my databases are rebuilt in ver 10 as the were in version 9.
So, example. I've created the LM3914 with its spice model in MS10, it also has a footprint that is linked to UB.
Now, if I export the MS database as a prz file, the UB footprint data.....is it there?
In version 9 when this setup was exactly as described above for version 10, when I exported the V9 database, it only save the MS data!!
I know this because when I tried to import my V9 database into V10, its said invalid format. And of course there is NOTHING in the help file to tell you how to handle this error.....basically if your screwed if you have no intitive to comb through forum (which is how I found my partial solution) to use the "convert database" function which then took the V9 database and converted it to V10. The only data that was imported was the MS data/spice info. The UB9 footprint data never came in.
I had to MANUALLY rebuild every single part from the ground up because there seems to be no way to export UB footprints in the fashion that MS9/10 does for its parts.
I understand that they are "partition" but it seems the focus is directly on MS functionality and little on the UB but yet they are supposed to be "interlinked". That doesn't seem to be the case here.
I have not tried to export version 10 databases and try to reimport them because I don't want to have to go through the headache of starting from ground zero..............again
If you need more help, you can contact me via my email and I can give you a direct line to help clarify or to speed this issue up.
Thanks
Chris
Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com

Similar Messages

  • ACS User Database Export

    Is it possible to export the user database stored in the Cisco Secure ACS Database to some file. I need to see all the user accounts and their group assignments etc to be able to do reporting on this.
    Any ideas?

    yes... csutil -d will dump the db.
    look at aaa-reports (www.extraxi.com) they can import the dump file and run reports off it.

  • Multisim: export user database grayed out

    Hello,
    I want to export the user database but I can't because this option is grayed out.
    Multisim 12
    Windows 7
    Any idea why?
    Any suggestions and/or ideas?
    TIA
    Stefaan Claes
    Solved!
    Go to Solution.

    Hi Stefaan,
    You can follow this guide to get your databases exported. You probably using full base or education version of Mutlisim and need to do a manual copy as described below.
    http://digital.ni.com/public.nsf/allkb/C61ADD277A26C12786257D8C006F4E01?OpenDocument
    Best Regards
    Jonas Mäki
    Applications Engineering
    National Instruments

  • How to export a user and their schema from one 10g database to another?

    Hi,
    I would like to export a user and their entire schema from one 10g database to another one. How do I do this?
    thx
    adam

    If you want to export a user and the schema owned to the user, and import to the same user in a different database, or a different user in the same database, you can use the exp and imp commands as described in the Utilities manual.
    These commands are very versatile and have a lot of options - well worth learning properly. To give you a simplistic shortcut, see below - I create a user 'test_move', create some objects in the schema, export, create a new user in the database 'new_move' and import.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:46:54 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user test_move identified by test_move;
    User created.
    SQL> grant create session, resource to test_move;
    Grant succeeded.
    SQL> connect test_move/test_move
    Connected.
    SQL> create table test (x number);
    Table created.
    SQL> insert into test values (1);
    1 row created.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> exp system/????? file=exp.dmp owner=test_move
    Export: Release 10.2.0.1.0 - Production on Sat Mar 11 21:48:34 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user TEST_MOVE
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user TEST_MOVE
    About to export TEST_MOVE's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export TEST_MOVE's tables via Conventional Path ...
    . . exporting table                           TEST          1 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:49:23 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user new_move identified by new_move;
    User created.
    SQL> grant create session, resource to new_move;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> imp system/????? file=exp.dmp fromuser=test_move touser=new_move
    Import: Release 10.2.0.1.0 - Production on Sat Mar 11 21:50:12 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    . importing TEST_MOVE's objects into NEW_MOVE
    . . importing table                         "TEST"          1 rows imported
    Import terminated successfully without warnings.
    oracle@fuzzy:~>                                                       If moving between databases, remember to set the SID properly before the import. If keeping the same userid, skip the from/to stuff in the import.
    There are many variations on the theme ...
    You can simplify this. You can select tables individually. You can use a parameter file. You can transport all the constraints and data. You can skip the data and only move the definitions. You can get some help (imp/exp help=yes).
    And, if it's all 10g, there is a new and improved facility called expdp/impdp (dp = data pump) which has a lot more capability as well, including direct transfer (no intermediate file) together with suspend/restart. Also documented in the Utilities manual.

  • Export User-Database between ACS-Server

    Hi everyone ,
    an ACS 2.3 is running under Unix with 3000 based user. The job is, to migrate the user-database to a new ACS-Server under Windows.
    On the unix-version 2.3 there is no way to export the database to external.
    The only way, i hope, is to mirror the old and the new server as redundant server and if the database is mirrored on both server, than the database is ready for export.
    Is this correct?
    Is there an other way?
    Thanks for your input.
    Ralf

    The migration should go to version 3.1 or 3.2 .
    Ralf

  • How can I share a Tiger server's User database to a Panther server?

    I need some help to set this up. Keep in mind I do not have a DNS server.
    I have a Tiger server with Xserve and an older Panther server, both on the same local network. I have a whole bunch of users setup on the Tiger server. The Panther server does not have any users setup on it. I do not want to have to type in all the users all over again in the Panther server. What I'd like to be able to do is somehow share and syncronize the user database on the Tiger server with the Panther server.
    I looked into the Open Directory settings but I do not understand what to do. How do I configure the Tiger and Panther servers respectively so the Panther server can sync with the Tiger server's users database. Is this possible? It seems like it with Open Directory, one being the Open Directory Master and the other being the Open Directory Replica? But I just don't understand how to set this up. Also the Panther OD settings seem quite different than Tiger's in Open Directory.
    Any help would be appreciated.
    Message was edited by: robocub1

    Hi
    It may be best to set up your 10.4 Server as an Open Directory Master first and then use Directory Access on your 10.3 Server to connect to the Tiger Server so as it can use the same User Database. This should be possible. OD Master/Replica relationships are not possible if the OS versions are different, even if the Master was 10.4.11 and the Replica was 10.4.10. You have no chance when its 10.4 and 10.3.
    http://images.apple.com/server/macosx/docs/OpenDirectory_Adminv10.5.pdf
    The link is for 10.5 but the basics are the same. This is a recent post that describes how to set up an OD Master:
    http://discussions.apple.com/thread.jspa?threadID=1377046&tstart=0
    I'm guessing that your 10.4 Server is Standalone and is serving simple file services only (AFP and possibly SMB/Windows). If this is the case (and I can't see how it can't be) then your users will be in the local NetInfo node. This will be the default node that is presented to you in WorkGroup Manager. You always get a warning that your are working in an invisible node (if you have not disabled this) when working in the Server's local node. Don't worry there is nothing wrong with the warning. WorkGroup Manager on Panther (10.3) Server works the same way.
    You could if you wanted to simply export the Users and Groups from WGM in 10.4 and import them into WGM on 10.3. This should save you having to key them all in again. If the prospect of configuring internal DNS Services and all that goes with it seems to much for you then this is probably the simplest option. How do you do this? Launch WGM (its the same for both versions), select the Server Menu and select Export after first selecting desired users. Do the same for Groups. Use the same procedure in reverse. The Users and Groups files are not very big and can easily be transferred using a memory stick etc.
    There are differences between the two versions which are mostly to do with Server Admin. In 10.4 Server there are more services. One of the Services will be Open Directory. In 10.4 Open Directory will only show a green light by the side of the service if it is in any role other than Standalone. Server Admin on 10.3 Server will always show the green light by the side of the Open Directory Service. This does not mean that it is an OD Master, you have to click on Settings and inspect the Role to see what it actually is.
    You should be able to connect to a 10.3 Server with 10.4's Admin tools but don't be tempted to use Server Admin to configure/change anything on the 10.3 Server. You should not be able to go the other way 10.3 > 10.4 using the same tools.
    Internal DNS Services are a requirement for LDAP Services (and pretty much everything else) on Servers generally, although for simple file services not absolutely necessary. Internal DNS Services do not have to be configured on the Server itself just as long as they are configured on another server, for example, on the same network. If these are the only two servers on the network then you will have to configure DNS Services on either one or both of them depending on what you want.
    Not available on your 10.3 Server but is on your 10.4 Server are Access Control Lists (ACLs). This is a permissions model that is in addition to the standard POSIX permissions. Think carefully about how you provide permissions to your network clients if there is a mix of client OS, 10.3, 10.4 etc.
    Hope this helps, Tony

  • Portal export/import  on database 8.1.7 on an other machine

    Hello,
    I'm running Oracle8i on AIX. I have problem when I try full export/import my database (version 8.1.7) on an other machine. I have a problem with import users PORTAL30 and PORTAL30_SSO and CREATE TABLE 'WWSEC_ENABLER_CONFIG_INFO$'
    The log when import full is:
    IMP-00017: following statement failed with ORACLE error 22973:
    "CREATE TABLE "WWSEC_ENABLER_CONFIG_INFO$" OF "SEC_ENABLER_CONFIG_TYPE" OID "
    "'BA6473B86EF248BEE0330A18780F48BE' ( PRIMARY KEY ("LS_LOGIN_URL")) OBJECT "
    "ID PRIMARY KEY PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 LOGGING STORAG"
    "E(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 4096 PCTINCREASE 0 FRE"
    "ELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TBS_PORTAL""
    IMP-00003: ORACLE error 22973 encountered
    ORA-22973: size of object identifier exceeds maximum size allowed
    Thank you.
    Borjana Zekic

    When using export/import between different releases, you need to use the older version of export to create your dump file. In your case, you must use the 8.0.5 export utility to export from your 8.1.7 database. You need a tnsname in your 8.0.5 tnsnames.ora that points to your 8.1.7 database. Then you use SQL Net to connect and do the export. So, instead of doing exp system/manager you would do exp system/manager@tnsname. Just be sure to use the 8.0.5 export, and your import will work fine.

  • Export/import (user mode)

    can you help me please,
    1- I exported the SCOTT schema (user mode):
    exp scott/tiger FILE=D:\scott.dat LOG=D:\scott_exp.log OWNER=SCOTT
    then I imported to new created before schema SCOTT_COPY:
    imp scott_copy/tiger FILE=D:\scott.dat LOG=D:\scott_imp.log
    fromuser=scott
    touser=scott_copy
    I got in scott_copy only tables from scott (all existed types were not successful imported) WHY only tables (see log)!!.
    2- What is the best way to export user and import it with all (objects and privilegs granted to origin user).
    thanks
    jamil
    see scott_imp.log
    =================
    import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "ADDRESS_OBJ" TIMESTAMP '2002-02-08:10:15:23' OID '8AB6D00504B0"
    "47A9BDAC02E58E4298A0' as object("
    "pobox varchar2(20),"
    "street varchar2(20),"
    "city varchar2(20),"
    "state varchar2(20),"
    "country varchar2(20))"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "BREAD_LIST" TIMESTAMP '2002-02-08:10:13:03' OID 'D9896A6992394"
    "4F58D608A3ED01791D6' as array(10) of bread_obj;"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "BREAD_OBJ" TIMESTAMP '2002-02-08:10:10:55' OID '24F457B9807C47"
    "B9B753CEC5E88D584A' as object("
    "bread_id number(2),"
    "bread_name varchar2(20),"
    "sale_price number(5,2),"
    "in_stock number(4));"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "INGREDIENT_OBJ" TIMESTAMP '2002-02-08:10:11:39' OID '8A39AD416"
    "8DF411995F0B2B2020BF731' as object("
    "ing_id number(2),"
    "name varchar(20),"
    "price number(5,2),"
    "in_store number (8,3))"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    . . importing table "A" 13 rows imported
    . . importing table "ACCOUNT" 5 rows imported
    . . importing table "B" 5 rows imported
    . . importing table "BONUS" 0 rows imported
    . . importing table "DEPT" 5 rows imported
    . . importing table "EMP" 13 rows imported
    . . importing table "EMP1" 14 rows imported
    . . importing table "EMP_SNAPSHOT" 14 rows imported
    . . importing table "RECEIPT" 1 rows imported
    . . importing table "SALGRADE" 5 rows imported
    . . importing table "T" 12 rows imported
    . . importing table "TABLE_RESULT" 5 rows imported
    . . importing table "TEMP" 3 rows imported
    . . importing table "XXX" 0 rows imported
    About to enable constraints...
    Import terminated successfully with warnings.

    Hi Basu,
    The source and target database is the same 8.1.7.0.0
    more infot about what do i want?export one user with all his objects,priviliges....... by simple words, I would like to have the same copy of source user with new namw of the user one.
    thanks.

  • Export/Import Users.

    My requirement is to create users with the same privileges in database B referencing database A. so Whatever users and their respective preveleges i need to have them exactly in database B what parameters should i specify in my exp/imp command just to export import the users and privileges. My requirement is not to export the objects of the users but just the usernames and their privileges.

    Hi,
    i tried to import the user database from one LMS server to another with the following command:
    C:\CSCOpx>"C:\CSCOpx\bin\perl C:\CSCOpx\bin\AddUserCli.pl -import HTTP 172.18.3.
    38 1741 admin ***"
    The filename, directory name, or volume label syntax is incorrect.
    I keep getting this error message and i don't have a clue why its not working.
    I've imported the certificate from the source LMS Server into common services->peer server certificate setup.
    Any hints are much appreciated.

  • How to export r12 vision database

    hi,
    i want to export r12 vision database. tried to do it with apps/apps@sysdba but it is showing "invalid privileges". Same error with sys/manager & system/manager.
    Is password correct  for sys & system?
    Can anyone help with steps for how to export r12 vision database?
    Thanks,

    You need to connect as sysdba or system to export the database -- Export/import process for 12.0 or 12.1 using 11gR1 or 11gR2 (Doc ID 741818.1)
    The password for both SYS and SYSTEM in the Vision Demo is manager -- http://docs.oracle.com/cd/E18727_01/doc.121/e12842/T422699i4783.htm
    If the password is incorrect, source the database env file and issue:
    $ sqlplus / as sysdba
    SQL> alter user system identified by <new password>;
    SQL> alter user sys identified by <new password>;
    Thanks,
    Hussein

  • ACS User database Backup

    Is it possible to have the ACS user database in an excel sheet

    Hi,
    You can open .dmp file in notepad but that will not provide any info as its not user readable.
    You need to export the lsit of users in .txt extension
    here is the command that you need to run from the command prompt where ACS is installed
    start > run> cmd > go to this dir
    C:\Program Files\CiscoSecure ACS v4.2\bin>net stop csauth
    CSUtil.exe -u user.txt
    C:\Program Files\CiscoSecure ACS v4.2\bin>net start csauth
    Then you can easily access user.txt file in notepad.
    HTH
    JK

  • Export with users working?

    Hi Gurus!!
    I have a dout, Can I make a Export with users working in my DB?
    Thanks in advance.

    I don't understand your question, please clarify. Also, there is a seperate forum for export/import.
    Here if you want to give a try, use this
    exp username/password and follow the instruction, is this what you are looking for?
    C:>exp username/password
    Export: Release 10.2.0.1.0 - Production on Wed Dec 10 20:28:31 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Producti
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine
    Enter array fetch buffer size: 4096 > 10000
    Export file: EXPDAT.DMP > myexport.dmp
    (2)U(sers), or (3)T(ables): (2)U > U
    Export grants (yes/no): yes > yes
    Export table data (yes/no): yes > no
    Compress extents (yes/no): yes > yes
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    Note: table data (rows) will not be exported
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user USERNAME
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    Edited by: OrionNet on Dec 10, 2008 8:35 PM

  • XML export of entire database

    Hi
    I'm trying to export an entire database into a single XML document. At the moment, I can only do it one table at a time, using the following pl/sql procedure:
    create or replace procedure "download"
    is
    queryCtx DBMS_XMLquery.ctxType;
    result1 CLOB;
    begin
    queryCtx := DBMS_XMLQuery.newContext('select * from table1');
    result1 := DBMS_XMLQuery.getXML(queryCtx);
    --download the file
    owa_util.mime_header('text/xml', FALSE);
    htp.p('Content-Disposition: attachment;
    filename="Document.xml"');
    owa_util.http_header_close;
    htp.print(result1);
    end
    Is there any way to select all information from all tables and put it in the one document?
    Thanks in advance,
    Dave

    David,
    Are you trying to export user (SYS and SYSTEM) as well into an XML file? or are you trying to get all of one schema into a XML file?
    One possibility:
    You could create an interim table which contains the tablenames.
    create table interim as select table_name from dba_tables where owner = 'OWNERNAME';
    Then in your program read this interimtable into a cursor and loop through it using the variable in place of your hardcoded 'select * from table1' in the DBMS_XMLQuery.newContext
    You would then need to append result1 to result1 plus new query context for the clob.

  • Need help on exporting oracle users

    Hi,
    we currently on oracle ver. 7.3.3 with quite a number of oracle users created. We are in the midst of migrating over to Oracle ver. 8.1.7. We want to preserve the user details, so we don't have to recreate all of them again.
    How do I export the users from ver. 7.3.3 over to ver. 8.1.7, preserving the user passwords, profiles, rights, etc?
    Any help would be appreciated.
    Thanks.

    Hi Mr. Hian,
    Take a Full database export from 7.x by connecting as SYS user (with FULL=Y) and import in the same in 8.1.7. Only thing u need to do here is to create all the required tablespaces(tablespaces used in 7.1.x DB) in 8.1.7 DB before importing the Db.
    Hope this helps,
    regds,
    Suresh.A

  • 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

Maybe you are looking for

  • Cost of replacing the Rear Display.

    hi, how much will be the cost of replacing the Rear Display? thanks.

  • In BO v5.1.7 , Is there a way that we can find out the number of users

    BO Version : 5.1.7 Hi There, I am new to Business Objects and I am having a task to complete. I need to find out how many users are using the Business Objects in our older version. I understand in BOBJ XI there is a provision in CMC to execute a quer

  • My Apple TV flashes a light whenever I try and use the remote

    I have recently lost my original remote for my Apple TV and so I bought a new remote. I've tried  to set it up by pressing the right and menu button for six seconds, but the Apple TV just flashed a light. This also happens whenever I press any button

  • Getting circle with slash at startup...

    My computer started to get really slow one night so I decided to restart it, but then I ended up with the circle with slash error and couldn't now can't get past it.  Here is what I have tried so far:   Reset PRAM.   Tried to "repair disc" using disc

  • 21406 events getting generated on all our production servers

    Hi, We are getting below events on almost all our production servers (Exchange, Lync,etc.). Does anyone have any idea about this event. Log Name: Operations Manager Source: Health Service Modules Date: 2/10/2014 10:36:09 AM Event ID: 21406 Task Categ