CFTransaction, several inserts and foreign keys

Here is the joke of what I want to do

< cfset commitit = yes >
< cftransaction action = start >
< cftry >
< cfquery >
making my first insertion on the main table - primary key is the unique sequence number
< / cfquery >
< cfquery >
do my next insertion in the second, but it has a foreign key to the intial insert constraint
< cfquery >
< cfquery >
do my next insertion in the third table, but it has a foreign key to the intial insert constraint
< cfquery >
< cfcatch >
< commitit = no >
Rollback
< / cfcatch >
If commitit = yes
commit the changes
endif
< / cftry >
< / cftransaction >
Problem is when I try to insert the record in the second table, the first record (parent) is not here because no validation has yet arrived. I get a foreign key error. I want to do within a transaction so that I can do a restore if there are questions. Is it possible to do in a cftransaction?

I want to thank you all for your answers. The code I had was OK. I kept changing the code for serialization, because it makes sense in this case. I needed to get back to the basics - my definition of foreign key was in trouble. Thanks to you all.

Tags: ColdFusion

Similar Questions

  • How to join two tables to retrieve the data from the columns in table two. Tables have primary and foreign key relationships

    Hello

    I want to join the two tables to retrieve the data from the columns of the two table passing parameters to the join query. Tables have primary and foreign key relationships

    Details of the table

    Alert-1 - AlertCode (FK), AlerID (PK)

    2 AlertCode-AlertDefinition-(PK)

    Help, please


    ----------

    Hi Vincent,.

    I think that you have not worked on adf 12.1.3.  In adf 12.1.3 you don't have to explicitly create the association. When you create the EO to your table, Association xxxxFkAssoc, will be created by ADF12.1.3 for you automatically. Please try this and do not answer anything... You can also follow the links below. I solved the problem by using the following link

    Oracle ADF Guide step by step - Oracle ADF tutorial: creating a relationship of the master / detail using Oracle ADF

    ---

  • PARTITION BY REFERENCE: ORA-02266 when several relatives of foreign key

    Bubble my problem down to a simple example, imagine providers of satellite TV, their programming packages, their clients and customers linking to packages.  Shouldn't be able to drop all data from a provider in one shot?

    CREATE TABLE suppliers

    (provider_name VARCHAR2 (20) NOT NULL)

    CONSTRAINT providers_pk PRIMARY KEY (nom_de_fournisseur)

    )

    PARTITION BY LIST (provider_name) (PARTITION provider__dflt VALUES (DEFAULT))

    /

    CREATE TABLE programming

    (programming_name VARCHAR2 (50) NOT NULL)

    , provider_name VARCHAR2 (20) NOT NULL

    CONSTRAINT programming_pk PRIMARY KEY (programming_name)

    CONSTRAINT programming_fk1 FOREIGN KEY (nom_de_fournisseur)

    REFERENCES (provider_name) providers

    )

    PARTITION BY REFERENCE (programming_fk1)

    /

    Subscribers of CREATE TABLE

    (subscriber_name VARCHAR2 (50) NOT NULL)

    , provider_name VARCHAR2 (20) NOT NULL

    CONSTRAINT subscribers_pk PRIMARY KEY (subscriber_name)

    CONSTRAINT subscribers_fk1 FOREIGN KEY (nom_de_fournisseur)

    REFERENCES (provider_name) providers

    )

    PARTITION BY REFERENCE (subscribers_fk1)

    /

    CREATE TABLE subscriber_programming

    (subscriber_name VARCHAR2 (50) NOT NULL)

    , programming_name VARCHAR2 (20) NOT NULL

    CONSTRAINT Subscriber_programming_pk

    PRIMARY KEY (subscriber_name, programming_name)

    CONSTRAINT subscriber_programming_fk1 FOREIGN KEY (subscriber_name)

    Subscribers of REFERENCES (subscriber_name)

    CONSTRAINT subscriber_programming_fk2 FOREIGN KEY (programming_name)

    Programming REFERENCES (programming_name)

    )

    PARTITION BY REFERENCE (subscriber_programming_fk1)

    /

    ALTER TABLE SPLIT PARTITION provider__dflt values ("dishnetwork") suppliers

    IN (provider_dishnetwork PARTITION, PARTITION provider__dflt)

    UPDATE INDEX

    /

    INSERT INTO suppliers (provider_name)

    VALUES ("dishnetwork")

    /

    INSERT INTO subscribers (subscriber_name, provider_name)

    VALUES ('john doe', "dishnetwork")

    /

    INSERT INTO programming (programming_name, provider_name)

    VALUES ('top200","dishnetwork")

    /

    ALTER TABLE DROP PARTITION provider_dishnetwork UPDATE INDEX providers

    /

    I have same INSERT in subscriber_programming; the above is sufficient to cause the latter to draw "ORA-02266: unique/primary keys in table referenced by foreign keys enabled". ""  Version information:

    -Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    -With options for partitioning, Real Application Clusters, Automatic Storage Management, OLAP, Data Mining and Real Application Testing

    -Linux 2.6.32 - 279.11.1.el6.x86_64 #1 SMP Sat Sep 22 07:10:26 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux

    This simple demo is simply representative of course.  Our number of real paintings ~ 60, with hundreds of millions of records in a large number of tables, a tree FK covering several levels of depth, without the partition littered throughout key.  Given that the volume of data, we try hard to avoid executing DELETE, which is why I explore PARTITION migration BY reference.  The problem is not unlike the already-fixed Bug 9329773, but it is slightly different - especially that this variant is not resolved.  If there is no way that such a facility would never fly, you have any suggestions that would not involve changes to application code?  (For example, adding a partition to the tables key column kids won't fly, but I might be able to sell disabling constraints to developers.)

    After much head striking, I found the trick, by https://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/ .  The difference of Appendix A is bold: the NOVALIDATE on subscriber_programming_fk2 and the EXCHANGE/CREATE/DROP of programming_e.

    CREATE TABLE suppliers

    (provider_name VARCHAR2 (20) NOT NULL)

    CONSTRAINT providers_pk PRIMARY KEY (nom_de_fournisseur)

    )

    PARTITION BY LIST (provider_name) (PARTITION provider__dflt VALUES (DEFAULT))

    /

    CREATE TABLE programming

    (programming_name VARCHAR2 (50) NOT NULL)

    , provider_name VARCHAR2 (20) NOT NULL

    CONSTRAINT programming_pk PRIMARY KEY (programming_name)

    CONSTRAINT programming_fk1 FOREIGN KEY (nom_de_fournisseur)

    REFERENCES (provider_name) providers

    )

    PARTITION BY REFERENCE (programming_fk1)

    /

    Subscribers of CREATE TABLE

    (subscriber_name VARCHAR2 (50) NOT NULL)

    , provider_name VARCHAR2 (20) NOT NULL

    CONSTRAINT subscribers_pk PRIMARY KEY (subscriber_name)

    CONSTRAINT subscribers_fk1 FOREIGN KEY (nom_de_fournisseur)

    REFERENCES (provider_name) providers

    )

    PARTITION BY REFERENCE (subscribers_fk1)

    /

    CREATE TABLE subscriber_programming

    (subscriber_name VARCHAR2 (50) NOT NULL)

    , programming_name VARCHAR2 (20) NOT NULL

    CONSTRAINT Subscriber_programming_pk

    PRIMARY KEY (subscriber_name, programming_name)

    CONSTRAINT subscriber_programming_fk1 FOREIGN KEY (subscriber_name)

    Subscribers of REFERENCES (subscriber_name)

    CONSTRAINT subscriber_programming_fk2 FOREIGN KEY (programming_name)

    Programming (programming_name) NOVALIDATE REFERENCES

    )

    PARTITION BY REFERENCE (subscriber_programming_fk1)

    /

    ALTER TABLE SPLIT PARTITION provider__dflt values ("dishnetwork") suppliers

    IN (provider_dishnetwork PARTITION, PARTITION provider__dflt)

    UPDATE INDEX

    /

    INSERT INTO suppliers (provider_name)

    VALUES ("dishnetwork")

    /

    INSERT INTO subscribers (subscriber_name, provider_name)

    VALUES ('john doe', "dishnetwork")

    /

    INSERT INTO programming (programming_name, provider_name)

    VALUES ('top200","dishnetwork")

    /

    INSERT INTO subscriber_programming (subscriber_name, programming_name)

    VALUES ('john doe', "top200")

    /

    CREATE TABLE programming_e AS

    SELECT * PROGRAMMING WHERE 0 = 1

    /

    ALTER TABLE programming

    Provider_dishnetwork WITH TABLE programming_e SWAP PARTITION

    /

    DROP TABLE programming_e

    /

    ALTER TABLE DROP PARTITION provider_dishnetwork UPDATE INDEX providers

    /

  • Indexes and foreign keys

    Hi, we have a RAC Oracle 10 g 2 EE on SLES10.

    I have tables with 300.000.000 of records. These paintings clues because it access it takes very very slow. I check what he need an index for each foreign key. I have a lot of tables and I'm looking for some tools or SQL or similar phrases that tell me, tables for each foreign key index. For example, I need to know what a lot of index left complete me the process and that it.

    Table A
    ID (PK)
    B1_ID
    B2_ID
    C_ID
    D_ID
    ...
    ...

    (B1_ID, B2_ID) FK TO TABLE_B
    (C_ID) FK IN TABLE C
    (D_ID) FK TO TABLE_D


    I create the index in table A, table B, but I don't have the index for the table C and table.

    I have a lot of tables, with several foreign keys.
    How can I find out what indexes that I need to create?

    Thank you very much.

    You can also refer to http://blog.go-faster.co.uk/2007/10/tm-locking-checking-for-missing-indexes.html

    HTH
    Anand

  • Index and foreign key referring to itself

    Hello!

    I'm working on an application that uses a basket stored in a database. The shopping cart uses two tables:
    BASKET: Contains the common information for a shopping cart: the user is logged in etc.
    -Primary key: CART_ID

    CART_ROW: A line in the shopping cart, for example a new product to buy.
    -Primary key: ROW_ID
    -Foreign key: CART_ROW. References CART_ID CART. CART_ID

    On the code lines in the basket are taken by cart, as is modeled by the foreign key. There is a relationship, that we use in the code, but which is not modelled by a foreign key in the database. A line can be dependent on another line, which makes the other row a parent.
    CART_ROW has a PARENT_ID column that refers to CART_ROW. ROW_ID.
    Would you add a foreign key to PARENT_ID? Or are there issues to consider when it is a foreign key to the same table?

    Some time ago, we added the index, both ROW_ID PARENT_ID. The index on PARENT_ID could have harmful, since there is no foreign key?

    Best regards!

    user9005175 wrote:
    Hello!

    I'm working on an application that uses a basket stored in a database. The shopping cart uses two tables:
    BASKET: Contains the common information for a shopping cart: the user is logged in etc.
    -Primary key: CART_ID

    CART_ROW: A line in the shopping cart, for example a new product to buy.
    -Primary key: ROW_ID
    -Foreign key: CART_ROW. References CART_ID CART. CART_ID

    On the code lines in the basket are taken by cart, as is modeled by the foreign key. There is a relationship, that we use in the code, but which is not modelled by a foreign key in the database. A line can be dependent on another line, which makes the other row a parent.
    CART_ROW has a PARENT_ID column that refers to CART_ROW. ROW_ID.
    Would you add a foreign key to PARENT_ID? Or are there issues to consider when it is a foreign key to the same table?

    I suggest to add the foreign key, it will not harm performance (except during an insert when there is validation of the foreign key). But it would avoid users to insert bad data / corrupted by code or directly on loggin in the database.

    Some time ago, we added the index, both ROW_ID PARENT_ID. The index on PARENT_ID could have harmful, since there is no foreign key?

    Index on parent_id would be dangerous if you do not use index after it is created (i.e. There is no application that can make use of this index).
    And if you decide to have a foreign key parent_id then I suggest to have too many indexes on parent_id because it would be at least useful when you delete a record in this table.

    Best regards!

  • Unique key and foreign key in the view of materialzied

    Hello world
    I have one main site and 4 materialized view sites.
    In my main site, I did a main group that contains my tables participating in replication.
    I have a table that has a primary key, foreign key constraint unique.
    In my first materialized view site I did group for my opinion

    BEGIN
    DBMS_REPCAT. () CREATE_MVIEW_REPGROUP
    gname = > "hr_repg"
    Master = > "orc1.com"
    propagation_mode = > 'ASYNCHRONOUS');
    END;
    /

    BEGIN
    DBMS_REFRESH. DO)
    name = > 'mviewadmin.hr_refg ',.
    list = > ",
    next_date = > SYSDATE,.
    interval = > 'SYSDATE + 1/144',.
    implicit_destroy = > FALSE,
    rollback_seg = > ",
    push_deferred_rpc = > TRUE,
    refresh_after_errors = > FALSE);
    END;
    /

    Then I created the materialized view

    HR.test CREATE MATERIALIZED VIEW
    COOL OFF QUICKLY WITH A PRIMARY FOR THE UPDATE KEY
    AS SELECT * FROM [email protected]
    /

    BEGIN
    DBMS_REPCAT. () CREATE_MVIEW_REPOBJECT
    gname = > "hr_repg"
    sName = > 'hr ',.
    oname = > 'test ',.
    Type = > "SNAPSHOT."
    min_communication = > TRUE);
    END;
    /

    BEGIN
    DBMS_REFRESH. ADD)
    name = > 'mviewadmin.hr_refg ',.
    list = > "hr_test.test"
    Lax = > TRUE);
    END;
    /

    When I check the test (materialized view) table in the site of the materialized view to a primary key, but it has no foreign key forced unique having the base table and because my test materialized view can be changed I need to have these 2 constraint on my my materialized view. You have an idea why these 2 constraint were not created on my materialized view? And what should I do to have these two constraints.

    Thanks in advance

    On MView is created automatically only PK. Other constraints (check, not null, unique or FK) should be created manulay. Indexes also.
    But be careful with the FK.
    On ORACLE8, I found lines that are inserted to updatable mview back in deleted updating process, then inserted (downloaded on the main site). When FK is with on delete cascade that the lines of the child tables (mviews are removed too). And when the child mview is updated before mview parent you found the child missing lines.
    When CF is on delete restrict that you refresh the process fails.

  • index and foreign key

    I just read an article on the index.

    Jonathan Lewis - during indexing

    The author says that if you update the primary key or a unique key at the end of 'parent' of the referential integrity constraint Oracle locks the "child" table to find the rows of children committed and uncommitted if a suitable index does not exist. After that he says do not create indexes 'foreign key '. I mean, there is a contradiction. What do you think?

    delete this thread!

  • Primary key and foreign key between the different schemas

    Hi all;

    SCOTT user have a 'rank' of table-> it contains the primary key-> users tablespace

    The U1 user have a 'emp' table-> it contains the foreign key-> test tablespace

    U1 > select constraint_name, constraint_type, r_owner, owner, r_constraint_name of all_constraints where table_name = 'EMP ';

    OWNER CONSTRAINT_NAME C R_OWNER R_CONSTRAINT_NAME

    ------------ ------------------------------ - -------------------------- ----------------------- -----------------------------------------------------

    U1              EMP_EMPLEV_C12_FK R SCOTT GRADE_GRL_C1_PK

    If I have connection U1, no possibility to find the name of the primary key without connection scott table?

    Thank you

    Hello

    So, you want to know what picture of the SCOTT schema has the constraint that is named "GRADE_GRL_C1_PK." Isn't it?

    If so,.

    SELECT table_name

    Of all_constraints

    Owner WHERE = 'SCOTT '.

    AND the argument constraint_name = 'GRADE_GRL_C1_PK. '

    ;

  • Primary key and foreign key

    Hi all

    I'm confused. If I create a primary key of table constraints, it willl create a unique index by default. If I create a foreign key, it also creates an index? of any kind?


    Thank you very much

    Kinz

    Laughing out loud. foreign key does not have a unique index on the table.

  • complex insert and identification key

    Hello

    I use jdeveloper 11g R1 to create demand for fusion ADF to manage provider contracts and products

    the scenario is as follows

    I have 2 main PRODUCTS (A) - CONTRACTS table (B) and 3rd table called PROCUCT_CONTRACT (C) contain 2 FK (PRODUCT_ID, CONTRACT_ID) as a reference for the main tables 2A & B

    my situation is to know how to insert the new record in the table C when I insert the new product in the table has and how to pass the Id of the table agreement has

    Just adapt the code below as needed:

    {} public void create()
    create the product
    Product ProductsRowImpl = (ProductsRowImpl) this.getProducts () .createRow ();
    product.setProductId("1");
    this.getProducts () .insertRow (product);

    create the contract
    Contract of ContractsRowImpl = (ContractsRowImpl) this.getContracts () .createRow ();
    contract.setContractId("1");
    this.getContracts () .insertRow (contract);

    create the contract product
    ProductContractRowImpl productContract = (ProductContractRowImpl) this.getProductContract () .createRow ();
    productContract.setProductId (product.getProductId ());
    productContract.setContractId (contract.getContractId ());
    this.getProductContract () .insertRow (productContract);
    }

  • Import / Export and foreign keys

    Hi there;

    I am facing the problem more common online backup (I think), when we export a database online;


    I wonder if there are a few steps to that end, or maybe we have an export option to make a snapshot on export database begins;


    Any tips?

    Thank you

    Marcos Ortega
    Brasil

    More LOGIC - a comparable to CONSISTENT parameter is not necessary. Use FLASHBACK_SCN and FLASHBACK_TIME for this feature.

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14215/dp_export.htm#i1005864

    -André

  • Key Reg primary and foreign at the same table

    Hello

    It is - ok if create primary and foreign keys on the same table itself?

    For example:

    In a table X, I have two columns such as Codeunite and ParentUnitcode.
    Is it ok if create Mt10 as principal and ParentUnitcode as foreign keys in the table itself?

    The foreign key base table: OrganizationalUnit
    Foreign key columns: ParentUnitCode
    Primary/Unique key base: OrganizationalUnit
    Primary/unique key col: Mt10

    Can anyone answer me on that?

    Concerning
    Rajesh

    OWB,

    If the two tables are favouring a one-to-one relationship so there no need to have two separate tables and so you can have free referential foreign keys in the same table where the primary key.

  • How to set the condition of rule to check the Primary Key, Foreign Key and Unique

    I use Oracle 10.2
    Could someone tell me please how to set the rule condition to check the primary key, foreign key constraint of uniqueness?

    Hello

    Primary key, unique constraints and foreign key are better applied using the native functionality of database constraint. If you like the rules to check if a key exists at the time of the evaluation, you can use a function defined by the user in a rule condition and this function can ask to turn the table keys.

    Hope this helps,
    -Aravind.

  • How can I make sure that changes in a primary key (in the parent table) would also appear directly in the FOREIGN KEY in the child table?

    Forgive my question. I am very new to Oracle.

    How can I make sure that changes in the key primary supplier_id (concerning the supplier table) would also appear directly in the FOREIGN KEY (supplier_id) in the products table?

    Is that not all the primary key and FOREIGN KEY on?

    My paintings:

    I created 2 tables and connect to apply in the data base referential integrity, as I learned.

    CREATE TABLE - parent provider

    (the numeric (10) of supplier_id not null,)

    supplier_name varchar2 (50) not null,

    Contact_Name varchar2 (50).

    CONSTRAINT supplier_pk PRIMARY KEY (supplier_id)

    );

    CREATE TABLE - child products

    (the numeric (10) of product_id not null,)

    supplier_id numeric (10) not null,

    CONSTRAINT fk_supplier

    FOREIGN KEY (supplier_id)

    REFERENCES beg (supplier_id)

    );

    I inserted the following text:

    INSERT INTO provider

    (supplier_id, supplier_name, contact_name)

    VALUES

    (5000, 'Apple', 'first name');

    I expect that the supplier_id (5000) to the provider of the table also appears in the products table under key supplier_id having the same value which is 5000. But this does not happen.

    How to get there?

    Thanks in advance!

    Hello

    What is a foreign key in Oracle?

    A foreign key is a way to ensure referential integrity in your Oracle database. A foreign key means that the values of a table must appear also in another table.

    Ok!??

    What is now the right way to implement referential integrity in your Oracle database that the values of a table must also be included in another table?

    A foreign key referential integrity indeed enfore in ensuring that the value in the child table must have a corresponding parent key (otherwise you will encounter an error, as evidenced by "SomeoneElse"). However, it will never automatically insert a row in the other table.

    If you are looking for a solution that automatically inserts a record in the other table, maybe you should go for triggers:

    See:

  • problem with the locking insert and delete between two linked tables help please.

    Hi guys I have a problem with a table of locking in Oracle forms, but when I try in SQL happens here too many users. I was wondering if anyone can shed some light on this?

    I created two scenerios one that works and is not based on the primary key and foreign key constraints (but one that works is not possible for us because it would mean change design table that we can not do).

    I've hardcoded in 1127,1128 number to make it easier (in reality it is a sequence)

    OK scenerio one (our scenerio)

    two tables
     CREATE TABLE testSFLABPR 
       (     LABP_REF_IRN VARCHAR2(25 BYTE), 
         LABP_REF_REF VARCHAR2(30 BYTE), 
         LABP_REF_SL NUMBER(8,0), 
         LABP_CONFIG_ID NUMBER(8,0),
          CONSTRAINT PK_testLABPR_IRN_SL PRIMARY KEY (LABP_REF_IRN,LABP_REF_SL)
       ) ;
    
     CREATE TABLE testSFLABP 
       (     LABP_IRN VARCHAR2(25 BYTE), 
         LABP_OPNO NUMBER(3,0), 
         labp_no NUMBER(8,0),
          CONSTRAINT PK_testSFLABP PRIMARY KEY (LABP_IRN, LABP_OPNO, LABP_NO) ENABLE, 
          CONSTRAINT testFK_SFLABP_SFLABPR FOREIGN KEY (LABP_IRN,labp_no)
           REFERENCES TESTSFLABPR (LABP_REF_IRN,LABP_REF_SL) ENABLE
       ) ;
    OK now session is done the following
    DELETE FROM      testSFLABPR     WHERE   LABP_CONFIG_ID            = 1127;          
                   
    INSERT INTO testSFLABPR(
            LABP_REF_IRN,
            LABP_REF_SL,
            LABP_REF_REF,
            LABP_CONFIG_ID
            )
            VALUES
            (
            'SOPENSHELVING',
            1127,
            1127||'CF Route',
            1127
            );
            
    INSERT INTO testSFLABP
          (
          LABP_IRN,
          LABP_OPNO,
          LABP_NO)
    VALUES (
    'SOPENSHELVING',
    1,
    1127);
    session one remains in this State.

    second session now does the following
    DELETE     FROM testSFLABPR     WHERE   LABP_CONFIG_ID            = 1128;     
    second session is now locked until a commit or rollback occurs.

    If I run the exact scenerio even with only a primary key on the table without locks held
     CREATE TABLE testSFLABPR 
       (     LABP_REF_IRN VARCHAR2(25 BYTE), 
         LABP_REF_REF VARCHAR2(30 BYTE), 
         LABP_CONFIG_ID NUMBER(8,0),
          CONSTRAINT PK_testLABPR_IRN_SL PRIMARY KEY (LABP_REF_IRN)
       ) ;
    
     CREATE TABLE testSFLABP 
       (     LABP_IRN VARCHAR2(25 BYTE), 
         LABP_OPNO NUMBER(3,0), 
         labp_no NUMBER(8,0),
          CONSTRAINT PK_testSFLABP PRIMARY KEY (LABP_IRN, LABP_OPNO, LABP_NO) ENABLE, 
          CONSTRAINT testFK_SFLABP_SFLABPR FOREIGN KEY (LABP_IRN)
           REFERENCES TESTSFLABPR (LABP_REF_IRN) ENABLE
       ) ;
    INSERT INTO testSFLABPR(
            LABP_REF_IRN,
            LABP_REF_REF,
            LABP_CONFIG_ID
            )
            VALUES
            (
            'SOPENSHELVING',
            1127||'CF Route',
            1127
            );
            
    INSERT INTO testSFLABP
          (
          LABP_IRN,
          LABP_OPNO,
          LABP_NO)
    VALUES (
    'SOPENSHELVING',
    1,
    1127);
    DELETE     FROM testSFLABPR     WHERE   LABP_CONFIG_ID            = 1128;
    I hope I posted all the information that is relevant... version of DB were is Oracle Database 10g Release 10.2.0.3.0 - Production

    Any help is appreciated...

    Creating indexes on columns of the FK. Something like:

    CREATE INDEX testFK_SFLABP_SFLABPR_IDX
    ON testSFLABP(LABP_IRN,labp_no)
    /
    

    SY.

Maybe you are looking for

  • I want the 'Inbox' available on the screen when I turn on (by default).

    The 'Inbox' is not easily available and can be activated by using the arrows at the top which is cumbersome and tedious practice. I need the 'Inbox' to be easily accessible when I turn, but also a quick way to do if there is a need. A relatively simp

  • How can I watch movies without wifi

    How can I watch the movies without wifi on my MacBook Pro? It is the retina display is 13.3 inches. I have not an Apple TV is there good apps? I would like to than those that are cheap or free. I'm going on a tour group and I like to watch movies, si

  • best configuration for Small Business Server

    I'm looking for advice on HW and SW recommendations for a small business.  We have 15 users, 20 computers and 3 printers.  I currently have a single Windows Server 2008.  I want to run a domain controller main for all users, file sharing, print serve

  • How to join HP Advisor working again?

    My hp that advisor does not work. How to fix it. I have Windows 7 home

  • Downgrade TC5.1.4 5.1.2?

    Hello Is there a way to downgrade to a software earlier than TC5.1.4? I ve tried and it works, but the camera (precision HD 4xS2) doesn´t send a videostream. Then it seams I have to downgrade the FW-camera too. any suggestions? Thank you Tino