Alternate for varchar2 to allow more length

hi,
I have a variable dfined of length varchar2(32767) and while looping through in the form it concatenates the name of the employee(list of employee names concatenated into single field)..At some place if the list is more..it is not concatenating and throwing numeric or value error...
Any Workaround for this...?

>
hi
Welcome to the Oracle Forums. Please take a few minutes to review the following:
<ul>
<li>Oracle Forums FAQ
<li>Before posting on this forum please read
<li>10 Commandments for the OTN Forums Member
<li>How to ask questions the smart way
</ul>
Following these simple guidelines will ensure you have a positive experience in any forum; not just this one!
>
I have a variable dfined of length varchar2(32767) and while looping through in the form it concatenates the name of the employee(list of employee names concatenated into single field)..At some place if the list is more..it is not concatenating and throwing numeric or value error...
Any Workaround for this...?check this
1. Oracle Built-in Datatypes
2. Term: VARCHAR2
Hope this helps
Hamid
Mark correct/helpful to help others to get right answer(s).*

Similar Messages

  • Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Sorry. We can't help you. It's no longer an iPhone. Apple won't touch it.
    Take it to whoever replaced the screen and see if they can help you.
    iPhones are not user servicable and Apple does not sell iPhone parts at all. I'd be surprised if you were actually able to back it up at this point. It sounds like it's completely borked.

  • Maximum Allowed Text Length for JTable Column

    Can you please help me with a JTable Doubt
    How do I set the Maximum Allowed Text Length for a Particular Column of a JTable?

    Thanks a lot mate. I used the following
         class MaximumLengthFilter extends DocumentFilter {
                   public void replace(DocumentFilter.FilterBypass fb, int offset, int length,
                             String text, AttributeSet attr) throws BadLocationException {
                        if ((fb.getDocument().getLength() + length) < 10)
                             fb.replace(offset, length, text, attr);
                        else
                             Toolkit.getDefaultToolkit().beep();
              }

  • When you purchase extra cloud storage, does that allow more storage for music, apps, and so forth to be downloaded?

    When you purchase extra cloud storage, does that allow more storage for music, apps, and so forth to be downloaded?

    So only documents? it doesnt store pictures, videos, or any of that stuff? or it doesnt store settings to your applications? I just want to know how exactly iCloud can effectively help me with storage because I only have a 16 gb ipod 4s. I have already decided I will not download any music onto it or videos

  • For (i=0; i mgBW.length; i++) {

    I'm trying to loop this but won't work. Could someone help me to get this fixed?
    var mgB:Array = [browseMC1, browseMC2, browseMC3];
    var mgBW:Array = [targetMC1, targetMC2, targetMC3];
    var mgPW:Array = [logoPreviewMC1, logoPreviewMC2, logoPreviewMC3];
    for (i=0; i<mgBW.length; i++) {
        mgB[i].ivar=i;
    tl.mgB[i].onRelease = function() {
    var fileType:Array = [{description: "Image files", extension: "*.jpg;*.gif;*.png"}]
    fRef.browse(fileType);
    tl.targetXMC3 = tl.mgBW[this.ivar]._x;
    tl.targetYMC3 = tl.mgBW[this.ivar]._y;
    var fileLimit:Number = 1000*1024;
    var previewMCL:MovieClipLoader = new MovieClipLoader();
    var previewLO:Object = {};
    var logoMCL:MovieClipLoader = new MovieClipLoader();
    var logoLO:Object = {};
    var logoA:Array = [gmb_mc.logoz_mc1,gmb_mc.logoz_mc2];
    previewLO.onLoadInit = function(targetMC:MovieClip){
    mgBW[this.ivar]._alpha = 100;
    mgBW[this.ivar].forceSmoothing = true;
    mgBW[this.ivar].cacheAsBitmap = true;
    var aspectRatio:Number = mgBW[this.ivar]._width/mgBW[this.ivar]._height;
    if(aspectRatio >= tl.mgPW[this.ivar]._width/tl.mgPW[this.ivar]._height){
    mgBW[this.ivar]._width = tl.mgPW[this.ivar]._width;
    mgBW[this.ivar]._height = mgBW[this.ivar]._width/aspectRatio;
    mgBW[this.ivar]._x = tl.mgPW[this.ivar]._x;
        mgBW[this.ivar]._y = tl.mgPW[this.ivar]._y + (tl.mgPW[this.ivar]._height - mgBW[this.ivar]._height)/2;
    } else {
    mgBW[this.ivar]._height = tl.mgPW[this.ivar]._height;
    mgBW[this.ivar]._width = aspectRatio*mgBW[this.ivar]._height;
    mgBW[this.ivar]._y = tl.mgPW[this.ivar]._y;
        mgBW[this.ivar]._x = tl.mgPW[this.ivar]._x + (tl.mgPW[this.ivar]._width - mgBW[this.ivar]._width)/2;
    logoIndex = 0;
    replaceLOGOF();
    previewMCL.addListener(previewLO);
    logoLO.onLoadInit = function(targetMC:MovieClip){
    logoIndex++;
    mgBW[this.ivar].forceSmoothing = true;
    mgBW[this.ivar].aspectRatio = mgBW[this.ivar]._width/mgBW[this.ivar]._height;
    if(mgBW[this.ivar].aspectRatio>=mgBW[this.ivar]._parent.logoMC._width/mgBW[this.ivar]._par ent.logoMC._height){
    mgBW[this.ivar]._width = mgBW[this.ivar]._parent.logoMC._width;
    mgBW[this.ivar]._height = mgBW[this.ivar]._width/mgBW[this.ivar].aspectRatio;
    } else {
    mgBW[this.ivar]._height = mgBW[this.ivar]._parent.logoMC._height;
    mgBW[this.ivar]._width = mgBW[this.ivar].aspectRatio*mgBW[this.ivar]._height;
    mgBW[this.ivar]._x = -mgBW[this.ivar]._width/2;
    mgBW[this.ivar]._y = -mgBW[this.ivar]._height/2;
    mgBW[this.ivar]._alpha = 100;
    mgBW[this.ivar]._parent.logoMC._visible = false;
    if(logoIndex<logoA.length){
    replaceLOGOF();
    } else {
    logoMCL.addListener(logoLO);
    function replaceLOGOF(){
    logoA[logoIndex].mgBW[this.ivar]._alpha = 0;
    logoA[logoIndex].logoIndex = logoIndex;
    logoMCL.loadClip(logoFileS,logoA[logoIndex].mgBW[this.ivar]);
    var fRef:FileReference = new FileReference();
    var fRefLO:Object = new Object();
    fRefLO.onSelect = function(file:FileReference):Void {
        for(k=1; k<mgB.length; k++){
    mgB[k].enabled = false;
    file.upload("/php/upload.php");
    fRefLO.onCancel = function(file:FileReference):Void {
    _root.upldbg_mc._visible = false;
    _root.bar._visible = false;
    _root.border._visible = false;
    fRefLO.onOpen = function(file:FileReference):Void {
    _root.upldbg_mc._visible = true;
    _root.bar._visible = true;
    _root.border._visible = true;
    fRefLO.onProgress = function(file:FileReference, bl:Number, bt:Number):Void {
    if(bl > fileLimit) {
            cancelUploadF(file);
    fRefLO.onComplete = function(file:FileReference):Void {
    logoFileS = "/logoImages/"+file.name;
    if(tl.mgBW[this.ivar]._width>0){
    tl.mgBW[this.ivar].swapDepths(dep);
    tl.mgBW[this.ivar].removeMovieClip();
    tl.createEmptyMovieClip(mgBW[this.ivar],dep++);
    tl.mgBW[this.ivar]._x = tl.targetXMC3;
    tl.mgBW[this.ivar]._y = tl.targetYMC3;
    tl.mgBW[this.ivar]._alpha = 0;
    previewMCL.loadClip(logoFileS,tl.mgBW[this.ivar]);
    var fileRef:FileReference = new FileReference();
    fRef.addListener(fRefLO);
    function cancelUploadF(file:FileReference){
    file.cancel();
    tl.mgBW[this.ivar]._alpha = 100;
    if(!tl.mgBW[this.ivar].tf){
        tl.mgBW[this.ivar].createTextField("tf",dep++,0,0,tl.mgPW[this.ivar]._width,tl.mgPW[this. ivar]._height);
        with(tl.mgBW[this.ivar].tf){
        multiline = true;
        wordWrap = true;
        text = "Upload Excedes 1000kb Size Limit";
        clearTimeout(removeTO);
        removeTO = setTimeout(removeTF,4000);
    function removeTF(){
    tl.mgBW[this.ivar].tf.removeTextField();

    In my webpage there are these 3 browse buttons (mgB). The user is allowed to upload 3 images and each uploaded image will show a preview in mgBW.
    or
    How can I enable the user to just use browseMC1 button to upload more than one image and make each uploaded image preview to display in targetMC1, targetMC2, etc.. in a sequence? to do this I've got the following code working but I'm not knowing how to make the image preview load in a sequence? (The first uploaded logo preview to be displayed in targetMC1 then the second uploaded image preview to be in targetMC2, etc...)
    var tl:MovieClip = this;
    var dep:Number = 0;
    var logoFileS:String;
    var logoIndex:Number;
    tl.targetMC1X = tl.targetMC1._x;
    tl.targetMC1Y = tl.targetMC1._y;
    var fileLimit:Number = 1000*1024;
    var previewMCL:MovieClipLoader = new MovieClipLoader();
    var previewLO:Object = {};
    var logoMCL:MovieClipLoader = new MovieClipLoader();
    var logoLO:Object = {};
    var logoA:Array = [gmb_mc.logoz_mc1,gmb_mc.logoz_mc2,gmb_mc.logoz_mc3];
    tl.browseMC1.onRelease = function() {
    var fileType:Array = [{description: "Image files", extension: "*.jpg;*.gif;*.png"}]
    fRef.browse(fileType);
    previewLO.onLoadInit = function(targetMC1:MovieClip){
    targetMC1._alpha = 100;
    targetMC1.forceSmoothing = true;
    targetMC1.cacheAsBitmap = true;
    var aspectRatio:Number = targetMC1._width/targetMC1._height;
    if(aspectRatio >= tl.logoPreviewMC1._width/tl.logoPreviewMC1._height){
    targetMC1._width = tl.logoPreviewMC1._width;
    targetMC1._height = targetMC1._width/aspectRatio;
    targetMC1._x = tl.logoPreviewMC1._x;
        targetMC1._y = tl.logoPreviewMC1._y + (tl.logoPreviewMC1._height - targetMC1._height)/2;
    } else {
    targetMC1._height = tl.logoPreviewMC1._height;
    targetMC1._width = aspectRatio*targetMC1._height;
    targetMC1._y = tl.logoPreviewMC1._y;
        targetMC1._x = tl.logoPreviewMC1._x + (tl.logoPreviewMC1._width - targetMC1._width)/2;
    logoIndex = 0;
    replaceLOGOF();
    previewMCL.addListener(previewLO);
    logoLO.onLoadInit = function(targetMC1:MovieClip){
    logoIndex++;
    targetMC1.forceSmoothing = true;
    targetMC1.aspectRatio = targetMC1._width/targetMC1._height;
    if(targetMC1.aspectRatio>=targetMC1._parent.logoMC._width/targetMC1._parent.logoMC._height ){
    targetMC1._width = targetMC1._parent.logoMC._width;
    targetMC1._height = targetMC1._width/targetMC1.aspectRatio;
    } else {
    targetMC1._height = targetMC1._parent.logoMC._height;
    targetMC1._width = targetMC1.aspectRatio*targetMC1._height;
    targetMC1._x = -targetMC1._width/2;
    targetMC1._y = -targetMC1._height/2;
    targetMC1._alpha = 100;
    targetMC1._parent.logoMC._visible = false;
    if(logoIndex<logoA.length){
    replaceLOGOF();
    logoMCL.addListener(logoLO);
    function replaceLOGOF(){
    logoA[logoIndex].targetMC1._alpha = 0;
    logoA[logoIndex].logoIndex = logoIndex;
    logoMCL.loadClip(logoFileS,logoA[logoIndex].targetMC1);
    var fRef:FileReference = new FileReference();
    var fRefLO:Object = new Object();
    fRefLO.onSelect = function(file:FileReference):Void {
        file.upload("php/upload.php");
    fRefLO.onCancel = function(file:FileReference):Void {
    _root.upldbg_mc._visible = false;
    fRefLO.onOpen = function(file:FileReference):Void {
    _root.upldbg_mc._visible = true;
    fRefLO.onProgress = function(file:FileReference, bl:Number, bt:Number):Void {
    if(bl > fileLimit) {
            cancelUploadF(file);
    fRefLO.onComplete = function(file:FileReference):Void {
    logoFileS = "logoImages/"+file.name;
    if(tl.targetMC1._width>0){
    tl.targetMC1.swapDepths(dep);
    tl.targetMC1.removeMovieClip();
    tl.createEmptyMovieClip("targetMC1",dep++);
    tl.targetMC1._x = tl.targetMC1X;
    tl.targetMC1._y = tl.targetMC1Y;
    tl.targetMC1._alpha = 0;
    previewMCL.loadClip(logoFileS,tl.targetMC1);
    var fileRef:FileReference = new FileReference();
    fRef.addListener(fRefLO);
    function cancelUploadF(file:FileReference){
    file.cancel();
    tl.targetMC1._alpha = 100;
    if(!tl.targetMC1.tf){
        tl.targetMC1.createTextField("tf",dep++,0,0,tl.logoPreviewMC1._width,tl.logoPreviewMC1._h eight);
        with(tl.targetMC1.tf){
        multiline = true;
        text = "Upload Excedes 1000kb Size Limit";
        clearTimeout(removeTO);
        removeTO = setTimeout(removeTF,4000);
    function removeTF(){
    tl.targetMC1.tf.removeTextField();

  • How do I configure the Airport utility to allow more than one rule per port?

    How do I configure the Airport Utility (AU) to allow more than one rule per port?
    I am on a home network, with broadband cable modem.  I have my airport extreme connected to the broadband modem.  I have 2 servers in my home that need to be accessed remotely from time (SSH), and they also serve data for an iphone app, so I'm using a variety of protocols.  The problem I'm running into is that AU seems to only allow one rule per protocol, so if I go to add another address for access on a specific port that is being used by one of my servers, AU tells me "The Port Mapping Entry Already Exists". 
    I need to be able to allow SSH on both of my servers, for instance.  Am I missing something?  Is this doable with AU?
    Thanks for any insight.
    Khalid

    The Port Mapping "rules" on the AirPorts will allow you to: 1. Map a single port to a single IP address OR 2) Map multiple ports to a single IP address.
    What you won't be able to do is map a single or multiple ports to multiple IP addresses.

  • How do I use AE to allow more than one device with my cable modem?

    I connected by AE to my cable modem at my house in Japan and it works fine on "bridge mode," but only for one device at a time (this laptop, but not my iPod Touch, or vice versa). As soon as I connect a new device, it will kick the other one off. It seems that my cable modem here will only allow one device. Is there a way that I can use my Airport Extreme to allow more than one device and not have to pay the Internet provider extra for multiple IP addresses? How do I go about this? Do I select "share a public IP address" or do I select "distribute a range of IP addresses?" I tried these options but obviously wasn't doing it correctly, because then I lost the connection for everything... Thanks!

    It would be best if you "hard reset" the Airport Extreme to clear out the old and conflicting settings and then reconfigure it again.
    Hold in the reset button until you see the amber light begin to blink more quickly. Keep holding for another 3-4 seconds when you see this and then release the reset button. That will get the Extreme back to the original starting point.
    After you have powered the modem back up after the full reset, you will need to reconfigure the AirPort Extreme again. If you are using he guided setup in AirPort Utility, you will choose the option to "create a wireless network" during the setup.
    If you are using the Manual Setup, the Wireless Mode will be "Create a wireless network" and the setting for Connection Sharing would be "Share a public IP address". Adjusting the Connection Sharing setting would be the last thing that you do before you click Update to save settings.
    Here, I am assuming that you have a simple cable modem (it will have only one ethernet port), correct?

  • How to write validation in java sript item should not allow more than 20 ch

    HI,
    I need to write validation in java script for a item it should not allow more than 20 characters.
    Thanks
    Nr

    If this answers your question, please mark your question as answered (so everyone knows it is answered) and assign points where you see fit..
    Thank you,
    Tony Miller
    Webster, TX

  • Should not allow more than one attendance or absence code on any given day

    Hi Hr Experts ,
    I need to use customer enhancement in my program.
    CATS should not allow more than one attendance or absence code on any given day. requirement is
    that each day will be either a full attendance or full absence and there will not be any mixture.
    Function/Program: u2022
         EXIT_SAPLCATS_006: CATS: Validate Entire Time Sheet
    transaction code CAT2.
    how to code the same?

    hai,
    check the Time constraint class for absence/attendance types.
    Regards,
    Chiran Reddy.

  • How can I enter "Flate rates for travel costs" with more than 2 decimals?

    Hi expert,
    I want to enter flat rates for travel costs in table T706F.
    I have a figure with more than 2 decimals (0,066), but I cannot save it, because only 2 decimals are allowed for EUR.
    I don't want to change the decimals for this currency.
    I found OSS note 446116 which is release independent. It is a note of 30.10.2001.
    It suggests to create a new currency e.g. EUR3 and enter translation ratio's and exchange rates.
    This seems pretty drastic.
    Do you know if there is another way to handle this issue?
    Thank you.
    Kind regards,
    Linda Verding

    Hello Christian,
    I have checked it with consultants from SAP Brussels.
    They confirm that OSS note 446116 can be used to create flat rates for travel costs with more than 2 decimals.
    I will create a new currency (EUR3) with the description "for travel expenses only".
    Kind regards,
    Linda Verding

  • Alternate for inner join to improve performance

    Hi all,
    I have used an inner join query to fetch data from five different tables into an internal table with where clause conditions.
    The execution time is almost 5-6 min for this particular query(I have more data in all five DB tables- more than 10 million records in every table).
    Is there any alternate for inner join to improve performance.?
    TIA.
    Regards,
    Karthik

    Hi All,
    Thanks for all your interest.
    SELECT  a~object_id a~description a~descr_language
                a~guid AS object_guid a~process_type
                a~changed_at
                a~created_at AS created_timestamp
                a~zzorderadm_h0207 AS cpid
                a~zzorderadm_h0208 AS submitter
                a~zzorderadm_h0303 AS cust_ref
                a~zzorderadm_h1001 AS summary
                a~zzorderadm_h1005 AS summary_uc
                a~zzclose_date     AS clsd_date
                d~stat AS status
                f~priority
                FROM crmd_orderadm_h AS a INNER JOIN crmd_link AS b ON  a~guid = b~guid_hi
                INNER JOIN crmd_partner AS c ON b~guid_set = c~guid
                INNER JOIN crm_jest AS d ON objnr  = a~guid
                INNER JOIN crmd_activity_h AS f ON f~guid = a~guid
                INTO CORRESPONDING FIELDS OF TABLE et_service_request_list
                WHERE process_type IN lt_processtyperange
                AND   a~created_at IN lt_daterange
                AND   partner_no IN lr_partner_no
                AND   stat IN lt_statusrange
                AND   object_id IN lt_requestnumberrange
                AND   zzorderadm_h0207 IN r_cpid
                AND   zzorderadm_h0208 IN r_submitter
                AND   zzorderadm_h0303 IN r_cust_ref
                AND   zzorderadm_h1005 IN r_trans_desc
                AND   d~inact = ' '
                AND   b~objtype_hi = '05'
                AND   b~objtype_set = '07'.
                f~priority
                FROM crmd_orderadm_h AS a INNER JOIN crmd_link AS b ON  a~guid = b~guid_hi
                INNER JOIN crmd_partner AS c ON b~guid_set = c~guid
                INNER JOIN crm_jest AS d ON objnr  = a~guid
                INNER JOIN crmd_activity_h AS f ON f~guid = a~guid
                INTO CORRESPONDING FIELDS OF TABLE et_service_request_list
                WHERE process_type IN lt_processtyperange
                AND   a~created_at IN lt_daterange
                AND   partner_no IN lr_partner_no
                AND   stat IN lt_statusrange
                AND   object_id IN lt_requestnumberrange
                AND   zzorderadm_h0207 IN r_cpid
                AND   zzorderadm_h0208 IN r_submitter
                AND   zzorderadm_h0303 IN r_cust_ref
                AND   zzorderadm_h1005 IN r_trans_desc
                AND   d~inact = ' '
                AND   b~objtype_hi = '05'
                AND   b~objtype_set = '07'.

  • Will iphoto 6 allow more captions to be used in photo books?

    I have just discovered photo books and have iphoto 5. Unfortunately, very few of the templates allow captions to be inserted. I was wondering if upgrading to iphoto 6 would allow more options?
    Thanks,
    Jderden

    What pdf preset are you using? Try smallest file size rather than illustrator default.
    Save for web does not do PDF, so no multipage.

  • Error "No automatic updation for IT0008. Allowance Grouping not found"

    I am maintaining IT581 of an employee.but system throws an error -->No automatic updation for IT0008. Allowance Grouping not found.I have maintained allowance grouping properly.The thing is my requirement is that i am maintening pay groups and level in table T710 instead of T510.Not touched T510.
    Means i have also created IT1005(Planned compensation) in OM.Every other thing is ok.Except IT581.
    What i beleive is its taking  assignement from table V_T7INA3.where i am not able to store ESG for CAP, groups and levels.Because its taking value from T510.But i want to do everything on basis of pay scale grade ie T710.
    Need your help and inputs....

    Dear Sumo,
    Kindly update feature 40 ECC which will help to automatic open the IT0008 for autmatic updation of such wagetypes ex: HRA
    you can maintain percentage their for the particular wagetype for
    40ECS - HR-IN : Feature to Determine Elgibility for RAPS
    This feature is used to determine the factor which is multiplied with
    the Reimbursement, Allowance or Perk (RAP) amount to calculate the
    amount payable to the employee.
    rocedure
    The factor can be arrived at by making a decision on the following
    details:
    Country Grouping
    Company Code
    Payscale Grouping for Allowances
    Wage Type
    Gender Key
    Number of children for children education allowance
    Number of children for children hostel allowance
    Personnel Number
    ample
    As per company A's policy, all employees belonging to the Payscale
    Grouping for Allowance MN01, receive twice the amount eligible for
    Childrens' Education Allowance (wagetype M260) in case the employee has
    two or more children.
    1           D   MOLGA
    2   **          &ELIAL=1
    3   40      D   LGART
    4   40 ****     &ELIAL=1
    5   40 M260 D   CEANO
    6   40 M260 *   &ELIAL=2
    7   40 M260 1   &ELIAL=1
    kindly update the same and let me know.
    rgds,
    priyanka

  • Please recommend personal finance software for Mac that allows month to month analysis of spending by categories.  Quicken on a PC was good at this.  Mint seems very limited.

    Please recommend personal finance software for Mac that allows month to month analysis of spending by categories.  Quicken on a PC was good at this.  Mint seems very limited.

    Quicken for Mac 2007 works just fine (and is said to be compatible with Mavericks).  It is often denounced for not being "modern", but when something works, and does everything I want, I need a good reason to switch. 
    A few years ago (2011), I got that reason when I upgraded OSX and Quicken stopped working due to the absence of Rosetta.  I switched to iBank.  I used it for more than a year.  It was cumbersome, they have no sense of a helpful user interface, but it "works".  I found ONE feature that I liked:  you can attach an image (or any file) to a register entry, so I can save receipts right with the register.
    But when Intuit came out with the revised Quicken 2007 for Mountain Lion, I gladly went back.  I found that being able to update stock prices right in the portfolio view (for those not automatically found online) was handy - in iBank you have to generate a report to see the holdings, and then you have to switch to a view of "Securities" then scroll down through that list to find your stock, then "edit" then change the price, then "Save" then go back to reports and re-generate the portfolio view.  Also, if you enter a stock purchase in a Quicken register, the price you paid gets added to the price history for the stock (as of the date of the transaction).  No such help in iBank.  Most of the helpful UI features (like increasing the date with the + key) are glaringly missing in iBank.  I find I am getting no more than about 3-4 keystrokes before having to move the mouse and click.
    If you are considering sharing the app on an iPad, Quicken won't work, but I found that iBank for iPad doesn't work either.  The interface is completely different from the Mac version, you can't do much with it, and if you have a stock whose price is $11.25 / share and sell 200 shares, you might find that $22.50 gets added to your cash in the account.  (I actually made a few million dollars when it decided that 200 shares at $11.25  yielded $2,250,000.)  Luckly, I received a refund for that app.
    Depending on how the Mavericks switch goes, I hope to be able to stick with Quicken, but I am keeping my records up-to-date in both now, because I can live with iBank.  I will just have to keep an eye on its arithmetic.

  • Alternate for Replicate function of sqlserver

    What is the alternate for Replicate function of Sql Server in oracle.

    Or, you can create it easily.
    SQL> create or replace
      2  function replicate(in_str varchar2,in_int number)
      3  return varchar2
      4  is
      5  p_str varchar2(4000);
      6  begin
      7    p_str := '';
      8    for i in 1..in_int loop
      9      p_str := p_str||in_str;
    10    end loop;
    11    return p_str;
    12  end;
    13  /
    Function created.
    SQL> select replicate('abc',3) from dual;
    REPLICATE('ABC',3)
    abcabcabc

Maybe you are looking for

  • How to read runtime constants in ejb Module?

    Hi all, Anyone knows how to have special access to Runtime Constants at ejb Modules? I've searched and all I found is for Java and ABAP Mapping ...I hope it is possible! I want to read the interface name in order to choose which code my module should

  • Can get connected with App Store

    I can't get into my App Store anymore. I work on an iMac and since a few days I get the message that the connection is "impossible". I can't use Face Time anymore. Can someone advise me lease. I work in OS X 10.7.5. Thank you.

  • Execute Report after Opening a screen & query its data

    Dear All, Please user is requiring that after quering on the requistion form , the report of requistion runs automatically .... is that possible to be done or not ? If it's possible will you provide me any document having the step to do this Thanks I

  • I get an error message i don't understand

    I always get this error message and when I try to cancel it will not go away. the wndow just pops back up andError: RFJSettings::GetMatchingPasscards MESSAGE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIURI.host] STACK: Running

  • 24pDVD footage a mess

    I was doing some experiments on making a 24p DVD. I shot footage on the 24pA mode with the DVX100b and am editing in final cut pro 4.5 on a 23.98 timeline. I've also removed the advanced pulldown. I then exported my project through Compressor. Everyt