Is there a way to bring the schema names forward when you deploy a mapping?

Hi all,
I am working in a database instance where there are objects in multiple schemas needed for a single mapping. Currently I have to create a grant statement and then create a synonym to get the deployed package to compile and run. Is there an option I can turn on where instead of it just bringing forward "<Table_name>" that it will generate "<Schema_name>"."<Table_name>"?
This would remove the need for creating all of the synonyms I currently have to create.
Any help would be appreciated.
Thanks,
Shaun

So you need a different location for each schema, the 'masteruser' that can access all the schemas is used for authentication as below (so MASTERUSER has access to SCOTT and HR), see how MASTERUSER is provided for the user name and the specific schema (HR or SCOTT) provided for the schema:
!http://blogs.oracle.com/warehousebuilder/schema_mapping_example1.JPG!
Then when code is generated the schema is added to the table references:
!http://blogs.oracle.com/warehousebuilder/schema_mapping_example2.JPG!
Cheers
David

Similar Messages

  • If I get a user to enter their name as a variable and I am linking one movie to another using a button, is there a way to carry the user name forward into the second movie?

    If I get a user to enter their name as a variable and I am linking one movie to another using a button, is there a way to carry the user name forward into the second movie?

    Hi there
    See if the link below helps
    Click here
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Is there any way to disable the firefox search option when you long press the home button on Samsung Galaxy S5 Active?

    I have an S5 Active and sometimes the home button sticks and registers as a long press which brings up Firefox search instead of going to the home screen. Is there any way to disable Firefox Search so that this doesn't happen. I Love the Firefox browser but if this keeps happening I will have to uninstall it.

    hello djpianalto, you could clear the default settings for firefox on android within the system settings (like described in this [http://www.howtogeek.com/195885/how-to-set-and-clear-a-default-app-on-an-android-device/ external article]).
    or try an app like https://play.google.com/store/apps/details?id=hk.sld.SwipeLaunchDisabler

  • Is there a way to bring the object to the front of the layer (via as3)?

    So, I have a line of buttons that pop up when moused over. Unfortunately, due to their proximity to one another, I have a lot of overlap occurring. Is there a way to bring the activated button in front of the others via as?

    Yep!
    Just like:
    var button1:Sprite = new Sprite();
    with( button1 )
    graphics.beginFill(0xcc0000, 1);
    graphics.drawRect(0, 0, 40, 23);
    x = 30;
    y = 30;
    var button2:Sprite = new Sprite();
    with( button2 )
    graphics.beginFill(0x000000, 1);
    graphics.drawRect(0, 0, 40, 23);
    x = 60;
    y = 40;
    addChild( button2 );
    addChild( button1 );
    button1.addEventListener( MouseEvent.MOUSE_OVER, emerge );
    button2.addEventListener( MouseEvent.MOUSE_OVER, emerge );
    function emerge( event:MouseEvent ):void
    addChild(event.target as DisplayObject);
    CaioToOn!

  • Is there a way to alter the file name given to the attachments in an email button?

    When ever I click the standard email button, I get an attachement with random alfa and numeric characters for the file name.  Is there any way to change the files names to match a data field in the form or start with something I choose?
    Thanks,
    Judy

    Hi RudyLou36,
    While viewing the form in Preview TAB of LC Designer you will always get the junk characters as the name of the file. Save the file and open it in Acrobat or Reader.
    You won't be able to change the filename unless you save the file first. Here (http://forums.adobe.com/thread/462681) is an example of a number of ways to deal with parts of the email programatically.
    Regards,
    ratnesh

  • Is there any way to have the clip name show up in the video

    is there a way to have the clip name (kind of like a title) automatically?  I do highlight videos and for the early versions I upload it with clip numbers to make it easier to identify the clips to move them around.  My clip names are the same as those numbers...if I could just show the clip name when I upload the video it would save me a TON of time.  Anyone know of a way to do that? Thank you!

    safari remembers it's last window position when you close it. so next time you start it will open in the same position it was when you quit it last. that's the only control available. there is no other way to fix the safari starting position.

  • Is there any way to see the  user name(authorized) to logon IR

    Hi,
    Is there any way to see the user name(authorized) to logon Integration Repository?
    I am getting error while trying this out.
    Can anyone please help me.
    Thanks.

    Hi,
    YES, you can see in SU01 and select the user . ANd check for the Roles assigned to that particular User.
    By seeing the Roles itself we can be able to say the Authorized or not
    Regards
    Seshagiri

  • Is there any way to show the file name super imposed on the slides?

    Is there any way to show the file name super imposed on the slides in Premiere Elements 9?
    I am setting up pictures as slide show along with some movie clips but wanted the desctiptive file names appearing with each picture.
    Thanks!

    Yes. In Timeline mode, you add it to an upper video track as a title.
    I show you the basics of titles in the Basic Training tutorials at Premiere Elements support site Muvipix.com.
    http://forums.adobe.com/thread/537685?tstart=0

  • Is there a way to get the actual XML string when using the JAXP SAX Parser?

    Hi All,
    I am using a JAXP SAX xml parser and am looking for a way to get the actual line of xml that is being parsed from within a content handler.
    Here's my scenario. Consider the following example xml document.
    <formCollection>
       <form name="myForm">
          <text/>
          <selection/>
       </form>
       <form name="anotherForm">
          <text/>
       </form>
    </formCollection>My hope is to validate the entire document and then insert an xml string containing each "form" element (and its sub-elements) into a map for later use. My thought was to create a String as each "form" element is being parsed (begining with the form's startElement event and concatenating until the form's endElement event is reached) and then inserting this string into the map. Is there a way to get the actual line of xml that is being parsed, rather than just the element name and attribute values?

    DrClap wrote:
    YouRang wrote:
    2. The first handler would validate the entire XML document, extract the "type" attribute from each <form> element, and place each <form> element and its sub-elements into the map of Strings, using the "type" attribute as the key. The second handler would take a <form> element and parse it into a Form object for the display. This option was the impetus for my question because it relies on the first handler being able to access the entire <form> element XML String and write it to a map.I don't see why you need the raw data from the XML document here. You should already be abstracting your data into Java classes in the first handler, instead of making the second handler do the parsing all over again.Correct, I am not referring to XForms. In this case, it happens that I am using the XML to generate an SWT ScrolledForm object and, thus, the XML element name happens to be named "form." However, the concept/design problem could apply to any type of object and the XML element could be appropriately renamed.
    My experience with XSLT is limited and I haven't done anything with it for several years. With that said, it seems that it is primarily used for generating web content, which wouldn't apply in this case because this is for a client-server application. I could be off base on this one -- if XSLT applies to much broader translations and would be more appropriate for generating Java objects than my current methodology, I could certainly look into it further.
    I apologize that option two didn't make more sense; it is difficult to explain. Yes, optimally the data should be abstracted into Java classes in the first handler. This is really an elaboration that I failed to specify when explaining option one. The problem is that the user can choose to create any number of "forms" of any type. For instance, let's say that from the File -> New menu there are options for seven different types of forms and each form is used to send completely different data. The user can select form1, select form1 again, select form4, and select form7 (or any other combination) and bring up tabs that display the different forms. The user can then enter data and submit each form separately. When the user selects File -> New -> FormX, a SWT ScrolledForm object that corresponds with FormX must be given to the display. Because SWT ScrolledForm objects do not allow a deep copy, I cannot simply read the XML <form> elements at initialization, parse them into ScrolledForm objects, and pass deep copies of the ScrolledForm objects to the display each time the user clicks File -> New -> FormX. The only simple way I see of getting a new copy of a ScrolledForm object is to reparse the appropriate XML <form> element in order to create one each time the user selects File -> New -> FormX. As such, one handler would need to read the entire XML document and parse the <form> elements into a map (or some other data structure) and another handler would need to parse individual <form> elements into SWT ScrolledForm objects. The first handler would be called at initialization and the second handler would be called each time a user clicked on File -> New -> FormX. Once again, this isn't exactly my favorite implementation... but seems the simplest given that there is no way to do a deep copy of an SWT ScrolledForm object. Hopefully that makes a little more sense. No worries if it doesn't -- I just figured I'd throw this out there and see if anyone had a better idea.

  • Is there any way to activate the keep identity setting when using a Transfer SQL Server Object Task?

    Is there any way to add the "Keep Identity" option to the tables selected for transfer in a Transfer SQL Server Object Task?  It seems that would be very useful, yet I can't find an easily available setting for it.  I would prefer to
    accomplish this within the Transfer SQL Server Object Task since it can copy any new fields added to the source tables, as opposed to having to rebuild a custom Data Flow Task any time a table structure is altered.  I thought setting "CopyPrimaryKeys"
    to True would do the trick, but I found that only ensures that the column settings are transferred; when the transfer happens, the destination id column is populated based on the specified seed and increment value, not what's actually in the source table. 
    I'd like to point out that replication isn't really an option here. This is a package that runs a few times a day to keep some data on our website up to date with data in our protected corporate environment.

    IIRW there is FastLoadKeepIdentity specifies
    whether to keep an identity in OLEDB destination 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Is there any way to get the canvases names on the form

    i have a form in Orcle 6i
    i want when the form load i get the names of the Canvases on the Form automatically
    to change their visual attribute
    is there any way to get the name of the canvases on the form automatically
    Thanks in advance

    The amount of time to evaluate each item in a Form is a lot less than you think. You are dealing with milliseconds. Worse case scenario, you might add 1 second to your form load time.
    I think Francois's suggestion is the best solution, but if this is still too much time, you might concider creating strategic When-New-Item-Instance triggers on an item in each of your canvases that would perform what you want to do.
    This will most likely cause problems of its own, but it is an alternative.
    Food to get the thought process flowing... :-)
    Craig...

  • Is there a way to modify the schema-mapped XML that is generated by the submit action prior to submission?

    I have a form created in LiveCycle ES2. I have mapped some fields to a schema that causes LC to generate XML that adheres to the import format of one of my company's internal databases.
    There is one problem: the system's import function looks for a DTD DOCTYPE declaration between the XML declaration and root element. I've tried including the declaration in the schema, but LC does not include it in the mapped values or the export. I've spoken with the vendor about declaring the DTD as part of the import function and they have given a firm "No."
    Is there a way to insert one line of markup into the XML that LC generates in the submit action before the XML is attached to the e-mail?

    Thanks for pointing me at those. Worked like a charm. My stylesheet ended up looking like this (in case anyone is curious later on):
    <?xml version="1.0" encoding="UTF-8"?>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <xsl:template match="/">
                <xsl:text disable-output-escaping="yes">
    &lt;!DOCTYPE name SYSTEM "http://location/DTD/name.dtd"[]&gt;
                </xsl:text>
                <xsl:copy-of select="root node"/>
            </xsl:template>
        </xsl:stylesheet>

  • HT204150 I mistakenly deleted my calendar and my shared calendars from my I pad. Is there any way to bring the data back

    I mistakenly deleted all y calendar entries. And shared calendar eateries.  How can I get this data back onto my iPad

    If you've been making backups to icloud, then you should perform a restore to the ipad, unless you had the data on a computer, in which case you could try to restore the calendar file from a backup.
    http://support.apple.com/kb/HT1766?viewlocale=en_US&locale=en_US
    Go to Settings>General>Reset and tap Erase All Content and Settings.  This will erase your phone.  Then you will go through the setup screens again as you did when your phone is new, and when given the option, select Restore from iCloud Backup.

  • Is there a way of having the email name show and not the Company name.

    I have a few address listing for Companies that have 7 or 8 names.
    I have them listed with the custom names for each person separately.
    I really do not need separate e-mail listings for each person.
    Is there a way that would list the individuals name on the email header and not the Company name.
    IOW's : ABC company and a listing for John Smith shows ABC when I mail it.
    I gather also that it would show ABC when John Smith received it.
    I am trying to give it a more personal touch without creating dozens of additional address's.
    Thanks,
    Greg
    null

    Thanks for replying Dan, you're right, I should provide more context.
    I want to be able to duplicate a shape inside a layer a number of times, and with every duplicated shape, I want that shape to evaluate what number it is (based on a name I give it so I could name it '1' and then use something like 'eval(propertyname)' to return a number or perhaps use an index to count the number of shapes in the layer) and multiply that number by some set of rules that I can define and control through a list of expression controls on another layer. This would allow me to duplicate a square 10 times and have each square's position do something like
    x = thisShapeNumber + shapeLength * TranslateExpressionControl;
    y = 0;
    [x,y]
    which would form a long line of squares for instance. Does that make sense?
    thanks in advance!

  • My iPad was just stolen is there any way to track or locate an iPad when you did not set up iCloud or any of the safety features and you don't have the serial number?  Sincerely , Been Robbed

    I just bought an iPad 4 from an individual - I have not had a chance to set up the iCloud tracking feature or any type of feature like  that - it was just stolen out of my car I do have my Apple ID and username is there any way I can track it or locate it or is there anything I can do it all??
    Sincerely,
    mad sad frustrated and ****** off
    I appreciate any advice you can go me!

    Kyston wrote:
    - I have not had a chance to set up the iCloud tracking feature or any type of feature like  that -
    Sorry... there is no way to track it then...
    See here > http://support.apple.com/kb/HT5668 for Lost or Stolen iOS device

Maybe you are looking for

  • How to delete one of your photo albums but doesn't have a red thing

    I went on my friend's computer to download my pictures from my pervious phone, I noticed that the pictures came up twice in 2 different albums. It won't allow me to delete on or both of the albums. Also when I take a picture it goes into a third albu

  • Is there any anti virus application/software that i can download for ipad2?

    do i need to download/buy an anti virus protection for my ipad 2? if so,, any suggestions? tried looking for avg but it doesnt have a scanner all they have is net protection for adult websites (kinda sorta like that). thanks

  • Powering down issue

    I recently had to reinstall Windows XP Home on my computer due to a corruption error message that came up as it posted.  The computer works fine but it has begun to restart after the shutdown from Windows.  When I click on "Shut down," it logs me off

  • Pulse detection Mood Lamp

    Hi Guys, Im doing my Final Year Project and i have a lot of issues to solve and im stuck. i hope somebody can help me. Besically, My groupmate and myself have decided to create something called the Pulse detection Mood Lamp. This is how we hope it wi

  • Team work ( DC Development, Integration )

    HI, I am the only one who is working in EP Development .  Now we are planning to take some people into the same field. So ! I need to have Idea about how the team work can be done in EP Development. How to distribute the work and and ask the others t