Is it possible to create this kind of DBLINK?

Hello Sirs, how are you?
I've been trying to create a new "PUBLIC DATABASE LINK" that will connect two instances located on different places geographically speaking. The fist step I took was to create an entry on local tnsnames.ora file, using NETMGR and after, the second step, I created the DBLINK with the following syntax:
CREATE PUBLIC DATABASE LINK "DBX"
CONNECT TO <user> IDENTIFIED BY <pass>
USING '<service_configured_with_netmgr>';
So, the message Oracle gave me after issuing the command above was "public database link "DBX" created". Finishing this ride, I selected the number 1 from dual@DBX and the result was...
SQL> select 1 from dual@DBX;
select 1 from dual@DBX
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 272
ORA-02063: preceding 3 lines from DBX
Any idea about that problem? Thanks!
Edited by: Wagner Bianchi on 09/04/2012 12:03

I haven't done much of this, so I'm only speculating.
I think you are seeing the effects of implicit conversions.
> desc dual
Name                                      Null?    Type
DUMMY                                              VARCHAR2(1)Your number 1 in the select is being converted to a varchar, and due to the different NLS semantics of the two db's, it expects a larger size in one. So when it goes to the other, you get a too-bit-too-fit error. I would expect more to be different than just the two NLS you listed, though, are the db charactersets different? Perhaps someone else is set up to test these things.
There are various bugs associated with these two NLS settings, maybe you are hitting a consequential one (that is, you are seeing the effects of a bug that is unknown or listed as having different effects). Search MOS bugs for the settings. Do you have any other errors in the alert log or in any apps? What patch level/version/platform are you on?

