Ask about DML Handler for Streams at the Schema level ?

Hi all !
I use Oracle version 10.2.0.
I have two DB is A (at machine A, and it used as source database) and B (at machine B - destination database). Some changes from A will apply to B.
At B, I installed oracle client to use EMC (Enterprise Manager Console) tool to generate some script, and use them to configure Streams environment, I configured Streams at the Schema level (DML and DDL) => I successed ! But I have two problems is:
+ I write a DML Handler, called "emp_dml_handler" and want set it to EMP table only. So, I must DBMS_STREAMS_ADM.ADD_TABLE_RULES ? (I configured: DBMS_STREAMS_ADM.ADD_SCHEMA_RULES) such as:
BEGIN
DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
schema_name => '"HOSE"',
streams_type => 'APPLY',
streams_name => 'STRMADMIN_BOSCHOSE_REGRES',
queue_name => 'apply_dest_hose',
include_dml => true,
include_ddl => true,
source_database => 'DEVELOP.REGRESS.RDBMS.DEV.US.ORACLE.COM');
END;
and after:
DECLARE
emp_rule_name_dml VARCHAR2(50);
emp_rule_name_ddl VARCHAR2(50);
BEGIN
DBMS_STREAMS_ADM.ADD_TABLE_RULES(
table_name => 'HOSE.EMP,
streams_type => 'APPLY',
streams_name => 'STRMADMIN_BOSCHOSE_REGRES',
queue_name => 'apply_dest_hose',
include_dml => true,
include_ddl => true,
source_database => 'DEVELOP.REGRESS.RDBMS.DEV.US.ORACLE.COM',
dml_rule_name => emp_rule_name_dml,
ddl_rule_name => emp_rule_name_ddl);
DBMS_APPLY_ADM.SET_ENQUEUE_DESTINATION(
rule_name => emp_rule_name_dml,
destination_queue_name => 'apply_dest_hose');
END;
BEGIN
DBMS_APPLY_ADM.SET_DML_HANDLER(
object_name => 'HOSE.EMP',
object_type => 'TABLE',
operation_name => 'UPDATE',
error_handler => false,
user_procedure => 'strmadmin.emp_dml_handler',
apply_database_link => NULL,
apply_name => NULL);
END;
... similar for INSERT and DELETE...
I think that I only configure streams at the schema level and exclude EMP table, am i right ?
+ At the source, EMP table have a primary key. And I configured:
ALTER TABLE HOSE.EMP ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
==> So, at the destination, have some works that I must configure the substitute key for EMP table ?
Have some ideas for my problems ?
Thanks
Edited by: changemylife on Sep 24, 2009 10:45 PM

If you want to discard emp from schema rule, then just add a negative rule, either on capture or apply.
What is the purpose of :
DBMS_APPLY_ADM.SET_ENQUEUE_DESTINATION(
rule_name => emp_rule_name_dml,
destination_queue_name => 'apply_dest_hose');sound like you are enqueunig into 'apply_dest_hose' all the rows for this table that comes from ... 'apply_dest_hose'
Next you declare a DML_HANDLER that is attached to nobody :
BEGIN
DBMS_APPLY_ADM.SET_DML_HANDLER(
object_name => 'HOSE.EMP',
object_type => 'TABLE',
operation_name => 'UPDATE',
error_handler => false,
user_procedure => 'strmadmin.emp_dml_handler',
apply_database_link => NULL,
apply_name => NULL);           <----- nobody rules the world!
END;the sequence of evaluation is normally :
APPLY_PROCESS (reader)
          |
          | -->  RULE SET
                      |
                      | --> RULE .....
                      | --> RULE
                                 |
                                 | --> evaluate OK then --> exist DML_HANDLER  --> YES --> call DML_HANDLER --> on LCR.execute call coordinator
                                                                                        |
                                                                                        | NO
                                                                                        |                                                                 
                                                                                   Implicit apply (give LCR to coordinator which dispatch to one apply server)    
                                                  Since your dml_handler is attached to null apply process it will never be called by anybody and your LCR for table emp will be implicit applied by its apply process.

