Question about commit

A programmer of the company questioned me here on a
resource that it would need and did not obtain to
answer it.
Exactly not being recommended, let us assume that I
am making one insert of 100.000 lines in one table
any without using bind variables and that it does
not have commit in regular intervals, being effected
commit after the ending of the insertion of the
100,000 lines in agreement example below:
insert into test values(1, 1);
insert into test values(2, 1);
insert into test values(3, 1);
insert into test values(4, 1);
insert into test values(5, 1);
insert into test values(6, 1);
insert into test values(7, 1);
insert into test values(8, 1);
insert into test values(9, 1);
insert into test values(10, 1);
insert into test values(99998, 1);
insert into test values(99999, 1);
insert into test values(100000, 1);
commit;
It would have as to consult in views of the dictionary of
data at a moment any how many registers already had been
processed or “inserted” exactly that I have not effected
commit?
Thank´s

You can write your own procedure to perform the insert operation. In your
procedure you can use DBMS_APPICATION_INFO.SET_SESSION_LONGOPS procedure.
This would enable you to observe the progress of insert operation via
v$session_longops dynamic performance view.
Best Regards
Krystian Zieja / mob

Similar Messages

  • Important conceptual question about Application Module, Maximum Pool Size

    Hello everyone,
    We have a critical question about the Application Module default settings (taking the DB connections from a DataSource)
    I know that on the Web it is generally suggested that each request must end with either a commit or rollback when executing PL/SQL blocks "directly" on the DB without the framework BC/ViewObject/Entity service intervention.
    Now, for some reasons, we started to develop our applications with thinking that each Web Session would reference exactly one DB session (opened by any instance taken from the AM pool) for the whole duration of the session, so that the changes made by each Web session to its DB session would never interfere with the changes made by "other" Web Sessions to "other" DB sessions .
    In other words, because of that convincement we often implemented sort of "transactions" that open and close (with either commit or rollback) each DB session not in/after a single HTTP request, but during many HTTP Requests.
    As a concrete example think of this scenario:
    1. the user presses the "Insert" button. An HTTP request is fired. The action listener is executed and ends up with inserting rows in a table via a PL SQL block (not via the ViewObjects API).
    2. no commit or rollback after the above PL/SQL block is done yet.
    3. finally the user presses a "Commit" or "Rollback" button, firing the call to the appropriate AM methos.
    Those three requests consist of what I called "transaction".
    From the documentation it's clear that there is no guarantee that the couple AM istance + DB session is the same during all the requests.
    This means that, during step 2, it's possible that another user might reference the same "pending" AM/DbSession for his needs and "steal" somehow the work done via PL/SQL after step 1. (This happens because sessions taken by the pool are always rolled back by default.)
    Now my question is:
    Suppose we set the "Maximum Pool Size" parameter to very a great number (always inferior to the maximum number of concurrent users):
    Is there any guarantee that all the requests will be isolated in that case?
    I hope the problem is clear.
    Let me know if you want more details.

    Thanks for the answers.
    If I am right, from all your answers about resource avaiability, this means that even supposing the framework is able to always give us the same AM instance back from the AM pool (by following the session-affinity criterias), there is, however, no "connection affinity" with the connections from the DataSource. This means that the "same AM instance" might take the "a new DB connection", if necessary, from the connection pool of the DataSource. If that happens, that could give us the same problems as taking "a new AM instance" (that is, not following session-affinity) from the beginning, since each time an a new connection is taken (either via a new AM instance or via the same AM instance plus a new DB connection), the corresponding DB session is rolle back by default, clearing all the pending transactions we might have performed before with direct PL/SQL calls bypassing the AM services during the life cycle of our application, so that the new HTTP request will have a clean DB session to start to work with.

  • Question about inserting Sysdate (SQL)

    Hi all,
    I got a question about records insert when one of the fields is sysdate.
    I have to store several records representing a log, generated by the execution of a database package.
    Inside my package I wrote an internal procedure devoted to insert a record in my log table for each processing step I wanted to trace (I call this proc each time I want to record a certain step of my package).
    My log table structure is: PREC_LOGS(log_date DATE, log_message VARCHAR2(1000)), no constraints at all.
    Database ver. 8.1.7.1.0 - Production for VMS O.S.
    The 'problem' occurs when several records have the same sysdate (DD-MM-YYYY HH24:MI:SS). In this case, if I select log_date,log_message ... order by log_date, the list of records I get respects the sort condition, but when several records have the same sysdate (DD-MM-YYYY HH24:MI:SS), it doesn't respect the order of the steps theoretically inserted by the internal proc.
    Resault
    25-07-2002 11:10:20 ........ (date changed)
    25-07-2002 11:10:22 Loading data for order nr. 82364 (step 3)
    25-07-2002 11:10:22 Verifying order nr. 82364 (step 2)
    25-07-2002 11:10:22 Procedure started for order nr. 82364 (step 1)
    25-07-2002 11:10:22 Updating conditions for order nr. 82364 (step 4)
    25-07-2002 11:10:22 Procedure accomplished for order nr. 82364 (step 6)
    25-07-2002 11:10:22 Commit changes for order nr. 82364 (step 5)
    25-07-2002 11:10:24 ........ (date changed)
    Please ask for more detail if someone is interested in replying...I realize it's not a very clear explanation of my issue.
    Thanks, Marco

    Hi
    Add a field to the table that is that uses a sequence
    PREC_LOGS(log_id NUMBER(30),log_date DATE, log_message VARCHAR2(1000))
    Create a database sequence
    The insert statement now becomes something like
    INSERT INTO PREC_LOCS(log_id, log_date, log_message)
    VALUES (sequence_name.NEXTVAL, SYSDATE, 'Some message');
    Then order by the log_id when you do your select.
    Daniel

  • Question about Finder-Load-Beans flag

    Hi all,
    I've read that the Finder-Load-Beans flag could yield some valuable gains in performance
    but:
    1) why is it suggested to do individual gets of methods within the same Transaction
    ? (tx-Required).
    2) this strategy is useful only for small sets of data, isn't it? I imagine I
    would choose Finder-Load-Beans to false (or JDBC) for larger sets of data.
    3) A last question: its default value is true or false ?
    Thanks
    Francesco

    Because if there are different transactions where the get method is called
    then the state/data of the bean would most be reloaded from the database. A
    new transactions causes the ejbLoad method to be invoked in the beginning
    and the ejbStore at the end. That is the usual case but there are other ways
    to modify this behavior.
    Thanks
    Gaurav
    "Francesco" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi thorick,
    I have found this in the newsgroup. It's from R.Woolen answering
    a question about Finder-Load-Beans flag.
    "Consider this case:
    tx.begin();
    Collection c = findAllEmployeesNamed("Rob");
    Iterator it = c.iterator();
    while (it.hasNext()) {
    Employee e = (Employee) it.next(); System.out.println("Favorite color is:"+ e.getFavColor());
    tx.commit();
    With CMP (and finders-load-beans set to its default true value), thefindAllEmployeesNamed
    finder will load all the employees with the name of rob. The getFavColormethods
    do not hit the db because they are in the same tx, and the beans arealready loaded
    in the cache.
    It's the big CMP performance advantage."
    So I wonder why this performance gain can be achieved when the iterationis inside
    a transaction.
    Thanks
    regards
    Francesco
    thorick <[email protected]> wrote:
    1) why is it suggested to do individual gets of methods within thesame Transaction
    ? (tx-Required).I'm not sure about the context of this question (in what document,
    paragraph
    is this
    mentioned).
    2) this strategy is useful only for small sets of data, isn't it? Iimagine I
    would choose Finder-Load-Beans to false (or JDBC) for larger sets ofdata.
    >
    If you know that you will be accessing the fields of all the Beans that
    you get back from a
    finder,
    then you will realize a significant performance gain. If one selects
    100s or more beans
    using
    a finder, but only accesses the fields for a few, then there may be some
    performance cost.
    It could
    depend on how large some of the fields are. I'd guess that the cost
    of 1 hit to the DB per
    bean vs.
    the cost of 1 + maybe 1 more hit to the DB per bean, would usually be
    less. A performance
    test using
    your actual apps beans would be the only way to know for sure.
    3) A last question: its default value is true or false ?The default is 'True'
    -thorick

  • Two weird questions about BP maintenance......SOS!!!

    Two weird questions about BP maintenance......SOS!!!  
    The procedure is like this:
    These informtion will be import to SAP:
    BP information
    Address Information of this bp.
    Communication information of this BP
    1. check if the bp exist, if yes, update the BP.Then go to 3.if no go to 2
    2. Create a bp with the Address information and communication information
    3. Check if the Address information has been existed,if yes go to 4.else go to 5
    4.Update the address information with the communication information.
    5.Create a new address for this BP.
    And the problem I got is like this:
    1. After I changed the BP information, such as the surname,lastname etc.Use this BAPI
    "BAPI_BUPA_CENTRAL_CHANGE",I commited it.Then I call the BAPI "BAPI_BUPA_ADDRESS_CHANGE" to change the Address of this BP,however
    When I call the BAPI_BUPA_ADDRESS_CHANGE,it always told me the BP is locked by myself.............
    I am sure I do not open the BP in the other window.And I commit it after I call the BP Change BAPI.
    2. When I change the communication information ,it always told me BAPIADTEL you want to update does not exist in this system.....I am sure it does.
    Who can help me??
    Thanks very much

    Hi,
    1) Problem with the lock. To commit the changes after the BAPI_BUPA_CENTRAL_CHANGE API, instead of using commit work to commit, Use BAPI_TRANSACTION_COMMIT. This should solve the problem. This wil help in clearng the buffers of BP.
    2) in the BUPA_ADDRESS_CHANGE, for telephone there are two parameters to be filled IT_ADTEL, IT_ADTEL_X
    IT_ADTEL : Should be filled with the telephone details etc (Consnumber should not be filled for inserts. This should be filled only for updates).
    Corresponding IT_ADTEL_X structure has to be filled with update flag as 'I', 'U' or 'D' based on the task.
    Hope this helps. Let me know if some more info is needed.
    Regards,
    Sudheer.

  • About comma display

    Hi,
    I have a question about sap scripts.
    There're three fields in the form,devided with comma.
    for example:
    Location:&street&,&city&,&state&
    but not every fields always have data,   when &street& and &city& are empty,&state& = 'USA',result will be like this:
    Location:,,USA
    I want to hide the first two commas,how to deal with it.
    a solution is:
    If  &street& = ' '
    Location:&city&,&state&
    endif
    but if like that ,I must write many 'if' to shown different situation.A little prolixity.
    Do you have some simple methods?
    Message was edited by:
            yang zou

    hi Yang,
    I had encounter similar situation.
    Here is what I did.
    Tag      SAPScript text
             Location:,,
    /:         if   &street&   NE  ' '
    =         &street&,
    /:         endif
    /:          if  &city&  NE ' '
    =         &city&,
    /:          endif
    /:          if &state& NE ' '
    =         &state&
    /:         endif
    = tag means the texts will be on same line as ofg 'Location' text.
    and If endif will ensure they are displayed only if NOT BLANK.
    Regards,
    Vivek Kute.
    Reward points if helps.

  • Question about using AQ

    Hello, am using 11g. I have some questions about AQ. Thanks a lot for any help.
    I use a periodic job to make around 100 event-based jobs run each time. There are totally 1000 event-based jobs. I choose 100 of them in a round robin way. If I run the periodic job too frequently, that means I will trigger another 100 jobs to run not until the last 100 jobs complete.
    So what will happen? How many messages does the queue can hold? If the queue is full, what will the program which is trying to enqueuing do?
    Because I find that I cannot make the CPU utilization reach 100% no matter how I decrease the period of the triggering job. I think there should be something wrong with the event-based jobs.
    The following codes are what I wrote for sending messages to trigger those 100 jobs. I find out that the time that these codes take to finish (the loop) varies a lot. If the queue is full, will the program wait here?
    select t.start_num INTO l_offset from scheduler_info_tab2 t;
    l_jobnum := 0;
    IF l_issue_num != 0
    THEN
    FOR i IN 1..l_issue_num
    LOOP
    l_jobnum := mod(l_offset + i,1000);
    IF l_jobnum = 0
    THEN
    l_jobnum := 1000;
    END IF;
    -- l_jobnum := i;
    l_queue_msg := t_queue_payload('subscription'||TO_CHAR(l_jobnum));
    DBMS_AQ.enqueue(queue_name => 'schdl_queue',
    enqueue_options => l_enqueue_options,
    message_properties => l_message_properties,
    payload => l_queue_msg,
    msgid => l_message_handle);
    END LOOP;
    END IF;
    UPDATE scheduler_info_tab2 t SET t.start_num = l_jobnum;
    COMMIT;
    The queue is created by
    DBMS_AQADM.create_queue_table(queue_table => 'schdl_queue_tab',
    queue_payload_type => 't_queue_payload',
    multiple_consumers => TRUE);
    -- Create the event queue.
    DBMS_AQADM.create_queue (queue_name => 'schdl_queue',
    queue_table => 'schdl_queue_tab');
    -- Start the event queue.
    DBMS_AQADM.start_queue (queue_name => 'schdl_queue');
    null
    null

    Hi,
    AQ actually has its own forum here
    Advanced Queueing
    and you may get better answers there.
    As far as I know a queue can store an unlimited number of messages. The enqueuing program will enqueue the messages and complete but there may be a delay until the messages are processed.
    As I mentioned before running lots of jobs results in overhead disk activity which will limit the max cpu utilization and each job also has a CPU overhead which may not be accounted for in Oracle cpu totals.
    DBMS_AQ.enqueue should never hang waiting for messages to enqueue (it should just add the message to the queue and continue). I don't know enough about it to know why its time is varying (the AQ forum may give some answers).
    Thanks,
    Ravi.

  • Questions about count

    I have a few questions about count
    a) Is there any difference between select count(*) and select
    count)1)
    b) If I have created index for the table, will select count use
    the index for counting?

    If you don't analyze your tables and indexes and compute
    statistics, the indexes will not be used.
    If you have analyzed your tables and indexes and computed
    statistics and the index is on a not null column, the index will
    be used for COUNT(*), COUNT(constant) such as COUNT(1) or COUNT
    (0) or COUNT('x'), and for COUNT(not null column) where the not
    null column can be the column that the index was created on or
    any other column that has a not null constraint.
    If the index is on a column that can contain null values, then
    the index will not be used for the COUNT functions listed above.
    Much to my surprise, bitmap indexes are not used for counting,
    whether they are created on columns with not null constraints or
    not. I seem to recall that bitmap indexes are recommended in
    situations of low cardinality, so perhaps they are inappropriate
    for counting.
    The following tests should demonstrate all of the above: (I
    found that the original was too big, so I had to delete some of
    it.)
    SQL> CREATE TABLE test
    2 AS
    3 SELECT *
    4 FROM emp
    5 /
    Table created.
    SQL> ALTER TABLE test
    2 MODIFY (deptno NOT NULL)
    3 /
    Table altered.
    SQL> DESC test
    Name Null? Type
    EMPNO NOT NULL NUMBER(4)
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    DEPTNO NOT NULL NUMBER(2)
    SQL> CREATE INDEX test_empno_idx
    2 ON test (empno)
    3 /
    Index created.
    SQL> CREATE INDEX test_ename_idx
    2 ON test (ename)
    3 /
    Index created.
    SQL> SET AUTOTRACE ON
    SQL> SELECT COUNT (*)
    2 FROM test
    3 /
    COUNT
    14
    Execution Plan
    0 SELECT STATEMENT
    Optimizer=CHOOSE
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL)
    OF 'TEST'
    SQL> SELECT COUNT (1)
    2 FROM test
    3 /
    COUNT
    (1)
    14
    Execution Plan
    0 SELECT STATEMENT
    Optimizer=CHOOSE
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL)
    OF 'TEST'
    SQL> SELECT COUNT (empno)
    2 FROM test
    3 /
    COUNT
    (EMPNO)
    14
    Execution Plan
    0 SELECT STATEMENT
    Optimizer=CHOOSE
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL)
    OF 'TEST'
    SQL> SELECT COUNT (ename)
    2 FROM test
    3 /
    COUNT
    (ENAME)
    14
    Execution Plan
    0 SELECT STATEMENT
    Optimizer=CHOOSE
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL)
    OF 'TEST'
    SQL> SELECT COUNT (deptno)
    2 FROM test
    3 /
    COUNT
    (DEPTNO)
    14
    Execution Plan
    0 SELECT STATEMENT
    Optimizer=CHOOSE
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL)
    OF 'TEST'
    SQL> ANALYZE TABLE test
    2 COMPUTE STATISTICS
    3 /
    Table analyzed.
    SQL> ANALYZE INDEX test_empno_idx
    2 COMPUTE STATISTICS
    3 /
    Index analyzed.
    SQL> ANALYZE INDEX test_ename_idx
    2 COMPUTE STATISTICS
    3 /
    Index analyzed.
    SQL> SELECT COUNT (*)
    2 FROM test
    3 /
    COUNT
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 INDEX (FULL SCAN) OF 'TEST_EMPNO_IDX' (NON-UNIQUE)
    (Cost
    =1
    Card=14)
    SQL> SELECT COUNT (1)
    2 FROM test
    3 /
    COUNT
    (1)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 INDEX (FULL SCAN) OF 'TEST_EMPNO_IDX' (NON-UNIQUE)
    (Cost
    =1
    Card=14)
    SQL> SELECT COUNT (empno)
    2 FROM test
    3 /
    COUNT
    (EMPNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 INDEX (FULL SCAN) OF 'TEST_EMPNO_IDX' (NON-UNIQUE)
    (Cost
    =1
    Card=14)
    SQL> SELECT COUNT (ename)
    2 FROM test
    3 /
    COUNT
    (ENAME)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1
    Bytes=5)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1 Card=14
    Bytes=70)
    SQL> SELECT COUNT (deptno)
    2 FROM test
    3 /
    COUNT
    (DEPTNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 INDEX (FULL SCAN) OF 'TEST_EMPNO_IDX' (NON-UNIQUE)
    (Cost
    =1
    Card=14)
    SQL> DROP INDEX test_empno_idx
    2 /
    Index dropped.
    SQL> SELECT COUNT (*)
    2 FROM test
    3 /
    COUNT
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (1)
    2 FROM test
    3 /
    COUNT
    (1)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (empno)
    2 FROM test
    3 /
    COUNT
    (EMPNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (ename)
    2 FROM test
    3 /
    COUNT
    (ENAME)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1
    Bytes=5)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1 Card=14
    Bytes=70)
    SQL> SELECT COUNT (deptno)
    2 FROM test
    3 /
    COUNT
    (DEPTNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> DROP INDEX test_ename_idx
    2 /
    Index dropped.
    SQL> CREATE BITMAP INDEX test_empno_bm_idx
    2 ON test (empno)
    3 /
    Index created.
    SQL> CREATE BITMAP INDEX test_ename_bm_idx
    2 ON test (ename)
    3 /
    Index created.
    SQL> ANALYZE INDEX test_empno_bm_idx
    2 COMPUTE STATISTICS
    3 /
    Index analyzed.
    SQL> ANALYZE INDEX test_ename_bm_idx
    2 COMPUTE STATISTICS
    3 /
    Index analyzed.
    SQL> SELECT COUNT (*)
    2 FROM test
    3 /
    COUNT
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (1)
    2 FROM test
    3 /
    COUNT
    (1)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (empno)
    2 FROM test
    3 /
    COUNT
    (EMPNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)
    SQL> SELECT COUNT (ename)
    2 FROM test
    3 /
    COUNT
    (ENAME)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1
    Bytes=5)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1 Card=14
    Bytes=70)
    SQL> SELECT COUNT (deptno)
    2 FROM test
    3 /
    COUNT
    (DEPTNO)
    14
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1
    Card=1)
    1 0 SORT
    (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'TEST' (Cost=1
    Card=14)

  • Questions about your new HP Products? HP Expert Day: January 14th, 2015

    Thank you for coming to Expert Day! The event has now concluded.
    To find out about future events, please visit this page.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
     We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
     If you still have questions to ask, feel free to post them on the Forum – we always have experts online to help you out.
    So, what is HP Expert Day?
    Expert Day is an online event when HP employees join our Support Forums to answer questions about your HP products. And it’s FREE.
    Ok, how do I get started?
    It’s easy. Come out to the HP Support Forums, post your question, and wait for a response! We’ll have experts online covering our Notebook boards, Desktop boards, Tablet boards, and Printer and all-in-one boards.
    We’ll also be covering the commercial products on the HP Enterprise Business Community. We’ll have experts online covering select boards on the Printing and Digital Imaging and Desktops and Workstations categories.
    What if I need more information?
    For more information and a complete schedule of previous events, check out this post on the forums.
    Is Expert Day an English-only event?
    No. This time we’ll have experts and volunteers online across the globe, answering questions on the English, Simplified Chinese, and Korean forums. Here’s the information:
    Enterprise Business Forum: January 14th 7:00am to 12:00pm and 6:00pm to 11:00pm Pacific Time
    Korean Forum: January 15th 10am to 6pm Korea Time
    Simplified Chinese Forum: January 15th 10am to 6pm China Time
    Looking forward to seeing you on January 14th!
    I am an HP employee.

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

  • Have questions about your Creative Cloud or Subscription Membership?

    You can find answers to several questions regarding membership to our subscription services.  Please see Membership troubleshooting | Creative Cloud - http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html for additional information.  You can find information on such topics as:
    I need help completeing my new purchase or upgrade.
    I want to change the credit card on my account.
    I have a question about my membership price or statement charges.
    I want to change my membership: upgrade, renew, or restart.
    I want to cancel my membership.
    How do I access my account information or change update notifications?

    Branching to new discussion.
    Christym16625842 you are welcome to utilize the process listed in Creative Cloud Help | Install, update, or uninstall apps to install and evaluate the applications included with a Creative Cloud Membership.  The software is fully supported on recent Mac computers.  You can find the system requirements for the Creative Cloud at System requirements | Creative Cloud.

  • Questions about using the Voice Memos app

    I'm currently an Android user, but will be getting an iPhone 6 soon. My most used app is the voice memos app on my Android phone. I have a couple questions about the iPhone's built-in voice memos app.
    -Am I able to transfer my voice memos from my Android phone to my iPhone, so my recordings from my Android app will show up in the iPhone's voice memos app?
    -When exporting voice memos from the iPhone to computer, are recordings in MP3 format? If not, what format are they in?
    -In your opinion, how is the recording quality of the voice memos app?

    You cannot import your Android voice memos to your iPhone's voice memo app.  You might be able to play the Android memos and have the iPhone pick up the audio and record it.
    Here is the writeup about sending voice memos from the iPhone to your computer (from the iPhone User Guide):
    App quality is excellent.

  • Re: Question about the Satellite P300-18Z

    Hello everyone,
    I have a couple of questions about the Satellite P300-18Z.
    What "video out" does this laptop have? (DVI, s-video or d-sub)
    Can I link the laptop up to a LCD-TV and watch movies on a resolution of 1080p? (full-HD)
    What is the warranty on this laptop?

    Hello
    According the notebook specification Satellite P300-18Z has follow interfaces:
    DVI - No DVI port available
    HDMI - HDMI-out (HDMI out port available)
    Headphone Jack - External Headphone Jack (Stereo) available
    .link - iLink (Firewire) port available
    Line in Jack - No Line in Jack port available
    Line out Jack - No Line Out Jack available
    Microphone Jack - External Micrphone Jack
    TV-out - port available (S-Video port)
    VGA - VGA (External monitor port RGB port)
    Also you can connect it to your LCD TV using HDMI cable.
    Warranty is country specific and clarifies this with your local dealer but I know that all Toshiba products have 1 year standard warranty and also 1 year international warranty. you can of course expand it.

  • Some questions about Muse

    First of all, I would like to say that I am very impressed with how well Muse works and how easy it was to create a website that satisfies me. Before I started a daily updated website I thought I would encounter many problems I will not be able to solve. I have only had a few minor issues which I would like to share with you.
    The most problems I have with a horizontal layouts (http://www.leftlane.pl/sty14/dig-t-r-3-cylindrowy-silnik-nissana-o-wadze-40-kg-i-mocy-400- km.html). Marking and copying of a text is possible only on the last (top) layer of a document. The same situation is with widgets or anything connected with rollover state - it does not work. In the above example it would be perfect to use a composition/tooltip widget on the first page. Unfortunately, you cannot even move the cursor into it.
    It would be helpful to have an option of rolling a mouse to an anchor (like in here http://www.play.pl/super-smartfony/lg-nexus-5.html and here http://www.thepetedesign.com/demos/onepage_scroll_demo.html).  I mean any action of a mouse wheel would make a move to another anchor/screen. It would make navigation of my site very easy.
    Is it possible to create a widget with a function next anchor/previous anchor? Currently, in the menu every button must be connected to a different anchor for the menu to be functional.
    A question about Adobe Muse. Is it possible to create panels in different columns? It would make it easier to go through all the sophisticated program functions.
    The hits from Facebook have sometimes very long links, eg.
    (http://www.leftlane.pl/sty14/mclaren-p1-nowy-krol-nurburgring.html?fb_action_ids=143235557 3667782&fb_action_types=og.likes&fb_source=aggregation&fb_aggregation_id=288381481237582). If such a link is activated, the anchors in the menu do not work on any page. I mean the backlight of an active state, which helps the user to find out where on page they currently are. The problem also occurs when in the name of a html file polish fonts exist. And sometimes the dots does not work without any reason, mostly in the main page, sometimes in the cooperation page either (http://www.leftlane.pl/wspolpraca/). In the first case (on main page), I do not know why. I have checked if they did not drop into a state button by accident,  moved them among the layers, numbered them from scratch and it did not help. In the cooperation page, the first anchor does not work if it is in Y axle set at 0. If I move it right direction- everything is ok.
    The text frame with background fill does not change text color in overlay state (http://www.leftlane.pl/sty14/nowe-mini-krolestwo-silnikow-3-cylindrowych.html). I mean a source button at the beginning of every text. I would like a dark text and a light layer in a rollover, but  the text after export and moving cursor into it does not change color for some reason.
    I was not sure whether to keep everything (whole website) in one Muse file (but I may be mistaken?). I have decided to divide it into months. Everyone is in a different Muse file. If something goes wrong, I will not have any trouble with an upload of a whole site, which is going to get bigger and bigger.
    The problem is that every file has two master pages. Everything works well up to the moment when I realize how many times I have to make changes in upper menu when I need to add something there. I have already 5 files, every with 2 masters. Is there any way to solve this problem? Maybe something to do with Business Catalyst, where I could connect a menu to every subpage independently, deleting it from Muse file? Doing so I would be able to edit it everywhere from one place. It would make my work much easier, but I have no idea jendak how to do it.
    The comments Disqus do not load, especially at horizontal layouts  (http://www.leftlane.pl/sty14/2014-infiniti-q50-eau-rouge-concept.html). I have exchanged some mails and screenshots with Disqus help. I have sent them a screenshot where the comments are not loaded, because they almost never load. They have replied that it works at their place even with attached screenshot. I have a hard time to discuss it, because it does not work with me and with my friends either. Maybe you could fix it? I would not like to end up with awful facebook comments ;). The problem is with Firefox on PC and Mac. Chrome, Safari and Opera work ok.
    YouTube movie level layouts do not work well with IE11 and Safari 7 (http://www.leftlane.pl/sty14/wypadki-drogowe--004.html). The background should roll left, but in the above mentioned browsers it jumps up. Moreover the scrolling with menu dots is not fluent on Firefox, but I guess it is due to Firefox issues? The same layout but in vertical version rolls fluently in Firefox (http://www.leftlane.pl/sty14/polskie-wypadki--005.html).
    Now, viewing the website on new smartphones and tablets. I know it is not a mobile/tablet layout, but I tried to make it possible to be used on mobile hardware with HD (1280) display. I mean most of all horizontal layouts (http://www.leftlane.pl/sty14/2015-hyundai-genesis.html), where If we want to roll left, we need to roll down. Is there a way to make it possible to move the finger the direction in which the layout goes?
    On Android phones (Nexus 4, Android 4.4.2, Chrome 32) the fade away background effect does not work, although I have spent a lot of time over it (http://www.leftlane.pl/lut14/koniec-produkcji-elektrycznego-renault-fluence-ze!.html). It is ok on PC, but on the phone it does not look good. A whole picture moves from a lower layer instead of an edge which spoils everything.
    This layout does not look good on Android (http://www.leftlane.pl/sty14/nowe-mini-krolestwo-silnikow-3-cylindrowych.html#a07). The background does not fill the whole width of a page. There are also problems with a photo gallery, where full screen pictures should fill more of a screen.
    Is it possible to make an option of  scroll effects/motions for a fullscreen slideshow widget thumbnails (http://www.leftlane.pl/sty14/2014-chevrolet-ss%2c-rodzinny-sedan-z-415-konnym-v8.html#a06)? It would help me with designing layouts. Currently, it can go from a bottom of a page at x1 speed or emerge (like in this layout) by changing opacity. Something more will be needed, I suppose.
    Sometimes the pictures from gallery (http://www.leftlane.pl/sty14/2014-chevrolet-ss%2c-rodzinny-sedan-z-415-konnym-v8.html#a06 download very slowly. The website is hosted at Business Catalyst. I cannot state when exactly it happens, most of the time it works ok.
    I really like layouts like this (http://www.leftlane.pl/sty14/2014-chevrolet-ss%2c-rodzinny-sedan-z-415-konnym-v8.html#a03). On the top is a description and a main text, and the picture is a filled object with a hold set at the bottom edge. That is why there is a nice effect of a filling a whole screen- nevertheless the resolution that is set. It works perfect on PC, but on Android the picture goes beyond the screen. You can do something about it?
    In horizontal layouts (http://www.leftlane.pl/sty14/dig-t-r-3-cylindrowy-silnik-nissana-o-wadze-40-kg-i-mocy-400- km.html) holding of a filling object does not work. Everything is always held to upper edge of a screen regardless the settings. Possibility of holding the picture to the bottom edge or center would make my work much easier.
    According to UE regulations we have to inform about the cookies. I do not know how to do it in Muse. I mean, when the message shows up one time and is accepted, there would be no need to show it again and again during another visit on the website. Is there any way to do it? Is there any widget for it maybe?
    The YouTube widget sometimes changes size just like that. It is so when the miniature of the movie does not load, and the widget is set to stroke (in our case 4 pixels, rounded to 1 pixel). As I remember ( in case of a load error) it extends for 8 pixels wide.
    Last but not least - we use the cheapest hosting plan in Business Catalyst. The monthly bandwidth is enough, although we have a lot of pictures and we worried about it at first. Yet we are running out of the disk storage very quickly. We have used more than a half of a 1 GB after a month. We do not want to change BC for a different one, because we like the way it is connected with Muse. But we do not want to buy the most expensive package - but only this one has more disk space. We do not need any other of these functions and it would devastate our budget. Do we have any other option?
    I’m using Adobe Muse 7.2 on OS X 10.9.1.
    and I'm sending Muse file to <[email protected]>

    Unfortunatley, there is no way to get a code view in Muse. I know quite a few people requested it in the previous forum, but not really sure where that ended up. Also, you may not want to bring the html into DW unless you only have 1 or 2 small changes 2 make. Two reasons. First, it isnt backwards compatible, so if you are planning on updating that site in Muse, you will need to make those changes in DW everytime you update. Second, by all accounts the HTML that Muse puts out is not pretty or easy to work with. Unlike you, I am code averse, but there was a lenghty discussion on the previous forum on this topic. I know they were striving to make it better with every release, just not sure where it is at this point.
    Dont think I am reading that second question right, but there was a ton of info on that old site. You may want to take a look there, people posted a ton of great unique solutions, so it worth a look.
    Here is the link to the old forums- http://support.muse.adobe.com/muse

  • HT201303 hi just got my new apple ipod touch i need to update my security information other wise it wont let me download apps it says to enter three questions about myself and i get to the third question and it wont let me enter the third question

    hi just got my new apple ipod touch and to download apps it wants to add questions about myself for more sercurity information. i get up to question 3 and it wont let me select a question but it will let me write an answer so i just pressed done and then it says i cant carry on because ive mised out information when it wont let me do a question!

    Welcome to the Apple community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • Just installed iOS6, questions about "iMessage" and other things...

    I've been a satisfied iOS4 user since I bought my iPhone4, but I was forced to install iOS6 tonight in order to download a "free" app. I found a few new icons on the screen along with about 200 percent more "Settings" I'd like to ask some questions about. I'm sure a few of these could be answered by doing a frantic and thorough search through weeks of posts but I'm a little short on time right now.
    First, what exactly is iMessage? Looking at the page for it, I can't see any difference between it and regular text messages. The info page says its to avoid charges, but between my data plan and not being charged for text I don't see where theres any other benefit. The one person I text with the most recently asked me why I had not installed iMessage yet, and didn't have an answer when I asked him why I should. I guess he just wanted to see text replies in blue instead of green.
    In a related bit, flipping through Settings>Messages>Send & Receive I find a "2 addresses" section, with my phone number in there as well as my email under "You can be reached by iMessage at:" and "Start new conversations from:". What good does it do iMessages to have my email address? Does the Mail app handle text as well as email addresses? That seems to be the only explanation, and also very odd to think I'd be trying to text through my Mail app.
    Second, looking through the Settings>Mail I see now that I have an icloud email address as well as the mac.com address I've been desperately hanging on to for the past 10 years, and the me.com address they've been trying to force me into since those came out. (I was happy to see I could delete the me.com address from the phone. I wish I could delete it from the universe.)
    I wasn't even aware there was a such thing as icloud.com addresses. When did this happen? What is it used for?
    Third, under that icloud Setting I see a long list of apps with buttons labeled "Off" under it. What are those for? Under the Mac.com settings I see switches for "Mail" and "Notes", with Mail on and Notes off. The Notes app (which I haven't used since my old iPhone 3) still opens, regardless of this setting.
    Fourth, I now have an item called "Facetime" under my Settings. It is off, but underneath it says "Your phone number and/or email address will be shared with people you call". I understand caller ID normally sends caller number info to the receiver, but why would someone need my email address if I call them?
    Fifth, I now have a "Music" setting, at the bottom of which I see a "Home Sharing" item, which when clicked brings up my AppleID and asks me if I want to Sign Out or Cancel. What is Home Sharing? Its also at the bottom of the "Video" settings.
    Sixth, now I have Twitter and Facebook settings? For what? I don't have accounts with either of those companies. So why have settings, especially since it asks me to create accounts and download apps for those companies right in the Settings?
    Seventh, there is a camera icon on the unlock screen. Touching it causes the screen to bounce up about a quarter inch, almost but not quite revealing something behind it. I should probably just quit asking about this stuff already, but I'll take the bait - what is this now?
    Finally, what is the Notification Center used for?
    If I got a text under iOS4, it would put an alert on the Unlock screen. Scrolling through this huge list of things under the Notification settings I'm really blown away by all the apps set up to yell at me. I can see having an alert for a text message but Game Center? What the heck is that, and why is it set up to hit me with a "Badge App Icon" (whatever that is) when I get alerts from "Everyone". Similarly, the phone is set to alert me to something called a "Photostream Alert"? What is this? Why is there a Phone section for the Notification Center? So they can put a Notice on my screen to tell me the phone is ringing? Holy cow! The phone is set to send me alerts from the "Weather Widget". So if I miss the fact its raining there will be a message on my screen to let me know? Whats next - a buzzer to tell me I'm listening to music?
    There's a lot more, like what would I need Passbook for when I have the actual movie tickets, gate boarding passes, coupons, etc in my hands, but we'll leave that for another time. Many thanks to all who can offer some answers to my questions above.

    Hey Taantumus!
    Here is an article that will provide some guidance on this question:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    The next time you use an Apple feature or service that uses Apple ID, you'll be asked to sign in with your new Apple ID password.
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

Maybe you are looking for

  • Possible to copy recovery set image to HD for storage?

    I'm about to create a recovery set for my new Spectre ultrabook on a flash drive.  I'd like to then copy the recovery image to a drive on another PC so I can free up the flash drive for other use.  Is this doable?  I.e., if I need to restore, will I

  • Fatal error while updating to 10.2

    Hi, I got a brand new Q5 - no apps other than default and there is plenty of memory available (more than the software update size). I am trying to update the device software using BBLink. While updating, it gives me an error "Fatal Unrecoverable erro

  • Wacom driver won't install on OSX 10.8.4

    Hi folks! I just got my Intous5 today (on the day they annouced the new ones...) and I haven't been able to install the driver - at the very end of the process it gives me an Error message "Installation Failed" without further explanation. I've follo

  • How do I combine (stack) my pdfs attached to my email?

    I use a system called docusign.  When my documents completed through docusign, it returns to me by email as pdf attachments.  How can i combine my pdfs?

  • Integration Engine Load

    1. Can someone explain how do we inprove the processing time in IE, 2, What are various steps to be taken to improve the speed,