Similar Messages

  • It seems not possible to create this kind of "Brush" in Photoshop CS6, can anyone help?

    I found this website.
    http://newhive.com/andrew/drawonme?q=%23All%2F
    And I thought this "brush" is a  really cool technique for fast sketches. But it does not seem possible in photoshop, does it? I tested it with CS5 and even the new CS6 Brushes.
    Thanks for any help

    If I understand correctly the »thing« about this Brush is that it creates individual lines that interact with existing strokes by fanning them out when in proximity to an existing path.
    I think this is not possible with a Brush in Photoshop what with it being a pixel oriented application (with some vector functionality, though, fortunately).

  • How do i create this kind of effect

    Hi i was just wondering if anyone knows of any tutorials or anything on creating this kind of effect. Do you think it was done in after effects?
    Its the 3d camera pan at around the 2:40 mark of the video.
    http://www.coreonlinemagazine.com/index.php/aaron-hadlows-new-movie-calibrate/336
    Thanks

    One more thing, guys. I looked through most of the effects he used and I can explain how did it, except how on earth did he pull this off?
    Take a look, I isolated them (hope these links work):
    http://www.mediafire.com/?2mgyymnbb2m
    http://www.mediafire.com/?z1mnyanwgmn

  • ----- Is it possible to create this mask shape effect in FCP X?

    I've been playing around with some masks in FCP X, but I cannot figure out how to create this effect..is it possible?
    I am interested in creating a mask shape where I can use it to identify something on the screen inside the shape with the surrounding area darker.
    In FCP 6/7, I used to just add a slug on top of the clip, add a mask shape, tweak it, invert it and lower the opacity.
    Any thoughts?
    Thank you.

    AppleUsur wrote:
    …  I am interested in creating a mask shape where I can use it to identify something on the screen inside the shape with the surrounding area darker.
    in FCPX no masks nor additional tracks needed:
    select the clip
    in the Info board, select the Color Correction
    there's a built-in Mask tool - select that
    switch on the Color Board, here comes the trick: …
    you are allowed to select WHERE the correction is applied: inside or outside the mask
    (in my German interface Innen/Außen)
    drag down the general exposure
    there are handles to define size, shape, position
    you can drag the outer circle (no handles) to define blurr gradient
    you can even animate that highlight by key-framing it ....
    with the same tool, you can e.g. apply super-fast some simple 'grading' such a 'CSI Miami-style Blue Sky':

  • Is it possible to create this type of  EFFECT in After Effect

    http://www.simonbronson.com/#326097/hmv-xmas-2009
    Is it possible to do This type of Graphic Effect in After Effect..?

    I assume that you're referring to the twisty 3D ribbons.
    Zaxwerks 3D Serpentine is good for that:
    http://zaxwerks.com/3dserpentine/index.shtml

  • Is it possible to do this kind of Move and Rename?

    I save pictures a lot, and usually they clutter up on my Desktop until I organize them later into category folders. My folders are like this:
    VACATION PICTURES (Folder Name), and inside the pictures go: Vacation_1, Vacation_2, Vacation_3, etc.
    I'd like to be able to click on the cluttered pictures on my Desktop, then have a pop-up ASK me where I want to put the pictures (because I have a lot of folders, such as "Vacation Pictures," "Pet Pictures"), then ASK me what to rename them. Or, better yet, I want the script to automatically know what to rename the files based on what folder I select to move them to. For example, if I first direct the pictures to be moved to the "Vacation Pictures" folder, in which all the files are Vacation_1, Vacation_2, Vacation_3, etc., I want the program to automatically rename the newly-moved pictures and continue the existing sequence by going Vacation_54, Vacation_55, etc.
    So I want the script to automatically continue the already existing sequence in the folder. After the move, I want it to automatically figure out what the name will be and the sequence number to start on to join the others.
    Is this at all possible to do? If so, could someone explain how? Thank you so much!

    Hello
    You may try something like the code below.
    Save it as application, drag-drop the files onto it. It will ask you the destination folder and then do its tasks, hopefully.
    (It will create a temporary folder in destination for renaming file without name conflict and when done, move the temp folder to trash. It won't automatically delete the temp folder for safety. You may empty trash manually.)
    Script is partially tested under OS9.
    Hope this may help,
    H
    --SCRIPT
    on open aa
    main(aa)
    end open
    on main(xx)
    script o
    property aa : xx
    property tempname : "0.renamingbuffer" & (random number 10000)
    -- (0) accept destination
    set da to choose folder with prompt "Where do you put them?"
    display dialog "You're moving files to :" & return & return & da with icon 1
    -- (1) get last file name in destination (if there's no file, use destination folder name's 1st word)
    Finder of OSX 10.4 or later is required for proper 'numerical' sorting.
    E.g.
    'x_10.jpg' > 'x_9.jpg' by 'numerical' sorting, whereas
    'x_9.jpg' > 'x_10.jpg' by lexical sorting
    tell application "Finder"
    set ff to (sort (get files of item da as list) by name) as list
    if ff = {} then
    set n to (get item da's name)'s word 1
    else
    set n to ff's item -1's name
    end if
    end tell
    -- (2) make temporary folder for safe renaming
    tell application "Finder"
    set temp to (make new folder at da with properties {name:tempname}) as alias
    end tell
    -- (3) move and rename files
    1) move a file into temp (in destination)
    2) rename the file in temp
    3) move the renamed file in temp to the destination
    * this procedure will prevent any name conflicts.
    repeat with a in my aa
    set a to a's contents
    set n to nextName(n) -- get next name (w/o extension)
    tell application "Finder"
    set ext to a's name extension
    if ext is not "" then set ext to "." & ext
    set a1 to (move a to temp) as alias
    set a1's name to n & ext
    move a1 to da
    end tell
    end repeat
    -- (4) clean up & exit
    tell application "Finder" to delete temp
    display dialog "Done" with icon 1 giving up after 2
    end script
    tell o to run
    end main
    on nextName(n)
    string n : file name in form STEM_N.EXT, where N is integer. e.g., xyz_9.jpg
    return string : next file name w/o extension in form STEM_M, where M = N + 1. e.g., xyz_10
    set astid to a reference to AppleScript's text item delimiters
    set astid0 to astid's contents
    try
    set astid's contents to {"."}
    tell n's text items
    if (count) = 1 then
    set {m, x} to {n, ""}
    else
    set m to "" & items 1 thru -2
    set x to "." & item -1
    end if
    end tell
    set astid's contents to {"_"}
    tell m's text items
    if (count) = 1 then
    set k to 0
    else
    set m to "" & items 1 thru -2
    set k to item -1
    end if
    end tell
    set astid's contents to astid0
    --return m & "_" & 1 + k & x -- w/ extension
    return m & "_" & 1 + k -- w/o extension
    on error errs number errn
    set astid's contents to astid0
    error errs number errn
    end try
    end nextName
    --END OF SCRIPT

  • How do i create this kind of click box?? HELP

    Hi There,
    How do i create a click box that when you double click it a
    black dot is displayed. Im sorry if im not being clear. I mean a
    dot in the middle of a circular click box. When you click multiple
    choice, sort of.
    Any help would be appreciated! Thanks
    Simona

    Hi Simona
    If I'm understanding you correctly, you are referring to what
    used to be known as a "Radio Button" and is now preferred by
    Microsoft to be called an "Option Button". Captivate doesn't allow
    these to be created. One possibility is to use two images to
    achieve the effect. The "Unfilled" or "Un-Selected" image on one
    slide and when clicked it would display the 'Filled" or "Selected"
    image on the next slide.
    Cheers... Rick

  • Is it possible to create this type of 'Rule'....

    Hi,
    The spammers have got me good this time!! I am getting tens of emails a day asking if I want to buy gold. The problem is that I can't seem to create a rule to filter these out. The subject and sender are always different, and usually garbage. Also the email has no content, rather a gif image which is 8kb in size. I do tend to get a lot of emails from people who are not in my address book, so that option is not available to me. The only way I could imagine filtering these messages was to create a rule that if message contains attatchment 8kb (they are always the same size in my experience), then move to junk. Of course this rule seems impossible. How do you guys filter these messages out. I was already at the end of my tether with the gold stock options, but now I am also getting emails asking to buy a ring of some sorts!!!..... Any help please! Thanks

    Hello Gwyn.
    No single strategy is completely effective when it comes to managing spam. People who are intent on sending spam are ingenious at coming up with ways around any filtration schemes.
    You can add a number of rules in an attempt to resolve the problem but doing so in regards to spam is like a dog chasing his tail.
    In case you have unintentionally/unknowingly added to the problem regarding this increase in spam received, check Why was I "spammed" at my .Mac Mail address? which applies to any email account and How HTML Email Messages Relate to Unsolicited Commercial Email ("spam") which applies to any email client such as the Mail.app.

  • [SOLVED] Is there a way to create this kind of custom udev rule?

    Hi!
    Sorry if title doesn't say it all!
    I only would like to create a custom udev rule to handle lid close/open for my laptop. Is there a way to achieve this?
    I'd like to run "systemctl suspend" when lid is closed...but i can't figure how to reach this.
    No, i do not want to use acpid only for this little thing, while i'm pretty sure udev can handle it.
    So, please, any help is appreciate!
    Thanks!
    Last edited by nierro (2012-09-02 16:06:27)

    nierro wrote:Hi!
    Sorry if title doesn't say it all!
    I only would like to create a custom udev rule to handle lid close/open for my laptop. Is there a way to achieve this?
    I'd like to run "systemctl suspend" when lid is closed...but i can't figure how to reach this.
    No, i do not want to use acpid only for this little thing, while i'm pretty sure udev can handle it.
    So, please, any help is appreciate!
    Thanks!
    HandleLidSwitch in /etc/systemd/logind.conf
    https://wiki.archlinux.org/index.php/Sy … th_systemd

  • How do I create this kind of layout with JPanels?

    Hi! I am wondering how I would go about creating the following layout. Which layout manager should I use?
    I have two JPanels in a JFrame. Jpanel1 should expand in size (width and height) and fill "the rest" of the JFrame when I resize the JFrame. Jpanel2 should always have the same ratio between the width and height no matter how I resize the JFrame. JPanel2 shouldn't be a fixed size though! See below sketch.
    |                                                    |                                      |
    |                                                    |                                      |
    |                       Jpanel1                      |               Jpanel2                |
    |                                                    |                                      |
    |                                                    |                                      |
    --------------------------------------------------------------------------------------------

    You can use a BorderLayout.
    Place panel1 in the center of the border layout, and panel2 in the east.
    You should also override getPrefferedSize method of panel2 to return the preferred size based on the calculation of the ratio between the width and height.

  • How do I create this kind of synth track?

    I'm trying to recreate the synth instrument used in this song in Garageband... from 0:05-0:13
    http://www.youtube.com/watch?v=vW1hv37imjw
    I'm not sure how I should go about doing so...I don't want to be playing individual keys for each chord pressed. I would like to do what the band does in the video, where they hold a chord down only.
    I'm not sure if I'm being understandable, but any help is greatly appreciated!

    What you are looking for is an arpeggiator.
    Not sure if you have a hardware or software synth already...if you do, look for an arpeggiator function.
    If not...
    There are many hardware and software synths and even DAW's with arpeggiators.
    Here's an example of Logic's....
    http://www.youtube.com/watch?v=JFyJs6VqOIg

  • Is it possible to create this Grid structure ?

    XX1
    Pr1
    Vr1
    Pr2
    Vr21
    Vr22
    Pr3
    Vr3
    Pr4
    Vr4
    XX2
    Pr5
    Vr5
    `
    Vr6
    PS - I don't mean to the group function.
    I really don't know if it's some Grid feature (the merging rows) or mabe the problem is in my ArrayCollection data ,
    I was trying to do something like that (or regular grid with 3 columns, and 2 the right columns grouped together) but it's displayed in 2 different rows.
    private var arr:ArrayCollection = new ArrayCollection([
    {aa:"1",bb:{bb1:"11",bb2:"111"}},
    {aa:"1",bb:{bb1:"22",bb2:"222"}}]);
    Thanks in advance.

    Does anyone have Idea how it can be implemented in regular grid or advance grid component ?
    Actually it seems very basic and regular grid, but the Item render, block my other grid functionalities and therefore I can't use it.
    please help ..
    every new direction or piece of information are welcome,
    Thanks in advance.

  • How would I create this kind of smart playlist?

    top 100 most played songs exclude films, tv programmes and podcasts.

    Match rule:
    Playlist is Music
    Limit to 100 items by most often played.

  • Is it possible to do this kind of system with Cirrus?

    Sorry for my poor english.
    I am looking for a technology that solve my problem
    and I am not sure if Adobe Cirrus is the right one.
    I am making 1vs1 turn based game system for cross platform (iOS, Android, Web)
    The game process ...
    PlayerA start app and send some data to central server
    PlayerA need to wait until PlayerB start app then server can tell both player to start the game
    Once the game time is up on both side, each player send score to server and server do some calculation and tell both player the result
    During PlayerA playing with PlayerB, PlayerC may playing PlayerD, and so on ...
    It will be great if we can let user do P2P connection during game process to save bandwidth cost and server capacity.
    Thank you for your help
    sw.

    if you meant "how do i connect to multiple peers in the same NetConnection?", then it's no different than connecting to one peer -- just make another NetStream for the other peer using the same NetConnection.
    you can also use RTMFP Groups (NetGroup, GroupSpecifier) to connect multiple peers together in interesting ways.  you can watch my session from MAX 2011 on "Advanced P2P with RTMFP: Tips and Tricks":
      http://tv.adobe.com/watch/max-2011-develop/advanced-p2p-with-rtmfp-tips-and-tricks/
    the demo assets from that session are at
       http://www.adobe-max.com/published/adobemax2011/sessions/S4600/S4600_Thornburgh-AdvancedP2 P_Assets.zip
    (except that site seems to be down at the moment)

  • Is it currently possible to create a doughnut chart with multiple concentric circles in SSRS?

    Is there currently any way to create a 'doughnut' chart with multiple concentric circles in an SSRS report (any version), without using 3rd party tools?
    Something like this, perhaps?
    (For that matter is it possible to create this using JavaScript?  It's my understanding that this image was originally created in a web app using JavaScript.  So far I've not been able to pin down the details.  I've found hints that JavaScript
    can be used in SSRS reports but so far no clear working examples.)

    Hi B.Chernick,
    According to your description, you want to create a create a doughnut chart with multiple concentric circles in your report. Right?
    In Reporting Services, we only have doughnut chart with one concentric circle. All the category group is in that concentric circle. Though we can embed javascript injection in expression, it only give the css style to values or report
    items which can change the looking. It can't change the structure of the report items itself. So your requirement can't be achieved current.
    For your requirement, we suggest you provide Microsoft a feature request at
    https://connect.microsoft.com/SQLServer
    so that we may try to expand the product features based on your needs.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • Reg. creation of Blanket Order through BAPI_PO_CREATE1

    Hi All, I have a requirement of creating framework order of document type FO. When I fill bapi interface correctly, I am getting an error message as either error  SE-518 u201CNo account assignment exists for service lineu201D or error 06 436-In case

  • How To validate Excise Invoice Posting date(J1iin)  equals to Billing Date

    Hi Experts I have required to validate Excise invoice Posting Date(J1iin) should be equal to Biiling date . Can anyone suggest me which user exit i will use for it. Waiting 4 reply. Regards Prateek

  • Retrieving dynamic name files from FTP

    Hello, I have a scenario where PI needs to pull a file from a FTP site with a dynamic format of VendorYYYYMMDD.txt;  A new one is placed there every day.  One posting has an example is from ASM to PI to FTP: Re: Change in time stamp format in receive

  • SQL Loader newbie's question.

    Hi all, I have a delimiter file, e.g. data.dat, that contains the titles of each of the columns on the first row. Subsequent rows contain real column information/data. I didn't know how to create a control file, e.g. data.ctl, to create the table, it

  • Transfer SMS from Nokia phone iPhone

    Hi Guys, I just changed from Nokia N97 mini to iPhone 4S. Anyhow I mannaged maigrate all my contact and calender entries to my new iPhone 4S, but the problem I'm facing that I cannot transfer SMS from Nokia phone iPhone. Did anyone found the solution