Similar Messages

  • DML handler in streams.

    IS there any way to get the users information in a dml handler of streams?
    I want in my log table, the information about the user also who had performed the DML in an stream environment.
    My approach for DML handler is just like ...
    ----Log table
    CREATE TABLE strmadmin.history_row_lcrs(
    timestamp DATE,
    source_database_name VARCHAR2(128),
    command_type VARCHAR2(30),
    object_owner VARCHAR2(32),
    object_name VARCHAR2(32),
    tag RAW(10),
    transaction_id VARCHAR2(10),
    scn NUMBER,
    commit_scn NUMBER,
    old_values SYS.LCR$_ROW_LIST,
    new_values SYS.LCR$_ROW_LIST)
    NESTED TABLE old_values STORE AS old_values_ntab
    NESTED TABLE new_values STORE AS new_values_ntab;
    ---procedure for inserting value/user defined DML handler...
    CREATE OR REPLACE PROCEDURE history_dml(in_any IN ANYDATA)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    BEGIN
    -- Access the LCR
    rc := in_any.GETOBJECT(lcr);
    -- Insert information about the LCR into the history_row_lcrs table
    INSERT INTO strmadmin.history_row_lcrs VALUES
    (SYSDATE, lcr.GET_SOURCE_DATABASE_NAME(), lcr.GET_COMMAND_TYPE(),
    lcr.GET_OBJECT_OWNER(), lcr.GET_OBJECT_NAME(), lcr.GET_TAG(),
    lcr.GET_TRANSACTION_ID(), lcr.GET_SCN(), lcr.GET_COMMIT_SCN,
    lcr.GET_VALUES('old'), lcr.GET_VALUES('new', 'n'));
    -- Apply row LCR
    lcr.EXECUTE(true);
    END;
    Thanks
    Kapil

    Hi Damorgan,
    I will try this in my stream environment, but i am little doubtfull that this will work. the reason why i am saying this is if i will right this in my user_proc which is a dml handler for my stream environment, then these statement will run on the DB where i have "apply process" and i am not sure what user id or seession id these statements will give in that case..any way thankyou for your attention on a post about streams. i will post the result soon.
    Kapil

  • Trouble Setting Up DML Handler for Journaling

    Hi Pat,
    I am trying to setup a simple DML handler for journaling of a table and cannot get it to work. Configuration is as follows:
    Source table
    Target table - updated via basic replication setup, this works fine.
    Target table journal - This table looks just like the original with additional columns for meta data about the transaction (i.e. trans_time, trans_type, trans_id..etc). Note: Did not use nested table technology.
    The problem is in compiling the user procedure for the DML handler we get an error on the INSERT part of the code:
    PL/SQL: ORA-00932: inconsistent datatypes: expected NUMBER got -
    The code is listed below and the error points to the usage of the lcr.GET_VALUE package regardless of the column.
    Can you tell me if this is a correct usage of that package/procedure? Can you provide any better examples of DML handlers,preferbly for journaling? I understand from another thread you may have a new set of doc coming out. Maybe that can help me?
    I have a WORD doc w/pics that can better articulate the situation if it will help. Any direction is truely appreciated.
    Best Regards,
    Tom
    P.S. Is Oracle consulting spun up on this technology? We are not adverse to having profesional help to reduce our spinup time.
    CREATE OR REPLACE PROCEDURE contact_point_journal_dml(in_any IN SYS.ANYDATA)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    BEGIN
    -- Access the LCR
    rc := in_any.GETOBJECT(lcr);
    -- Insert information in the LCR into the contact_point_journal table
    INSERT INTO strmuser.contact_point_journal
    VALUES
    (lcr.GET_VALUE('NEW', 'CONTACT_POINT_ID'),
    lcr.GET_VALUE('NEW', 'EFFECTIVE_DT'),
    lcr.GET_VALUE('NEW', 'VERSION'),
    lcr.GET_VALUE('NEW', 'CREATED_BY'),
    lcr.GET_VALUE('NEW', 'CREATED_TS'),
    lcr.GET_VALUE('NEW', 'CONTACT_CODE_ID'),
    lcr.GET_VALUE('NEW', 'ADDRESS1'),
    lcr.GET_VALUE('NEW', 'ADDRESS2'),
    lcr.GET_VALUE('NEW', 'ADDRESS3'),
    lcr.GET_VALUE('NEW', 'ADDRESS4'),
    lcr.GET_VALUE('NEW', 'CITY'),
    lcr.GET_VALUE('NEW', 'COUNTY'),
    lcr.GET_VALUE('NEW', 'STATE_PROVINCE_CODE_ID'),
    lcr.GET_VALUE('NEW', 'POSTAL_CODE'),
    lcr.GET_VALUE('NEW', 'COUNTRY_CODE_ID'),
    lcr.GET_VALUE('NEW', 'GEO_CODE'),
    lcr.GET_VALUE('NEW', 'OTHER_CONTACT_POINT_VALUE'),
    lcr.GET_VALUE('NEW', 'EXPIRATION_DT'),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_BY'),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_TS'),
    SYSDATE,
    lcr.GET_COMMAND_TYPE(),
    lcr.GET_TRANSACTION_ID(),
    lcr.GET_SCN(),
    lcr.GET_SOURCE_DATABASE_NAME(),
    lcr.GET_OBJECT_OWNER(),
    lcr.GET_OBJECT_NAME(),
    '1',
    'A'
    -- Apply row LCR
    -- Command type code may be '03' instead of 'insert' ???
    -- Is the syntax correct for SET statement ???
    lcr.SET_COMMAND_TYPE('INSERT');
    lcr.EXECUTE(true);
    END;

    Hi Tom,
    The GET_VALUE method of an LCR$ROW_RECORD returns a SYS.ANYDATA type.
    You need to specify one of the static access functions to get the value of the correct type.
    Here is your dml_handler with the modifications:
    CREATE OR REPLACE PROCEDURE contact_point_journal_dml(in_any IN SYS.ANYDATA)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    BEGIN
    -- Access the LCR
    rc := in_any.GETOBJECT(lcr);
    -- Insert information in the LCR into the contact_point_journal table
    INSERT INTO strmuser.contact_point_journal
    VALUES
    (lcr.GET_VALUE('NEW', 'CONTACT_POINT_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'EFFECTIVE_DT').AccessDate(),
    lcr.GET_VALUE('NEW', 'VERSION').AccessNumber(),
    lcr.GET_VALUE('NEW', 'CREATED_BY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'CREATED_TS').AccessTimestamp(),
    lcr.GET_VALUE('NEW', 'CONTACT_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'ADDRESS1').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS2').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS3').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS4').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'CITY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'COUNTY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'STATE_PROVINCE_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'POSTAL_CODE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'COUNTRY_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'GEO_CODE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'OTHER_CONTACT_POINT_VALUE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'EXPIRATION_DT').AccessDate(),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_BY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_TS').AccessTimestamp(),
    SYSDATE,
    lcr.GET_COMMAND_TYPE(),
    lcr.GET_TRANSACTION_ID(),
    lcr.GET_SCN(),
    lcr.GET_SOURCE_DATABASE_NAME(),
    lcr.GET_OBJECT_OWNER(),
    lcr.GET_OBJECT_NAME(),
    '1',
    'A'
    -- Apply row LCR, too
    lcr.EXECUTE(true);
    END;

  • DML Handler for update - need help

    Hi,
    I am trying a simple DML handler to INSERT all the column values in a target table (CHANNELS_DML)..which are sourced from an updated table (CHANNEL). Both of these tables are in the same database.
    Here is the procedure I'm using for this purpose..
    +++++++++++++++++
    CREATE OR REPLACE PROCEDURE chn_dml_handler(in_any IN ANYDATA) IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    command VARCHAR2(30);
    old_values SYS.LCR$_ROW_LIST;
    old_pk_val sys.anydata;
    new_values SYS.LCR$_ROW_LIST := NULL;
    BEGIN
    rc := in_any.GETOBJECT(lcr);
    command := lcr.GET_COMMAND_TYPE;
    old_values := lcr.GET_VALUES('old');
    new_values := lcr.GET_VALUES('new');
    IF command = 'UPDATE' THEN
    old_values := lcr.GET_VALUES('old','y');
    lcr.SET_VALUES('new', old_values);
    lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
    lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('UPDATE'));
    lcr.SET_COMMAND_TYPE('INSERT');
    lcr.SET_OBJECT_NAME('CHANNELS_DML');
    ELSIF command = 'DELETE' THEN
    lcr.SET_COMMAND_TYPE('INSERT');
    lcr.SET_OBJECT_NAME('CHANNELS_DML');
    lcr.SET_VALUES('new', old_values);
    lcr.SET_VALUES('old', NULL);
    lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
    lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('DELETE'));
    ELSE
    lcr.SET_COMMAND_TYPE('INSERT');
    lcr.SET_OBJECT_NAME('CHANNELS_DML');
    lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
    lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('INSERT'));
    END IF;
    lcr.EXECUTE(true);
    END;
    ++++++++++++++++++++
    INSERT, DELETE are working fine. However, when it comes to UPDATE I encounter "ORA-23605: invalid value "" for STREAMS parameter command_type".
    Would appreciate, if you can point me to any missed steps!
    Both source, target tables have the pk and supplemental logging is enabled for all the source tbl columns. (BTW, is it mandatory to enable supplemental logging ?)
    Thanks,
    Sharas

    You need to put this statement into IF 'UPDATE'
    lcr.SET_VALUES('old', NULL);
    old values in case of INSERT should be NULL.
    You may want to use case instead of IF ELSEIF...
    You might also have problems with LOBS... LOBs are not covered by this code.

  • Bought a Winegard  indoor HDTV antenna for streaming over-the-air TV. Will my Apple TV work

    FlatWave Mini
    FlatWave
    I Am considering cutting my cable service and have bought a Winegard indoor HDTV wall mount antenna for streaming over-the air tv? I would appreciate an advice you might give me on this project. Will my Apple TV work with this setup? Thanks so much.

    appetv is a media box not a OTA related product in any way
    it use the LAN network to play shared media from your computer
    and if it has an Internet connection it offer a range of Internet streaming services
    read more
    http://www.apple.com/appletv/

  • Can anyone give a good contact number for someone in the upper level of customer service

    can anyone give a good contact number for someone in the upper level of customer care i have talked to two of the worst people from customer service, the "supervisor" who was very appropriate did give me a address to mail a complaint which i will but being a disabled veteran of the Iraq war and a member of the wounded warrior project i get upset at certain people who show no respect for the average person and even worse of an attitude to those injured serving their country. I'm in no way saying I'm better its just that i expect a grain of respect as a person, a fellow American working everyday just to get by. my issue was not an impossible issue to resolve but i was told by one rep that it was not possible after my call being "dropped" i called back and talked to another. Luke from call center Washington state told me it was possible but that the phone i ordered two days prior (that rep failed to finish the order)was no longer available and i could pick a different phone not on back order.......i mentioned my confusion to the lack of service and being told two separate things. i asked why this was when i was not the one who made the mistake he told me it was not there fault and pushed the blame to me....he then called me dude and started to speak over me. when i asked to speak to a supervisor he asked why i told him i was no longer interested in talking to him he said why, i asked to be transferred again he kept refusing saying listen man I'm trying to help you what do you want. i asked to speak to his supervisor at least three more times he refused. i asked for his employee information so i could call back to report his rude behavior he refused to give me anything except at the end he finally told me his name.. there is more but my hand is tired is there anyone who can help me? if i find an answer as i will be posting this to many sites i will post it here.

        Hello hazzard0011, I want to first and foremost say we truly appreciate your hard work and dedication to our country. It is our commitment to provide a top notch customer experience. My apologies that this hasn't been the case in your recent interactions. We can definitely submit feedback to our upper leadership regarding the matter. Can you please send us a direct message so that we can further investigate? Also, please share details regarding the initial issue. Here's steps to send a direct message: http://vz.to/1b8XnPy
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Can anyone give a good contact number for someone in the upper level of customer care

    Duplicate post - please see:
    can anyone give a good contact number for someone in the upper level of customer service
    Message was edited by: Admin Moderator

        Hello hazzard0011, I want to first and foremost say we truly appreciate your hard work and dedication to our country. It is our commitment to provide a top notch customer experience. My apologies that this hasn't been the case in your recent interactions. We can definitely submit feedback to our upper leadership regarding the matter. Can you please send us a direct message so that we can further investigate? Also, please share details regarding the initial issue. Here's steps to send a direct message: http://vz.to/1b8XnPy
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Incompletness procedure for Opportunity at the item level

    Hello All,
    Have you already worked on the Incompletness procedure for Opportunity at the item level ?
    I have the following request : product must be entered in the opportunity otherwise a message of error must appear
    I have used the following data in Incompletness procedure (which is assigned to the transaction)
    - Object name = ORDERADM_I
    - Field name = ORDERED_PROD
    - Relevance = Header and Item
    The result of this is : when I enter the product in the opportunity, the message of error saying that "Transaction is incomplete: Enter Product" doesn't disappear, whereas the product and quantity are in
    I have done another test, if I enter for Relevance = "Item" intstead of "Header and Item", the message of error doesn't appear at all in the transaction. So I can save the opportunity without getting a message...
    Any thoughts ?
    Thank you for your help

    Can you validate if the customizing setting for screen sequence control exists.
    Use transaction CRMV_SSC.
    you should have a corresponding entry that matches your incompletion log entry.

  • Dml_Handler at the Schema Level?

    Hi:
    I'm using 11g R2 and doing a one-way streams replication within the same database. I've got a subset of tables within the same schema setup now for capture and I'm using dml_handlers on apply. The handlers are specified on each table with a package that takes each trapped LCR and writes its data out to a different table than the one that the LCR got captured from. This was done for a bolt-on reporting issue that popped up. This is all working great. Streams rocks!
    Here's my next issue. I want to expand/morph the above approach in the following way. I want to do my capture at the schema level for all tables and also run just one dml_handler to take all LCRs for the specified schema and write them out as XML into a clob column. I've got the XML portion working and I pretty much know how I can get the streams part going as well, using a dml_handler-per-table approach similar to what I did above. What I would like to know is whether there's a way to avoid having to setup a dml_hander for each insert, update, and delete LCR on every table within the specified schema.
    Instead of doing this....
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    object_name => 'schema.table_a',
    object_type => 'TABLE',
    operation_name => 'INSERT',
    error_handler => false,
    user_procedure => 'package.procedure',
    apply_database_link => NULL,
    apply_name => 'apply_name');
    END;
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    object_name => 'schema.table_a',
    object_type => 'TABLE',
    operation_name => 'UPDATE',
    error_handler => false,
    user_procedure => 'package.procedure',
    apply_database_link => NULL,
    apply_name => 'apply_name');
    END;
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    object_name => 'schema.table_a',
    object_type => 'TABLE',
    operation_name => 'DELETE',
    error_handler => false,
    user_procedure => 'package.procedure',
    apply_database_link => NULL,
    apply_name => 'apply_name');
    END;
    Once for each table in the schema
    I'd like to be able to do the following:
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    schema_name => 'schema', ---This line is totally made up by me. The real argument is object_name
    object_type => 'TABLE',
    operation_name => 'ALL', ---This line is also totally made up by me. The real allowed options are Insert, Update, and Delete.
    error_handler => false,
    user_procedure => 'package.procedure',
    apply_database_link => NULL,
    apply_name => 'apply_name');
    END;
    Is there a way to do this? I don't see a procedure in dbms_apply_adm to accomplish it, or I just missed it. I could also do this within a loop using dynamic SQL but I'm hoping I won't have to.
    Thanks for any help!
    Cheers,
    Mike

    SCHEMA level is not possible with this procedure.
    However, you can set the operation_name to 'DEFAULT' - which indicates all operations (INSERT/UPDATE/DELETE/LOB_UPDATE)

  • Trigger for logging changes(DML changes) for All tables in Schema

    Hi ,
    Is there a way to create a schema level trigger to audit the DML changes that affect all the tables.I need the output in my log table as
    1) the table name on which the DML occurred
    2) type of DML
    3) column names affected.
    I know this can be achieved through enabling AUDIT or by creating dynamically, triggers for each tables...
    Is there a way to create a single trigger to achieve this??

    It's not possible to create DML trigger on schema level
    I think the only way is to create the triggers dynamically for each table..
    Re: Schema level Database triggers by Kamran Agayev
    Edited by: jeneesh on Oct 12, 2012 6:39 PM

  • How to Use different icons for JTree in the same level

    Hi guys, i come cross a problem with JTree. The module need a JTree which need to represent items in the same level using different icons. For example:
    [Icon for Root]Root
    |
    |_____________[Icon for Table] TABLES
    |
    |_____________[Icon for Index] INDEXS
    |
    |_____________[Icon for Views] VIEWS
    As i know, the default behavior for JTree is using the same icon for all leaves and
    the same icon for all node that has children. How can i achieve that?
    Thansk a lot!

    subclass DefaultTreeCellRenderer. if you overwrite the method below, then you can set the icon to whatever you want....!
        public Component getTreeCellRendererComponent(JTree tree, Object value,
                                    boolean sel,
                                    boolean expanded,
                                    boolean leaf, int row,
                                    boolean hasFocus) {
         String         stringValue = tree.convertValueToText(value, sel,
                               expanded, leaf, row, hasFocus);
            this.tree = tree;
         this.hasFocus = hasFocus;
         setText(stringValue);
         if(sel)
             setForeground(getTextSelectionColor());
         else
             setForeground(getTextNonSelectionColor());
         // There needs to be a way to specify disabled icons.
         if (!tree.isEnabled()) {
             setEnabled(false);
             if (leaf) {
              setDisabledIcon(getLeafIcon());
             } else if (expanded) {
              setDisabledIcon(getOpenIcon());
             } else {
              setDisabledIcon(getClosedIcon());
         else {
             setEnabled(true);
             if (leaf) {
              setIcon(getLeafIcon());
             } else if (expanded) {
              setIcon(getOpenIcon());
             } else {
              setIcon(getClosedIcon());
            setComponentOrientation(tree.getComponentOrientation());
         selected = sel;
         return this;
        }

  • Where do you ask about content that isn't on the store that is suppose to be?

    Episode 10 of Longmire should of released on Monday August 5th but didn't.  Worse yet the episode 9 that released a week earlier is now dated for August 5th in it's place.  I am wondering if someone just typo mistaked something or there is a reason.  I don't see where I can inquire about this?

    There is not a way to add ebooks to iBooks without getting them through the iBookstore. But you can add books to the Kindle app, the Kobo app, as well as, the Swiss army Knife of the iPad, GoodReader. After these are on your iPad you can add book files to them with the iTunes app on your computer.

  • Hi I want to ask about Microsoft office for Mac book air.

    I purchased microsoft office 365 from their online store, but it failed to set it up. Finally, I asked for refund. i wonder which microsoft office suit for Mac and i can use it for permanently?
    Thanks

    Microsoft Office for Mac 2011 is the latest major release of Office designed exclusively for the Mac.  As that was released more than four years ago, should you purchase and use it, make sure to do Help > Check for Updates from Word or Excel or PowerPoint once you install it.
    Microsoft announced their Office for Mac 2016 beta software is available for public trial effective today.  Should you use this, you would have to purchase or lose it when it is officially released in a few months.
    Office 365 should be able to work on your machine.

  • Question about VLAN handling for virtual switches and vnets

    Regards,
    We are encountering some problems when using VLAN tagged 10g ethernet. We assign the VLANS to the vsw like this:
    ldm add-vsw net-dev=net2 mtu=9000 vid=vid1,vid2,.... mode=sc primary-vsw0 primary
    the mode=sc is due to us planning for possible Solaris Cluster installation for some guests. The guest get its vnets like this:
    ldm add-vnet mode=hybrid vid=vid1 vnet0 primary-vsw0 guest
    we use mode=hybrid since this is a NIU 10 gig eth interface in a T4-4. My questions are:
    1. Do you see any problems with this config ?
    2. Do you know of any problems with using VLAN tagging in virtual switches/virtual nets for LDOMs ?
    3. When adding, subtracting VLANS to the vsw does it need to recreated or does a ldm set-vsw vid=vid1,... work dynamically (this goes of course for other vsw properties as well) ?
    This is VM Server for SPARC v2.2, Solaris 11 for control and service domains, solaris 10 in the guest LDOMs.
    Thanks,
    Edited by: DamnGoodCoffee! on Nov 2, 2012 4:59 AM

    Hi,
    1.
    - If you want that the vnet is handling the VLAN tagging for you, you need to set the pvid.
    - If you want to do the VLAN tagging in the guest LDOM (via the interface name vnetVLANID00x), it is OK.
    2. We use VLAN tagging in vnetX via setting the pvid for the vnet for guest LDOMs, and we use the interface name based VLAN tagging in the primary domain on the vsw interface.
    3. You don't need to recreate, you can set it. I'm not sure if you need to reboot to let it take effect, but IIRC it is dynamic (should be easy to test).
    Bye,
    Alexander.

  • Asking about Flash lite for E5

    could anyone telling me is E5 gonna be able to upgrade Flash lite to Flash lite 4 or not 

    Would doubt it, but you never know, at least you normally get software updates for Nokia phones for 2yrs plus after launch, do there's plenty of time for it to happen if they're going to do it !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

Maybe you are looking for

  • Mac Mini server not showing second hard drive

    early 2009 mini server suddenly won't show the second hard drive for time machine. All I get in the system profiler is this? Is my hard drive toast or is there any idea out there of how to recover it? Thanks for the help! Running 10.6.8 server by the

  • WEBUTIL_FILE_TRANSFER.URL_To_Client unable to transfer desired file from DB

    Hi all, I need to transfer files from DB server to web client using WEBUTIL_FILE_TRANSFER.URL_To_Client, the problem is whenever i try to transfer i get base.htm file contents into the requested file. i.e. i do not get the desired file transfered int

  • ATI Catalyst/Powerplay

    Can anybody direct me to a place that I could download a version that works for macbook pro 15" radeon x1600? I want to turn off powerplay (I game without being plugged in) and the only way I know of doing this is to go to Catalyst of ATI Control Cen

  • Dug a deep hole . . .

    I was moving files around and accidentally deleted files from my Finder sidebar! No problem, except I paniced and started moving stuff around! Now I can't find my websites when going in from iWeb, nor are any of my photos in iPhoto. I read too late a

  • Time Machine kills my OS

    I'm not sure if it is because Spotlight was running (or hanging, I'm not sure whether it was actually doing anything or not) (and I had turned my TM disc to the Private setting in Spotlight) or what, but twice now running Time Machine has frozen ever