Why no Rows  importing into dest schema by using network_link in data pump?

Hi,
Iam importing tables from source schema to dest schema by using direct network _link without dump file as shown below.
impdp pa_dis_sub/<password> NETWORK_LINK=mylink tables=pa_dis_sub.ipa_hist_bk table_exists_action=replace CONTENT=all directory=Data_Pump_dir logfile=exp_error.log
But no data is loading into dest schema.showing 0rows imported.not able to trace the issue. Any one aware why data is not importing?
Import: Release 11.1.0.7.0 - 64bit Production on Tuesday, 26 July, 2011 0:04:49
Copyright (c) 2003, 2007, Oracle. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "PA_DIS_SUB"."SYS_IMPORT_TABLE_01": pa_dis_sub/******** NETWORK_LINK=mylink tables=pa_dis_sub.ipa_hist_bk table_exists_action=replace CONTENT=all directory=Data_Pump_dir logfile=exp_error.log
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 0 KB
Processing object type TABLE_EXPORT/TABLE/TABLE
. . imported "PA_DIS_SUB"."IPA_HIST_BK" 0 rows
Job "PA_DIS_SUB"."SYS_IMPORT_TABLE_01" successfully completed at 00:05:14

868591 wrote:
Iam not using export.
iam using direct import from source schema to dest schema using network_link option.http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#sthref319
Edited by: sb92075 on Jul 25, 2011 9:36 PM

Similar Messages

  • Multiple Import into Multiple schemas in a single Database server ?

    Is it possible to create a multiple import into multiple schema in a single DB server ?

    Hi,
    Yes, You can do it.. With Multiple Export File..it may cause some Performance issue, so need to check your Server configuration before do that..

  • XML files imported into SPRC are not properly loading associated data into SPRC

    Hi EHS Gurus,
    My Issue is - XML files imported into SPRC are not properly loading associated data into SPRC .
    When am uploading the XML files manually its working fine in /TDAG/CPM00.
    The same when we are uploading the XML files thru basis program IPC (XML) Documents into SAP , its not working .In XMl file it showing its complaint the same time compliance workbench complaint statues it showing empty .
    for you reference pls see the attached screenshot .
    Pls can you help me on this .
    Regards,
    Suresh.

    Hi EHS Gurus,
    My Issue is - XML files imported into SPRC are not properly loading associated data into SPRC .
    When am uploading the XML files manually its working fine in /TDAG/CPM00.
    The same when we are uploading the XML files thru basis program IPC (XML) Documents into SAP , its not working .In XMl file it showing its complaint the same time compliance workbench complaint statues it showing empty .
    for you reference pls see the attached screenshot .
    Pls can you help me on this .
    Regards,
    Suresh.

  • Importing a whole schema but leaving out its data.

    Hello,
    We're working on a project and the development phase is over. We would like to go to production with an empty database. The problem we're facing is that the development schema contains the data used to test the application. That schema is to be imported to the production, but we do not want to import its data. Is there a way to achieve this through an import/export? If yes, how?
    Thanks in advance.

    Hi,
    Version of ORACLE .. ?
    exp userid=system file=full_ddl_scripts.dmp rows=n
    If you want to see the contents go for Options like show=y
    Do Schema level Export, as per your requirement.
    Refer : http://www.psoug.org/reference/import.html
    - Pavan Kumar N

  • How to import into ALSB a resource using WLST

    Hi all,
    I've an ALSB project that contains my templates (proxy, business services, xsd, etc) and I use a WLST script for creating a new project, reading additional info from a xml file, cloning ALSB stuff from my templates.
    The cloning process is working very well and now I'm trying to import xq, xsd, etc in order to replace the old with the new ones.
    As starting example I've already download the code sample created by Gregory Haardt.
    During the import phase I got an error:
    [java] #### [EventBus-DummyEvent] cloning the TransformIntoConsumerEvent proxy template
    [java] template : EventBusCore/template/[ConsumerEvent]-[ConsumerName]-TransformIntoConsumerEvent
    [java] template cloned into : EventBus-DummyEvent/consumers/Consumer1/resource/DummyEvent-Consumer1-TransformIntoConsumerEvent
    [java] #### read resource Zip file: /products/software/terraferma/release3/EventBus/repository/events/DummyEvent/DummyEvent-resources.zip
    [java] New XQuery Ref Xquery EventBus-DummyEvent/DummyEvent-IPEventConfig
    [java] #### loaded resources in project: EventBus-DummyEvent
    [java] Diagnostics for Policy EventBus-DummyEvent/DummyEvent-IPEventConfig
    [java] ERROR: <0> invalid ws-policy: policy must have a 'wsu:Id' attribute.
    [java] ================================================
    [java] #### ERROR - creation error: IPEvent project <EventBus-DummyEvent>, one or more files could not be imported properly
    [java] ================================================
    [java] No stack trace available.
    [java] Unexpected error: defClass.CreationFailure
    [java] No stack trace available.
    [java] Problem invoking WLST - Traceback (innermost last):
    [java] File "/products/software/terraferma/release3/EventBus/scripts/cloning.py", line 662, in ?
    [java] File "/products/software/terraferma/release3/EventBus/scripts/cloning.py", line 131, in cloning
    [java] File "/products/software/terraferma/release3/EventBus/scripts/cloning.py", line 621, in loadResources
    [java] CreationFailure: 'IPEvent project <EventBus-DummyEvent>, one or more files could not be imported properly'
    The zip contains the new xquery:
    jar tvf .../DummyEvent-resources.zip
    7575 Fri Sep 21 14:22:20 CEST 2007 DummyEvent-IPEventConfig.xml
    and the script is:
    # create the new XQuery ref
    queryName = IPEventProjectName + '/' + IPEventType + '-IPEventConfig'
    newXQueryName = queryName.split("/")
    newXQueryRef = Ref(TypeIds.XQUERY_REF, newXQueryName)
    print "New XQuery Ref", newXQueryRef
    bytes = readBinaryFile(resourceZip)
    result = ALSBConfigurationMBean.importZip(projectRef, bytes, None)
    print "#### loaded resources in project:", IPEventProjectName
    # check for errors
    diags = result.getFailed()
    if diags != None and diags.isEmpty() == false:
    printDiagMap(diags)
    failed = 'IPEvent project <' + IPEventProjectName + '>, one or more files could not be imported properly'
    raise CreationFailure(failed)
    Do I need to create a Ref object for any resource to be imported? What is the meaning of 'invalid ws-policy'?
    Thanks
    ferp

    solved ...
    I changed the file extension of the xquery inside the zip file from .xml to .xquery:
    jar tvf /.../DummyEvent-resources.zip
    0 Fri Sep 28 14:07:36 CEST 2007 resource/
    548 Fri Sep 28 14:09:44 CEST 2007 resource/DummyEvent-IPEvent.xsd
    7575 Fri Sep 21 14:22:20 CEST 2007 resource/DummyEvent-IPEventConfig.xquery
    I've also noted that if I organize the artifacts inside the zip within folders that structure is preserved in ALSB:
    [java] #### loaded resources in project: EventBus-DummyEvent
    [java] #### ... XMLSchema EventBus-DummyEvent/resource/DummyEvent-IPEvent
    [java] #### ... Xquery EventBus-DummyEvent/resource/DummyEvent-IPEventConfig
    Best
    ferp

  • Import into SQL Server db from Sybase 7 data source - SQL Server 2008 R2/2012

    Hi,
    I need to import Sybase 7 data into a SQL Server 2008 R2 or 2012 database.
    Has anyone any experiences about this import?
    Thanks

    The nuance is in basically setting your connection manager right.
    If I remember correctly, I did that using the ODBC/ADO, but I do not remember the Sybase version.
    I suggest you visit a post dedicated to this operation (the author chose to use the ADO.NET type of a provider):
    http://msbimentalist.wordpress.com/2013/11/01/import-and-export-from-sql-server-to-sybase-db-using-ssis/ 
    Arthur My Blog

  • Why has my iPad 2 suddenly started to use all my data allowance in one night?

    My ipad 2 used up my January 1gb data allowance in one night while I slept and my ipad wasn't being used. When I contacted my provider as a gesture of goodwill reinstated my 1gb.  I was extremely careful with my usage.  I only surfed the net using my Cellular Data and used a WiFi connection for any downloads.  I had used about 450mb up until the 21st of this month and then suddenly I had completely used the rest of my allowance in one day.  I do not watch you tube, Facebook, Twitter or use any social media.  Very frustrating as the previous 8mths of using my ipad I had never gone over my data allowance.  It seems to have started when I have been using WiFi in one location and then back to Cellular at home.  I am fortunate that my provider slows the connection and makes it impossible to use, therefore I don't get charged extra fees. 

    The iPad always uses wifi first when available. If not available, it switches to cellular, if cellular is turned On. You must be losing wifi connection. To keep from using your data plan, turn cellular Off, except when you need it.
     Cheers, Tom

  • Importing into iphoto 11 - some are duplicated

    Why when I import into iphoto11 from a external HD, does iphoto duplicate some pictures?
    I've tried importing by clicking and dragging the entire folder from my external HD into iphoto, and the more laborious file/import/ etc etc...
    But whatever way I import, for some reason iphoto displays all my pictures and about 90% of them are duplicate, and I effectively have two copies of the same photo. When I open the duplicated photo it appears to be a smaller version (like a thumbnail).
    Perhaps I should point out I am switching over from a windows PC where all of these photos were orginally saved.
    I just want like for like transferred and no thumbnails or duplicates it looks far too messy not to mention the additional space on my MacBook it's taking up!
    Any help appreciated!

    OK Apologies for the long winded reply, but this is what is happening:
    I connect my external HD drive and open iphoto.
    The external HD is not showing in iphoto under 'devices'.
    So, I click on file/import to library and select my external HD. I then select my pictures I want imported.
    In this case I've chosen a folder with 50 pictures inside.
    I click on the folder and press 'import'
    iphoto then imports all the photos. OK so far.
    Once finished the 'last import' is automatically selected.
    All my imported photos are shown as thumbnails. When I click on these thumbnails the large size pic is displayed. No problem so far.
    Now this is where it gets weird.
    After all my 50 photos are two copies each of every single photo I've just imported. When I click on these two, one is a small thumbnail size photo, and the other is a larger but not normal size picture. They are about 3kb and 15kb respectively. (The real picture is about 3.4MB)
    They also have the name vcm_s_kf etc... i.e NOT DSC0001.jpeg
    So, when I click back on Events, the imported folder is there with all the pictures in.
    However every single double copy is also listed and shown underneath as a thumbnail.
    In the advanced preferences the box is checked saying copy items to the iphoto library.

  • How to import multiple XML schemas in Toplink.

    Hi All,
    I try to import multiple Schema(defined by EPCGlobal) in toplink This schema imports few other schemas and all are available in the same location.
    For this I tried to create a project by selecting XML radio button, and specified an XSD. The classes are getting generated for this file. After this, I try to import all other schema's using the Import schema option. I'm able to import it. but, I'm not able to generate classes for the schemas imported recently. Can you please let me know whether this is the expected behaviour..?
    Alternatively, I try to import a Schema(defined by EPCGlobal) in toplink through a TopLink-Jaxb Project. But I get the following exception..
    oracle.xml.parser.schema.XSDException
    at oracle.xml.parser.schema.XSDBuilder.buildSchema(XSDBuilder.java:754)
    at oracle.xml.parser.schema.XSDBuilder.build(XSDBuilder.java:407)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.toplink.workbench.utility.ClassTools.invokeMethodWithException(ClassTools.java:572
    at oracle.toplink.workbench.utility.ClassTools.attemptToInvokeMethodWithException(ClassTools
    .java:198)
    at oracle.toplink.workbench.utility.ClassTools.invokeMethodWithException(ClassTools.java:541
    at oracle.toplink.workbench.utility.ClassTools.invokeMethodWithException(ClassTools.java:526
    at oracle.toplink.workbench.mappingsmodel.schema.MWXmlSchema.reload(MWXmlSchema.java:481)
    at oracle.toplink.workbench.mappingsmodel.schema.MWXmlSchemaRepository.addSchema(MWXmlSchema
    Repository.java:107)
    at oracle.toplink.workbench.mappingsmodel.schema.MWXmlSchemaRepository.createSchemaFromFile(
    MWXmlSchemaRepository.java:89)
    at oracle.toplink.ox.jaxb.compiler.tljaxb.generate(tljaxb.java:70)
    at oracle.toplink.ox.jaxb.compiler.tljaxb.main(tljaxb.java:44)
    I tried to use the "tljaxb.cmd" but there too the same problem occurs.Where the problem could be..? please let me know.
    As I'm struck with this problem, please throw some light in this regard.
    Thanks
    Rajasekaran

    Rajasekaran,
    I have examined your XML schemas and do not believe that the problem is due to the import. Instead it is because the XML schema being imported is itself invalid. I have emailed you the specific correction to your XML schema. It was an error related to the namespace qualification of the type in one of your element declarations.
    -Blaise

  • What are best size photos to import into a high def project?

    What size and form of photos would you import into FCPX to be used in a high def montage with or without ken burns effect?

    Just to clarify Toms' statement, 2-3 times your video size, ie. 1920x1080, (not 2-3 times your original stills file size)
    Tony

  • Problem importing two service interfaces using the same data types

    Hi,
    I've been playing around with BPM for a while. Now I wanted to add a custom service interface to my starting event. I created the interface in ESR of CE 7.11. After importing I get this error message and I can't use the interface:
    Cannot change XsdSimpleTypeDefinition AcademicTitleCodeContent by importing the document http://sap.com/xi/APPL/SE/Global::src/wsdl/TestInterface.wsdl, because it is already defined in the document http://sap.com/xi/APPL/SE/Global::src/wsdl/rootwsdl_CustomerERPByIDQueryResponse_InService.wsdl in this project. Importing into another project might be possible.
    Of course the problem is clear, but how can I achieve importing two service interfaces that use the same data type without changing the xsd source?
    Thanks in advance,
    Mane

    Sorry for the late answer, but I am really busy at the moment.
    Unfortunately I can't the Interface and data types are already changed.
    But this happened various times. Each time I already had imported a SAP Enterprise Service into NW BPM that contains a bunch of inline data types. While creating my own interface I referenced one of those data types that are stored in a SAP namespace. After import the error message appeared.
    In the wsdl of the created interface there is a import statement for the namespace where the referenced data types origin from. Additionally there is a namespace definition xmlns:p1="SAPnamespace". In the element the type is "p1:ReferencedType". Could this maybe cause the error, because one time it is with this leading p1 in my created wsdl and once without in the SAP Service wsdl?
    Thanks and I am looking forward to next EhP of NW BPM,
    Mane

  • Why won't my RAW files import into LR4?

    Hello all,
    Something very strange is going on with LR4.  I have been using LR since version 1 and never had this happen before.  When I have an SD card filled with jpegs and RAW files from my Fuji X100 camera and try to import all of them into LR 4, ONLY the jpeg files get imported.  None of the RAW files get moved into LR at all.  I have to create a new folder, move all the RAW files so that they are alone, and do a second import.  Why is this?  Why cannot I import all at one time, not even thinking about the difference?
    Seems absolutely stupid that my RAW files are being ignored.
    Thanks for the help.  Appreciate it.

    treborsetag wrote:
    Sorry, I assumed that you were shooting RAW + jpg.  What I think you are now saying is that you have a shoot in which some of the files were shot in RAW and some in jpg?  In that case, I don't know why it would only import RAW on the first go round and jpgs on the second. When I have mixed files (I shoot only RAW, but panoramas  are by definition only jpgs), they all import on the first try. In fact, even video files come in at the same time.
    If you did shot RAW+Jpg then you could either check the box, in which case you will see two files, or uncheck it, in which case you will see one (with the other hidden). But since that's not the case, that check box doesn't apply to you.
    Right.  Most of my shots are jpegs.  But on rare occasions, I want a RAW file so I hit the RAW button on the X100 and then shoot RAW for one shot.  This last import I had 10-15 RAW shots and they would not import along with all the jepgs.  This happens everytime I have mixed file formats.  Very frustrating.
    Thanks for trying!

  • Why do many of my song I have imported into iTunes have slats by them and won't play because they can't be found?

    why do many of my song I have imported into iTunes have slats by them and won't play because they can't be found?

    Presuming they're on your computer, right click on them and then follow the prompts to locate hte file on your computer.

  • Why wont my clips import into Final Cut Pro ?

    Why wont my clips import into Final Cut Pro ?

    FCP doesn't work with 3GPP, which is basically a cellphone compression format. FCP only works with media in the QuickTime framework. It only works with video in standard video frame resolutions, which 800x480 isn't, and with video that uses uncompressed audio, while yours is compressed.
    Standard definition video is 720x480 at 29.97fps with uncompressed 48k audio in a production codec, which H.264 isn't; it should be either DV or DV50 or ProRes.

  • Imovie media browser only has one option, "Mobile". other videos had option for medium and small. mobile option wont import into iDVD. other videos gave me the Medium option, why not this one?

    help! imovie media browser only has one option, "Mobile". other videos had option for medium and small. mobile option wont import into iDVD. other videos gave me the Medium option, why not this one? need answers ASAP!

    That is your answer then.
    Large is 960x540
    Medium is 640x480 (or 720x480)
    Mobile is probably 480x272.
    It is offering you the sizes that make sense given the size of your source material.
    As a trick, you might try this. In your project, put a short 640x480 clip in the project as the first clip of the project. Then keep the rest of the project as is. See if it will let you share now in Medium. It will not look as good, because there are not enough pixels to cover the Medium size, but it might work.

Maybe you are looking for