Import/export route targets from E-BGP ?

hi all,
a newbie question again,
can i import/export rte target in a vrf from/to ebgp session,
in all my readings i only see samples from import/export with iBGP peering
thanks for answer

Yes you can do it this way as well, without the MP-EBGP peering between the both AS's RR's. (You have missed the multi-hop neighbor statement)
This will achieve the RT exchange between the PE's, so next you will have to import that RT on the other side.
Once you have the RT with the routes exchanged you will have VPN labels as well populated for the routes on the remote side.
Now you will have to implement a method to assign an IGP label on top of the VPN label (this label should be for the PE's loopback of AS 100 who advertised this route to AS 200)
In your case, you can use the send-label command at the ASBR's for the IGP route of the PE;s in their AS' with a label. For this you can redistribute IGP into BGP and again BGP into IGP (with a route-map matching only PE's loopback in their AS and the remote AS).
So you will effectively have 2 labels to switch traffic between the AS's (IGP and the VPN label).
HTH-Cheers,
Swaroop

Similar Messages

  • Getting an error while importing/exporting the universe from my BO Designer

    Hi,
       I am facing a issue while importing/exporting the universe from my BO Designer to the Server.The error is mentioned below.
       'File Repository Server Input is down'
       Once I click the OK button on this error message, it displays  the message
       'Could not import the Universe'.
      I tried the check the status of the File Repository Server (Ouput and Input) and also the of the Root Directory on the  Physical Server and also my machine.They all have read-write access.
    Installed Version of the Universe Designer Client: Business Object XI Release 2 SP3
    Installed Version of the BO Enterprise Server: Business Object XI Release 2 SP2
      Can you please help me to resolve the issue

    Hi,
       The step you have mentioned may not be applicable to my issue as one of my colleagues can import/export the universe from the same server
    The second thing is that a DB2 Client v9 is installed on both mine and my colleagues system.The Designer software can recognise the DB2 drivers on his system but it cannot recognise the same drivers on my system.I even checked the versions of the BO software installed on his and my system and they are same.
    The only difference is that his machine is a Windows XP Machine and mine is a Network Desktop.
    Will any of the above two things will affect the operation of the BO Designer.
    Thanks
    Prabhakar Korada

  • Import/Export SMS to/from iPhone have be must in Itunes

    Import/Export SMS to/from iPhone have be must in Itunes

    I have exactly the same problem as David Ting. I just bought a brand new iPhone 4 and just want to do the same thing that I did when moved from Symbian to Windows Mobile and from Windows Mobile to Android: import my old SMS messages and call history to my new device.
    It's a _complete nonsense_ to be incapable of doing a so simple thing in iOS.
    I'm really shocked with this impossibility. I'm starting to think that I just did a very wrong move choosing Apple.

  • How to Import/Export database tables from one server to other in oracle8i

    Hello friend,
    Please can any one tell me how to import/export groups of database tables from one server with oracle to another using VB.net. It would be nice if some one can provide some code of it.
    I am a software developer and I am in middle of a large project development, in which I need to export a large oracle database from one server to another efficiently.
    Its very urgent so please someone help me.

    At command prompt (source db)
    set ORACLE_SID=db_name
    exp system/password@db_name full=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\exp.log filesize=2000M
    Then ftp the export dump files (in binary) to the other server or copy to target server over the network.
    At command prompt (target db)
    set ORACLE_SID=db_name
    imp system/password@db_name full=y ignore=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\imp.log filesize=2000M
    If the path names of the datafiles are going to be different in the target server (as compared to the source), then precreate the tablespaces before import. Set buffer value accordingly.
    Message was edited by:
    FeNiCrC_Neil

  • Import / Export Specific tables from DB

    Hi,
    I am trying to export all 'AD_' tables from my database from another database with their constraints.
    I tried a command just for export one table from my cmd :
    "exp adempiere/adempiere@simext15:1521/compiere2 file=emp.dmp tables=(AD_ACCESSLOG)"
    it export fine but when try to import this file from using command
    "imp adempiere/adempiere@simext15:1521/compiere2 file=emp.dmp fromuser=adempiere touser=adempiere tables=(AD_ACCESSLOG)"
    it gives me so many errors:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V11.01.00 via conventional path
    import done in WE8MSWIN1252 character set and UTF8 NCHAR character set
    . importing ADEMPIERE's objects into ADEMPIERE
    . . importing table "AD_ACCESSLOG" 0 rows imported
    IMP-00015: following statement failed because the object already exists:
    "CREATE UNIQUE INDEX "AD_ACCESSLOG_KEY" ON "AD_ACCESSLOG" ("AD_ACCESSLOG_ID""
    " ) PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FR"
    "EELIST GROUPS 1 BUFFER_POOL DEFAULT) LOGGING"
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "AD_ACCESSLOG_KEY" PRIMARY KEY ("
    ""AD_ACCESSLOG_ID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(I"
    "NITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "
    ""USERS" LOGGING ENABLE "
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "ADTABLE_ADACCESLOG" FOREIGN KEY "
    "("AD_TABLE_ID") REFERENCES "AD_TABLE" ("AD_TABLE_ID") ENABLE NOVALIDATE"
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "ADCOLUMN_ADACCESSLOG" FOREIGN KE"
    "Y ("AD_COLUMN_ID") REFERENCES "AD_COLUMN" ("AD_COLUMN_ID") ON DELETE CASCAD"
    "E ENABLE NOVALIDATE"
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    About to enable constraints...
    IMP-00017: following statement failed with ORACLE error 2430:
    "ALTER TABLE "AD_ACCESSLOG" ENABLE CONSTRAINT "ADTABLE_ADACCESLOG""
    IMP-00017: following statement failed with ORACLE error 2430:
    "ALTER TABLE "AD_ACCESSLOG" ENABLE CONSTRAINT "ADCOLUMN_ADACCESSLOG""
    Import terminated successfully with warnings.
    I tried a lot for this I just want to export and restore all 338 tables related to Application Dictionary from one database to another database with their constraints and data.
    I tried also using datalink but it only copy the structure and data but not the constraints, I want all three should be copy in to another database.
    I know their is dependency on a table to another table but i don't know exactly it..
    tried it onces again i am able to do export and import tables but only primary key related to every table gets restore neither Unique key nor Foreign key , please help me out from this i can export and import with full table with data and its all constraints.
    Please help me out from this problem, waiting for your valuable suggestions.
    Regards,
    Manu

    ORA-02264: name already used by an existing constraint
    The constraint is already exists with the same name. So drop that before issuing the import command.
    And ,
    1. Check if all tables get imported
    2. If all tables get imported then create the constraints manually
    3. If tables do not get imported then import tables manually by specifying their name in imp statement
    Thanks

  • Any method to Import & Export to Excel from Client Side

    Hi,
    Is there any method to Import and Export to Excel from the Client side. I have one procedure to export to Excel , but the excel file will be opened in the Application Server only, even if it executed from the client side. Also this procedure will not work if OLE2 chnaged CLIENT_OLE2. I am writing my procedure, Is there any idea to get it in the client side.
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    range OLE2.OBJ_TYPE;
    range_col OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    ExcelFontId OLE2.list_type;
    BEGIN
    -- Start Excel
    application:=OLE2.CREATE_OBJ('Excel.Application');
    OLE2.SET_PROPERTY(application, 'Visible', 'True');
    -- Return object handle to the Workbooks collection
    workbooks:=OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 1);
    worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
    ------updated by faisal-to give Bold font-----
    --FOR k IN 1 .. 3 LOOP
         args := OLE2.create_arglist;
         OLE2.add_arg(args, 1);
         OLE2.add_arg(args, col_n);
         cell := OLE2.get_obj_property(worksheet, 'Cells', args);
         OLE2.destroy_arglist(args);
         --cell_value := OLE2.get_char_property(cell, 'Value');
         ExcelFontId := OLE2.get_obj_property(Cell, 'Font');
         OLE2.set_property(ExcelFontId, 'Bold', 'True');
    --END LOOP;
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(cell, 'Value', baslik);
    OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n+1);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := OLE2.GET_OBJ_PROPERTY( range,'Columns');
    OLE2.INVOKE( range_col,'AutoFit' );
    OLE2.RELEASE_OBJ( range );
    OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args, p_block_name );
    OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args,filename );
    OLE2.INVOKE( worksheet,'SaveAs',args );
    OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    --OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    --OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Thanks in advance.
    Rizly Faisal

    Alternatively you could use OLE2 to do the bulk of the importing and exporting and then use the webutil file transfer functions to move the file to the client and then simply open the file there...That might be more efficient in terms of performance as well.
    Regards
    Grant

  • Import/Export xml data from subtree of dynamic XFA form

    Hi
    We would like to import/export xml data (subtree) of a dynamic xfa form. The following script does only work with static AcroForms:
    formular.content.subformDaten.Button1[1]::click - (JavaScript, client)
    event.target.exportAsXFDF({aFields:["formular[0].content[0].subformDaten[0]"]});
    With dynamic forms the script does export an empty xml file (no data is included, only xml root tag):
    <?xml version="1.0" encoding="UTF-8"?>
    <xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve"
    ><f href="ExportTest_frei.pdf"
    /><ids original="EA43F92A6B6EA34F9C4DBBC2DA0B1840" modified="6A7C6282A167594F91240B773AA979A7"
    /></xfdf
    >
    Any ideas? Many thanks.
    Best regards,
    Daniel

    Hi Paul
    The Problem that Daniel posted was originally mine. Now after subscribing to this forum myself, I try to describe the aim of using exportAsXFDF/importAnXFDF.
    exportData("", false) and exportXFAData works, in my opinion, only with a DataConnection. In my form I have indeed such a connection for sending the whole form. But in addition I need the possibility to export and import only part of the data without overwriting the rest of the filled form.
    exportAsXFDF works with static forms. So there MUST be a possibility that works with dynamic forms, right?
    I hope anyone has a solution.
    Beat

  • Reg importing exported ccsexport files from 9.3.1 into 11.1.2.1

    Hi,
    I have exported cssimportexport.properties file of hyperion system 9.3.1
    Now i have exported .csv files with the following names(export MSAD and export Native).
    I want them to be moved into hyperion system 11.1.2.1 using LCM.
    Pl. suggest me the steps to be followed in importing the .CSV files into my system 11.1.2.1.
    Cheers
    Praveen

    The LCM documentation is available at http://download.oracle.com/docs/cd/E17236_01/epm.1112/epm_lifecycle_management/launch.htm
    Also if you are new to LCM then it is worth having a look at the following Oracle by Example which will take you through the steps - http://www.oracle.com/webfolder/technetwork/tutorials/obe/hyp/PLN11.1.2_LCM/index.html
    It may also be worth extracting some test provisioning out of your 11.1.2.1 environment first to make sure you have the format of the file correct.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Difficulty import/export AVCHD files from a Panasonic SD-900 camera

    Hi there,
    I'm having workflow difficulties using AVCHD (.MTS) files from a Panasonic SD-900 camera.
    Footage was shot at 1080/25p. I use the Log and Transfer tool to bring the footage in.
    The browser window confirms 1920 x 1080, but says interlaced. I change that to progressive. I put a clip on the timeline, and select 'Yes' so that the sequence conforms to the same settings as the clip.
    On export, using Quicktime Conversion, the Quicktime dialog box says the Size is 850x478 (current). Something was wrong, as the sequence should have been 1920x1080.
    I closed the Quicktime Conversion box, and instead tried Export > Quicktime Movie. Selected 1920x1080 25p on the drop-down menu. The exported movie was 1920x1080, but it looked like it was half resolution, with jagged edges.
    So, I did something wrong. Thanks to anyone who can set me straight.

    Hi Veg,
    I would suggest that you edit the footage in the format that it was recorded in . In other words don't change field dominance and edit with your footage interlaced. (You can de interlace later if your output is for web or computer viewing)
    On export, using Quicktime Conversion, the Quicktime dialog box says the >Size is 850x478 (current). Something was wrong, as the sequence should have been 1920x1080.
    The "current size" is the size in the canvas so don't worry about that.
    Format: Apple ProRes 422 (HQ), 1920 x 1080 (1888 x 1062), millions
    16-bit Integer (Little Endian), Stereo, 48.000 kHz
    That second resolution in parenthesis might be a clue to the jaggies.
    Again, the resolution is what Quicktime Player is displaying at the time.
    25p AVCHD does not work.
    It works but not in the way that you were expecting, it is actually interlaced footage.
    Can you tell us what your footage is going to be output for? if it's web or computer viewing you can de interlace in compressor. Or if it's going to end up on a DVD for TV viewing you can leave it interlaced.
    Either way I think you should export using Quicktime movie "current settings" and use compressor to output to the settings of your choice.
    DM

  • I have tried importing / exporting my playlist from itunes; dragging songs from itunes to my ipod icon in the right corner; nothing is working.  I want to put songs back on my ipod touch version 6.1.5 from itunes version 11.1.3.8; any one have any ideas

    This is very fustrating I have tried a few different things I have seen on-line and nothing is working.  My itunes is version 11.1.3.8 and my ipod touch is ios version 6.1.5.  Since last Christmas I have a playlist called Christmas songs and I would like to move the songs back onto my ipod.  Before I could drag the songs from under the songs list over to the right and a list including my ipod would show.  It still does but when I do it now the songs do not show up in my ipod.  I would appreciate any ideas to get this to work again.

    Verify you have the right boxex checked to sync
    iTunes: Syncing media content to iOS devices and iPod
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
      - Restore to factory settings/new iOS device.            

  • Import/export rating (stars) from MP3

    I have realized that if the rating of a song is set through another software (for example, Tag&Rename), it is not read by iTunes; besides, if a rating is set in iTunes, it doesn't write it in the mp3.
    How to solve the problem ?
    Thanks
    Davide
    iPod nano & iPod 60 (video) Windows XP iTunes 6.0.1.3

    ... thanks for answer ...

  • Importing route targets

    Dear friends,
    Just to give an example, lets take vrf A (source vrf) and vrf B (destination vrf where we are saying route-target import) and let x:y be the export route-target used by vrf A.
    When i say route-target import x:y in vrf B, then what exactly am i importing?
    Am i importing only routes for directly connected networks on vrf A and static routes redistributed into vrf A?
    What about routes that are exported from other vrf's but set with the extcommunity that matches this route-target x:y. Are they also imported?
    What about the other route-targets imported into vrf A? Do they also land into vrf B?
    Thanks a lot
    Gautam

    Hi Gautam,
    When you configure  route-target import x:y under a VRF, you actually import into the PE VPNv4 table all the VPNv4 prefixes which has one of their RT set to x:y.
    To export a route, the PE needs first to add it into the VRF BGP table. So you need to redistribute those routes into the address-family ipv4 vrf sub-mode configuration. The way those routes are learned from the CE depends of the configuration: could be dynamic via BGP, OSPF,.. or static
    An imported route is never exported back to the backbone.
    HTH
    Laurent.

  • IMPORT & EXPORT from/to compressed files directly...

    for newbies a tip to import(export) directly to(from) compressed files using pipes . Its for Unix based systems only, as I am not aware of any pipe type functionality in Windows. The biggest advantage is that you can save lots of space as uncompressing a file makes it almost 5 times or more. (Suppose you are uncompressing a file of 20 GB, it will make 100 GB) As a newbie I faced this problem, so thought about writing a post.
    Lets talk about export first. The method used is that create a pipe, write to a pipe(ie the file in exp command is the pipe we created), side by side read the contents of pipe, compress(in the background) and redirect to a file. Here is the script that achieves this:
    export ORACLE_SID=MYDB
    rm -f ?/myexport.pipe
    mkfifo ?/myexport.pipe
    cat ?/myexport.pipe |compress > ?/myexport.dmp.Z &
    sleep 5
    exp file=?/myexport.pipe full=Y log=myexport.logSame way for import, we create a pipe, zcat from the dmp.Z file, redirect it to the pipe and then read from pipe:
    export ORACLE_SID=MYDB
    rm -f ?/myimport.pipe
    mkfifo ?/myimport.pipe
    zcat ?/myexport.dmp.Z > ?/myimport.pipe &
    sleep 5
    imp file=myimport.pipe full=Y show=Y log=?/myimport.logIn case there is any issue with the script, do let me know :)
    Experts, please have a look...is it fine ? (Actually I dont have Oracle installed on my laptop(though have Fedora 6) so couldnt test the scripts)
    I posted the same on my blog too. just for bookmark ;)
    Sidhu
    http://amardeepsidhu.blogspot.com

    actually, only the compression thing runs in the background. rest proceeds like normal only. just instead of giving normal file we use pipe as a file.
    nice article about named pipes
    Sidhu

  • Import - Export feature

    Is there a way to import - export routes or locations from HERE from-to other devices?
    I have a lot of routes created with different softwares and would like to import them on my Nokia phone.
    Igor
    http://jenga.wordpress.com

    I do this often and it is the only way to bulk add translation patterns. It will not remove any translation patterns it will only add/change the translation pattern. If all new patterns it will simply add your new entries.

  • Another question about import/export to excel file?

    Hi, I need to know urgently if it's possible to import/export excel files from/to JSP with unpredicted number of fields each row. For example, row 1 in the excel file can have 5 columns of data, row 2 has 3 columns of data, etc...
    Does reading from excel file in JSP require that we know beforehand how many columns there are and what each column represent?

    go read http://jakarta.apache.org/poi !!!!!!
    No it doesnt. the POI api provide method to determine the number of cells in a row.

Maybe you are looking for

  • Lightroom not working-Please help!

    I finished the 30 day trial for lightroom, and then I tried to pay for the monthly subscription, and the payment went through and I got the confirmation email, but it still only says "Trial Expired", so it's still not working!! Please help!

  • Problem with lookup xref not happening Properly

    Hi All, we are facing an issue in lookup xref. Sometimes the lookup xref happens correctly and sometimes we get empty value from lookup xref even if the xref table has data properly populated. Check the below 2 cases. CASE-A: This mainly happens in t

  • Using Profile to limit resource access

    Hello, I'm trying to use the profile feature to limit access for specific users the featue I want to limit is: CPU_PER_CALL defined as follow: Limits the amount of CPU time that can be consumed by any single database call in any session established b

  • Hook two monitors to MacBook Pro

    I'm new to this posting questions so please bare with me if you have seen my post before. I've have posted this question twice but can't find either post to see if someone has responded. I recently bought a MBP with 1 Firewire800 port; 1 Thunderbolt

  • ICloud Storage Upgrades: Auto-renewal options

    Is there a specific control option for determining whether or not an iCloud Storage upgrade plan automatically renews or not?  From this article iCloud storage upgrades and downgrades - Apple Support it seems to suggest that if you simply do nothing