Export only user's synonyms

Hi
How can I export only users synonyms, not tables?
Regards

There is no such option in export that allows you to take export of only synonyms. You can create the script as posted above or from some tool like Toad or PL/SQL Developer.
Sidhu

Similar Messages

  • Export only synonyms from EXP utility

    Hi,
    Is there any way possible to EXPORT only Synonyms from conventional EXPORT utility?
    Thanks.

    HI,
    AFAIK its not possible to export and import just the synonyms..EXP can be used to export only tables, or only grants, or only indexes, BUT it don´t give to us an option to export only synonyms.  The best way to "pass" only the synonyms to another db is to create a scrit with the necessary CREATE SYNONYM in sql*plus, selecting the data from DBA_SYNONYMS or ALL_SYNONYMS, as desired.
    How to export and import public synonyms?

  • 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.

  • Error while exporting one user

    Hi all,
    While Exporting on user in Oracle 9.2.0.1 i am getting this error:
    EXP-000008 ORACLE error 600 encountered.
    ORA-00600: internal error code,arguments: [12811], [41965],[]
    ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 248
    ORA-06512 : at line 1
    EXP-00000: Export terminated unsuccssfully
    But this error message comes only for one user not for others.
    Please suggest the solution for this problem.
    Thanks in advance,
    Vipin

    This is a known 9i bug,
    Bug# 2443896, it is documented here --> Metalink Note 2443896.8
    OERI:[12811] from concurrent SELECT and DDL (DROP) with SQL_TRACE=TRUE
    This bug was fixed in 9.2.0.2.0. I strongly suggest you to apply tha last patchset available. Since the terminal patchset available for 9iR2 is 9.2.0.8.0 you will prevent to hit known bugs up to this version.
    This is just my personal recommendation, but Oracle Support Services has the last word on this issue.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • EXPORT ONLY TABLES IN A SCHEMA USING DATA PUMP

    Hi folks,
    Good day. I will appreciate if I can get a data pump command to export only TABLE oBJECT in a specific shema .
    The server is a 4 node RAC with 16 CPU per node.
    Thanks in advance

    If all you want is the table definitions, why can you use something like:
    expdp user/password direcory=my_dir dumfile=my_dump.dmp tables=schama1.table1,schema1.table2,etc content=metadata_only include=table
    This will export just the table definitions. If you want the data to, then remove the content=metadata_only, if you want the dependent objects, like indexes, table_statistics, etc, then remove the include=table.
    Dean

  • How to restrict "sftp only" user into your home dir and subdir

    Hi OTN forums members
    Question : I want restrict a sftp only user to browse ONLY in your home directory and subdirectory . I don't want sftp user access into other directory.
    Details : I want use a "ssh bundle package" on s10(only package on SUNWCXall installation cluster). I don't want to use the "extrernal package", as "ProFTP", "Chroot", sunfreeware OpenSSH package,ecc. It's possible?
    Technical Details of my system(test) : the hostname and username it's fantasy name, not real ;-)
    root@sunlab1:/[1]$ cat /etc/release
                           Solaris 10 5/09 s10s_u7wos_08 SPARC
               Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                 Assembled 30 March 2009
    root@sunlab1:/[2]$ uname -a
    SunOS sunlab1 5.10 Generic_142909-17 sun4u sparc SUNW,Sun-Blade-100
    root@sunlab1:/[3]$ grep explorer /etc/group
    explorer::111:
    root@sunlab1:/[4]$ grep explorer /etc/passwd
    explorer:x:111:111:Sun Explorer Data Collector sftp only user:/export/home/explorer:/usr/lib/ssh/sftp-server
    root@sunlab1:/[5]$ zfs list
    NAME                       USED  AVAIL  REFER  MOUNTPOINT
    rpool                     27.3G  9.33G    96K  /rpool
    rpool/ROOT                11.6G  9.33G    18K  legacy
    rpool/ROOT/s10s_u7wos_08  11.6G  9.33G  11.6G  /
    rpool/cfengine            73.7M   950M  73.7M  /var/cfengine
    rpool/dump                1.00G  9.33G  1.00G  -
    rpool/export              5.01G  9.33G  11.8M  /export
    rpool/export/home         1.40G  3.60G  1.40G  /export/home
    rpool/mp3                 2.65G  2.35G  2.65G  /mp3
    rpool/patches              206M  2.80G   206M  /var/patches
    rpool/swap                 768M  9.58G   514M  -
    root@sunlab1:/[6]$
    root@sunlab1:/[7]$ cd /export/home
    root@sunlab1:/export/home[9]$ ls -la
    total 47
    drwxr-xr-x   5 root     root           9 Oct  7 09:51 .
    drwxr-xr-x   4 root     sys            6 Jun  7 09:44 ..
    drwxr-x---  11 explorer explorer      11 Oct  7 11:30 explorer
    root@sunlab1:/[8]$ sftp explorer@sunlab1
    Connecting to sunlab1...
    Password:
    sftp> dir
    [...more output...]
    sftp> pwd
    Remote working directory: /export/home/explorer
    sftp> cd /var/adm
    sftp> dir
    [...more output...]
    sftp> get messages
    Fetching /var/adm/messages to messages
    sftp> pwd
    Remote working directory: /var/adm
    sftp> bye
    root@sunlab1:/[9]$
    root@sunlab1:/[10]$ pkginfo -l SUNWsshr
       PKGINST:  SUNWsshr
          NAME:  SSH Client and utilities, (Root)
      CATEGORY:  system
          ARCH:  sparc
       VERSION:  11.10.0,REV=2005.01.21.15.53
       BASEDIR:  /
        VENDOR:  Sun Microsystems, Inc.
          DESC:  Secure Shell protocol Client and associated Utilities
    [...snip...]
    root@sunlab1:/[11]$ pca -l installed --pattern=[Ss]sh
    [...snip...]
    Using /var/patches/pca/patchdiag.xref from Oct/14/10
    Host: sunlab1 (SunOS 5.10/Generic_142909-17/sparc/sun4u)
    List: installed (3/584)
    Patch  IR   CR RSB Age Synopsis
    141742 04 = 04 -S- 427 Obsoleted by: 141444-09 SunOS 5.10: sshd patch
    143140 04 = 04 RS- 119 Obsoleted by: 143559-03 SunOS 5.10: ssh patch
    143559 03 = 03 RS-  38 SunOS 5.10: ssh scp patch
    root@sunlab1:/[12]$ pca -l 141444 143559
    Using /var/patches/pca/patchdiag.xref from Oct/14/10
    Host: sunlab1 (SunOS 5.10/Generic_142909-17/sparc/sun4u)
    List: 141444 143559 (2/405)
    Patch  IR   CR RSB Age Synopsis
    141444 09 = 09 RS- 367 SunOS 5.10: kernel patch
    143559 03 = 03 RS-  38 SunOS 5.10: ssh scp patch
    root@sunlab1:/[13]$Legenda:
    PCA = [url http://www.par.univie.ac.at/solaris/pca/] Patch Check Advanced  , PCA is 3PP free and fast tool for Analyze, download and install patches for Solaris
    IR =Installed Rev. CR = Current Rev. (published on patchdiag.xref from Oct/14/10)
    RSB =[R]eccommended,[S]ecurity, [\B]ab patches
    Not helpful reading "<tt>man sshd_config</tt>" and "<tt>man sftp-server</tt>", and Google searching. Nothing by MOS Community search.
    Any idea?
    Best Regards
    Michele V.
    P.S.: Excuse me for my bad English.

    Hi OTN forums members,
         I find the solution. Thanks Andrea Manganaro (aka Amanga) for the help.
    1) Download and install OpenSSH for Solaris 10/SPARC and all dependencies(Please read the http://www.sunfreeware.com/openssh.html note):
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/openssh-5.6p1-sol10-sparc-local.gz]openssh-5.6p1-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/openssl-1.0.0a-sol10-sparc-local.gz]openssl-1.0.0a-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/zlib-1.2.5-sol10-sparc-local.gz]zlib-1.2.5-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/libgcc-3.4.6-sol10-sparc-local.gz]ibgcc-3.4.6-sol10-sparc-local.gz
    2) Configure <tt>/usr/local/etc/sshd_config</tt> file with the "+<tt>ChrootDirectory</tt>+" directive. For me:
    # override default of no subsystems
    #Subsystem      sftp    /usr/local/libexec/sftp-server
    Subsystem       sftp    internal-sftp[...]
    # Example of overriding settings on a per-user basis
    Match Group sftponly
            ChrootDirectory %h
            ForceCommand internal-sftp
            AllowTcpForwarding no3) Create group and user for sftp-only account. For me:
    root@taurus # groupadd sftponly
    root@taurus # grep sftponly /etc/group
    sftponly::202:
    root@taurus # useradd -g sftponly -c "Sftp only user" -d /export/home/explorer -s /bin/false -m explorer
    explorer:x:1002:202:Sftp only user:/export/home/explorer:/bin/false
    root@taurus # passwd explorer
    New Password:
    Re-enter new Password:
    passwd: password successfully changed for explorer
    root@taurus # 4) Change home directory permission and create a r/w direcorty (uploads) for sftponly user account.
    root@taurus # cd /export/home
    root@taurus # ls -la
    total 14
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 .
    drwxr-xr-x   3 root     sys            3 Jan 22  2009 ..
    drwxr-xr-x   3 explorer sftponly       3 Oct 29 15:41 explorer
    root@taurus # chown root:sftponly explorer; chmod 750 explorer
    root@taurus # ls -la
    total 14
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 .
    drwxr-xr-x   3 root     sys            3 Jan 22  2009 ..
    drwxr-x---   3 root     sftponly       3 Oct 29 15:41 explorer
    root@taurus # This will make a read-only, chrooted directory perfect for people to come in and get stuff, but never write.
    For example, you could make a directory explorer/uploads that allow people to write in.Then you can moderate what gets copied into the read-only /explorer area. Remember that if a user can write in a directory then they can also delete anything in that directory.
    root@taurus # cd explorer
    root@taurus # mkdir uploads && chown -R explorer:sftponly uploads && chmod 0755 uploads
    root@taurus # ls -al
    total 9
    drwxr-x---   3 root     sftponly       3 Oct 29 15:41 .
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 ..
    drwxr-xr-x   2 explorer sftponly       2 Oct 29 15:56 uploads
    root@taurus # 5) Disable SunSSH "service" and enable OpenSSH "service" (with SMF):
    root@taurus # svcadm disable sshSee [url http://www.sunfreeware.com/sshsol10.html]here for Running openssh vis SMF on Solaris 10 Systems
    root@taurus # svcadm disable ossh
    root@taurus # svcs -a | grep ssh
    disabled       12:37:51 svc:/network/ssh:default
    online         15:29:41 svc:/network/ossh:default
    root@taurus # 6) Test your job :-)
    Helpful links:
    ==============
    http://www.sunfreeware.com
    http://www.openssh.org
    http://calomel.org/sftp_chroot.html
    HTH
    Michele Vecchiato

  • How to export only selected columns of WD ALV to excel

    Hi,
    I have WD ALV report with EXPORT button (since standard button was not working properly i just hide that and added custom one) & standard dropdown to choose layout. Out of 20 columns user may choose n number of columns, the same number of columns i need to transfer to xls. How to export only selected columns to xls. Any method or FM to filter number of columns being transfer to xls. please advise
    Rgds
    sudhanshu

    Hi,
    Where exactly we are (or going to be) using this reference i.e., CL_SALV_WD_CONFIG_TABLE. Im passing contents, filename & MIME type as:
    call function 'SCMS_STRING_TO_XSTRING'
        exporting
          TEXT   = TEXT
        importing
          BUFFER = XTEXT.
    WDR_TASK=>CLIENT_WINDOW->CLIENT->ATTACH_FILE_TO_RESPONSE(
    **path to the word file
        I_FILENAME = 'WDP.xls'
    String Variable
        I_CONTENT =  XTEXT
    File Type
        I_MIME_TYPE = 'EXCEL' ).
    In CL_SALV_WD_CONFIG_TABLE we have few methods related to column settings however not sure where exactly we will be using this class reference. can you please give some idea so that i can do some r&d in that.
    Rgds
    Sudhanshu

  • Read only users

    I have a user that only wants to see tables from a schema owner and nothing else. I have created the user with create session privilege and have granted select access to the tables the user needs to see. The user will access these tables via synonyms I have created
    is there a way in SQL Developer to eliminate all of the other options (such as procedures, packages, functions, etc.) such that the user only sees the synonyms folder and can select from there. I don't want the user to have any other functionality or see other functionality. Any suggestions would be welcome.

    Allowing the user to restrict which functionality they see in SQL Developer isn't something that is currently available, although a similar request was posted recently - see Hiding objects on Navigator tree As indicated there and already on this post, enhancements like this can be requested on the SQL Developer Exchange.

  • How to export some users

    Hello all!
    I need to export only a group of people, i am not working with companies, is there any option to filter some users to export?
    Regards!
    Maria

    Hi,
    have a look at the following blog posting which contains Windows BAT files.
    http://www.talkapex.com/2012/04/command-line-backups-for-apex.html
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • 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 / groups from repository

    Hi,
    how can i export users from the repository and import it in another one.
    regards,
    Osman
    Edited by: Ossy81 on Jan 18, 2010 2:30 PM

    Hi Osman,
    Here is a command to extract security objects from an OBIEE repository using the UDML command:
    C:\OracleBI\server\bin\nqudmlgen -U Administrator -P Administrator -R C:\OracleBI\server\Sample\samplesales\samplesales.rpd -O C:\OracleBI\server\Sample\samplesales\samplesales.udml -S
    nqudmlgen: This is the actual export command
    -U: This is the user flag, in my case Administrator
    -P: This is the password flag, in my case Administrator since I'm using sample sales
    -R: Is the source repository. I am sourcing from samplesales.rpd on a Windows box
    -O: Is the output file. I am populating a file called samplesales.udml in the same folder as the source
    -S: Exports only security objects
    Here is the command to import the objects
    nqudmlexec -U Administrator -P Administrator -I C:\OracleBI\server\Sample\samplesales\samplesales.udml -B C:\OracleBI\server\Sample\samplesales\samplesales.rpd -O C:\OracleBI\server\Sample\samplesales\samplesales2.rpd
    nqudmlexec : This is the actual import command
    -U: This is the user flag, in my case Administrator
    -P: This is the password flag, in my case Administrator since I'm using sample sales
    -I: This is the input script. In this case, the input to this is the output from the first command
    -B: This is the base repository. In this case, your base repository will be your target repository, the one where you want to migrate the users to.
    -O: This is the output repository. This command makes a copy and applies the changes in the UDML to that copy. So you need to specify an output file. This is the file that will have the changes. The base file will not have the new users since it is just used to make this copy.
    Good luck and if you found this post useful, please reward points!
    Best regards,
    -Joe

  • 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

  • Export Database Link & Public Synonyms using Expdp

    Dear All,
    We are using expdp to do schema level exports:
    expdp dumpfile=<Directory>:expdp.dmp SCHEMAS=S1,S2,S3
    We also want to export the Public/Private Synonyms (created for the objects owned by above users), Public/Private Database Links as part of above command.
    How we can achieve this? We are using 11gR2.
    regards,
    Riaz

    HI,
    Public synonym can not be exported and never exported even at FULL Export also. . You can get them from "dba_synonyms". I suggest that you create so customer script .
    select      'create public synonym ' || table_name || ' for ' || table_owner || '.' || table_name || ';'
    from      dba_synonyms
    where
         owner='PUBLIC' and table_owner not in ('SYS', 'SYSTEM')
    order by
         table_owner;
    More: Information:
    https://forums.oracle.com/thread/855639?start=0&tstart=0
    Oracle Data Pump Schema Export and Public Synonyms
    Thank you

  • Import AC3 5.1, export only stereo

    hello
    this is my second issue.
    I have audio files in 48khz AC3 5.1, I can import them to my m footage, but from that moment on it is only stereo.
    Premeiere Elemty V13 does not support AC3 5.1?
    I am also not able to tell PremElemts to use my ASIO, it only shows a WDM-driver which is not active on my computer, there is only ASIO and my window 7 sound does the "bling" on every speaker in the testpanel.
    (my sound equipment does AC3 5.1 I make the surroundfiles by myself, in VEGAS they work correctly -tested this on a computer with my friend...the files are OK)
    togehter with my 60P issue those issues would bring me to ask the community.
    from ADOBE there is no answer except :"we support AC3" but AC3 is not AC3 - there is 5.1 which I use and 2.0 which I dont use.
    brgds
    Peter

    helloyou are answering faster than I could check it.;-)
    I shure will come back if threre are more questions. wont let go someone who knows..!
    I am very surprised about your competence, from which I hope I can make use.surround is not THAT important. the 60P issue was much heavier. my little testvideo looked realy bad in 30P...now that I can export 60P I will try to do some 5.1 videos.
    I will read your instructions and try them. I will let you know.not today, today I am checking other issues.
    thank you very muchbrgds and have a successful new week
    peter
          Von: A.T. Romano <[email protected]>
    An: Peter Kremeier <[email protected]>
    Gesendet: 18:59 Sonntag, 18.Januar 2015
    Betreff:  import AC3 5.1, export only stereo
    import AC3 5.1, export only stereo
    created by A.T. Romano in Premiere Elements - View the full discussionPeter Premiere Elements (any version) does not offer 5.1 channel sound in any of its burn to end products - not Dolby Digital 5.1, AAC 5.1, Windows Media Audio 10 Professional 5.1....I am understanding AC3 as representing Dolby Digital which could be stereo (2 channel) or 5.1 channel (6 channels). But, you do have limited opportunities to export to file a file that has 5.1 channel audio. It is not going to be Dolby Digital 5.1. It will beAAC 5.1 or a Windows Media Audio 10 Professional 5.1 channel. The key to using even those limited possibilities is to be working from aproject preset described for use with 5.1 channel audio. And, not all the Adobe project presets come with 5.1 channel included in its description.The answer has been to make your own project preset to include 5.1 before opening your new project using your user created project preset as the project presetin your new project. I have done extensive and innovative work in the matter of Premiere Elements and 5.1 channel. The following is the first in a series of reports of how tos on thismatter.ATR Premiere Elements Troubleshooting: PE11: Exporting a 1080p50 or 1080p60 file with 5.1 Channel Audio I have other blog posts on this matter in the same location as the above. And, I will posts the other links if you are interested. Please let me know if you havequestions or need clarification on the matter. Thank you. ATR If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7107836#7107836 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7107836#7107836 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Premiere Elements by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • 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

Maybe you are looking for

  • How to use field symbols in program

    how to use field symbols can any one explain with example please.. Regards, venki...

  • AppStore Clerk - Parse iTunesConnect Sales Reports

    For those of you who have an app on the App Store you might find this useful. I created a little app to parse the iTunesConnect sales reports. It is free too! http://blog.fieryferret.com/2008/10/appstore-clerk.html Thank You, Bridger Maxwell

  • Embedding a google form into iWeb.

    I am trying to embed a google form into iWeb and the full form does not show up. I used the HTML widget and copied and pasted the google link. Thoughts?

  • Understanding targetNamespace attribute of the service ant tag

    I am using the servicegen and clientgen ant tasks provided by bea to generate the webservices rpc code for a bean client. Nested in the servicegen task, in the service tag is a targetNamespace attribute that is required http://e-docs.bea.com/wls/docs

  • Can't update my 5800xm

    Nokia has launched free maps for select models. 5800 is amongst the models listed. When I tried to install the app I got an error msg saying I needed to update the phone. I tried FOTA and PC updater but both methods returned "No updates available". M