Is it true about ASO

Hi All,
Is it true that write back functionality for ASO is available from 9.3.1???? Does it NOT have write back before that??

CL wrote:
Are you stuck on 9.2? I can remember Tim Tow demoing ASO writeback with Dodeca before Hyperion had it. I think the trick was Dodeca caught the send event, created a text file, and loaded that to Essbase. That is exactly what we did in those versions. The 'official' writeback now in Essbase does, I believe, something similar, but I understand that it writes back to a slice instead of to the whole cube. Apparently, loading data into an ASO database causes the entire file to be written. We noted that in our implementation and recommended that customers talk with us regarding their usage patterns before implementation as large scale writebacks would have been problematic due to the way that ASO dataloads work. The Smart Slice efforts (and their related APIs) are probably a result of the desires of the public to writeback to massive databases (ie ASO)..
BTW, the customers who wanted to writeback to ASO have all upgraded and we have since intentionally disabled that functionality as the 'official' writeback is a better, though not an ideal, solution.
Thoughts anyone?
Tim Tow
Applied OLAP, Inc

Similar Messages

  • True about updates through a view

    hi frds
    i just need the right answer for the choices mentioned below with explanation
    plz help me
    What is true about updates through a view?
    A. You cannot update a view with group functions.
    B. When you update a view group functions are automatically computed.
    C. When you update a view only the constraints on the underlying table will be in effect.
    D. When you update a view the constraints on the views always override the constraints on the underlying tables.

    And a very tricky only it is.
    Peter, you are correct that view constraints are not enforced in the sense of PKs and FKS, but there are two other view constraints that are enforced.
    SQL> CREATE TABLE t AS
      2  SELECT rownum id, object_name
      3  FROM all_objects
      4  WHERE rownum < 11;
    Table created.
    SQL> CREATE VIEW t_read AS
      2  SELECT * FROM t
      3  WITH READ ONLY;
    View created.
    SQL> CREATE VIEW t_check AS
      2  SELECT * FROM t
      3  WHERE mod(id,2) = 0
      4  WITH CHECK OPTION;
    View created.
    SQL> CREATE VIEW t_nocheck AS
      2  SELECT * FROM t
      3  WHERE MOD(id, 2) = 0;
    View created.
    SQL> INSERT INTO t_read VALUES (100, 'READ ONLY');
    INSERT INTO t_read VALUES (100, 'READ ONLY')
    ERROR at line 1:
    ORA-01733: virtual column not allowed here
    SQL> INSERT INTO t_check VALUES (100, 'EVEN ID');
    1 row created.
    SQL> INSERT INTO t_check VALUES (101, 'ODD ID');
    INSERT INTO t_check VALUES (101, 'ODD ID')
    ERROR at line 1:
    ORA-01402: view WITH CHECK OPTION where-clause violation
    SQL> INSERT INTO t_nocheck VALUES(100, 'EVEN ID');
    1 row created.
    SQL> INSERT INTO t_nocheck VALUES(101, 'ODD ID');
    1 row created.
    SQL> UPDATE t_check SET id = 201
      2  WHERE id = 2;
    UPDATE t_check SET id = 201
    ERROR at line 1:
    ORA-01402: view WITH CHECK OPTION where-clause violation
    SQL> UPDATE t_nocheck SET id = 201
      2  WHERE id = 2;
    1 row updated.The WITH READ ONLY constraint bars all changes to the view. The WITH CHECK OPTION stops any changes that would make the record invisible to the view. It is essentially a CHECK constraint on the view.
    John

  • Which two statements are true about WHERE and HAVING clause ?

    Which two statements are true about WHERE and HAVING clause ?
    1. WHERE clause can be used to restict rows only
    2.HAVING clause can be used to restrict groups only
    3.HAVING clause can be used to restrict groups and rows
    Plz help me in dis ques...which two will be correct...i think its 1 and 2...but not sure.

    863180 wrote:
    Plz help me in dis ques...which two will be correct...i think its 1 and 2...but not sure.If you are not sure then you do not fully understand HAVING.
    SY.

  • Which of the following are true about abstract methods in EJB 2.0

    Hi guys I'm beginner to EJB and i got some unanswered questions.
    Can any one of you please.. give answers?
    Thanks if you do...
    Which of the following are true about abstract methods in EJB 2.0
    CMP?
    Choose all correct answers:
    1. Abstract accessor methods should not be exposed in the EJB
    component's interface
    2.Abstract accessor/mutator methods are used to access and modify
    persistent state and relationship information for entity objects
    3.Abstract Accessor/Mutator methods do not throw exceptions
    4.The EJB developer must implement the Accessor/Mutator methods
    5.Abstract accessor methods may or may not be exposed in the EJB
    component's interface
    2.Which ONE of the following is true?
    Choose the best answer:
    1.Local interfaces cannot have a relationship with other Entity
    components
    2.Local interfaces cannot be used for Stateless Session EJB
    3.Local interfaces can be a part of Object's persistent state
    4.Local interfaces have the same functionality as that of a
    stateless Session EJB
    3.Which of the following describe the <cmr-field> in a EJB 2.0
    descriptor?
    Choose all correct answers:
    1.A Local interface/Entity can be a value of a <cmr-field>
    2.There is no <cmr-field> in EJB 2.0 descriptor
    3.It is used to represent one meaningful association between any
    pair of Entity EJBs, based on the business logic of the Application
    4.It provides a particular mapping from an object model to a
    relational database schema
    5.It allows the Local Entity interfaces to participate in
    relationships
    4.Which of the following are the advantages of using Local interfaces
    instead of dependent value classes?
    Choose all correct answers:
    1.Local Entity Interfaces can participate in Relationships
    2.The life cycle of Local Entity Interfaces is managed by EJB
    container, intelligently
    3.Local Entity Interfaces can be used in EJB QL Queries
    4.Local Entity Interfaces can be a part of the <cmp-field> but not
    <cmr-field>
    5.Which of the following are true about Local interfaces
    1.A local interface must be located in the same JVM to which the EJB
    component is deployed
    2.Local calls involve pass-by-reference.
    3.The objects that are passed as parameters in local interface
    method calls must be serializable.
    4.In general, the references that are passed across the local
    interface cannot be used outside of the immediate call chain and must
    never be stored as part of the state of another enterprise bean.
    6.Which of the following specifies the correct way for a client
    to access a Message driven Bean?
    Choose the best answer:
    1. via a Remote interface
    2. via Home interface
    3. Message driven bean can be accessed directly by the client
    4. both 1 & 2
    5. none of the above
    ------------------------------------------------------------------------7.Which of the following statements are true about message-driven
    bean Clients?
    ------------------------------------------------------------------------Choose all correct answers:
    They can create Queue and QueueConnectionFactory objects
    They can create Topic and TopicConnectionFactory objects
    They can lookup the JNDI server and obtain the references for
    Queue and Topic and their connection Factories
    Only 1 and 2 above

    Hi guys I'm beginner to EJB and i got some unanswered
    questions.
    Can any one of you please.. give answers?
    Thanks if you do...
    Which of the following are true about abstract methods
    in EJB 2.0
    CMP?
    Choose all correct answers:
    1. Abstract accessor methods should not be exposed
    d in the EJB
    component's interfacefalse
    2.Abstract accessor/mutator methods are used to
    access and modify
    persistent state and relationship information for
    entity objectstrue
    >
    3.Abstract Accessor/Mutator methods do not throw
    exceptionstrue
    >
    4.The EJB developer must implement the
    Accessor/Mutator methodsfalse
    5.Abstract accessor methods may or may not be exposed
    in the EJB
    component's interfacetrue
    2.Which ONE of the following is true?
    Choose the best answer:
    1.Local interfaces cannot have a relationship with
    other Entity
    componentsfalse
    2.Local interfaces cannot be used for Stateless
    Session EJBfalse
    3.Local interfaces can be a part of Object's
    persistent statefalse
    4.Local interfaces have the same functionality as
    that of a
    stateless Session EJBtrue
    3.Which of the following describe the <cmr-field> in a
    EJB 2.0
    descriptor?
    Choose all correct answers:
    1.A Local interface/Entity can be a value of a
    <cmr-field>true
    2.There is no <cmr-field> in EJB 2.0 descriptorfalse
    3.It is used to represent one meaningful association
    between any
    pair of Entity EJBs, based on the business logic of
    the Applicationtrue
    4.It provides a particular mapping from an object
    model to a
    relational database schematrue
    5.It allows the Local Entity interfaces to
    participate in
    relationshipstrue
    4.Which of the following are the advantages of using
    Local interfaces
    instead of dependent value classes?
    Choose all correct answers:
    1.Local Entity Interfaces can participate in
    Relationshipsis
    2.The life cycle of Local Entity Interfaces is
    managed by EJB
    container, intelligentlyis
    3.Local Entity Interfaces can be used in EJB QL
    Queriesnot
    4.Local Entity Interfaces can be a part of the
    <cmp-field> but not
    <cmr-field>not
    >
    >
    5.Which of the following are true about Local
    interfaces
    1.A local interface must be located in the same JVM
    M to which the EJB
    component is deployedtrue
    2.Local calls involve pass-by-reference.true
    3.The objects that are passed as parameters in local
    l interface
    method calls must be serializable.false
    4.In general, the references that are passed across
    s the local
    interface cannot be used outside of the immediate
    e call chain and must
    never be stored as part of the state of another
    r enterprise bean.true
    >
    6.Which of the following specifies the correct way for
    a client
    to access a Message driven Bean?
    Choose the best answer:
    1. via a Remote interfacefalse
    2. via Home interfacefalse
    3. Message driven bean can be accessed directly by
    the clientfalse
    4. both 1 & 2false
    5. none of the abovetrue.
    >
    ----------------7.Which of the following statements
    are true about message-driven
    bean Clients?
    ----------------Choose all correct answers:
    They can create Queue and QueueConnectionFactory
    objectsthe container can, dunno bout clients
    >
    They can create Topic and TopicConnectionFactory
    objectsthe container can, dunno bout clients
    >
    They can lookup the JNDI server and obtain the
    references for
    Queue and Topic and their connection Factories
    true
    Only 1 and 2 abovefalse
    somebody correct me if i'm wrong

  • Is this true about PS2 devices?

    I just got a new computer. I don't know a lot about hardware, etc.
    The Mainboard I got is an MSI K8N Neo4 S 939
    My PS2 devices are not working and the guy who sold me the computer told me that by unplugging the mouse and keyboard while the system was running, I may have shorted out the board.
    Is this true?

    Quote from: MGP on 18-December-05, 13:04:44
    It is possible that you shorted the keyboard controller, generally you can hot swap keyboard and mouse but some MB like the NEO versions are very sensitive to 
    I take it by your post that none of your PS2 ports are working, if this is the case then I would guess that the PS2 controller on the MB is shot.
    So... if I have indeed shot my PS2 controller on the MB, what can be done? Is this repairable? Do you think it could potentially cause other problems for me? I am using USB devices now but am concerned about future problems due to this happening.
    Also, do you think this should be covered under the 1 year warranty the shop gave me?
    Thanks,
    Charles

  • Is it true about iphone 5?

    i just heard some rumours  about iphone 5 and i just wanna know if its true of not?!

    True, I didn't read the whole agreement, I happened to have scrolled to the bottom and read the last three words (at 5.3), thus I realised it wouldn't matter what anything above said anyway.
    So, to summerise the 'agreement' for you:
    Apple Support Communities Use Agreement
    Apple reserves the right to delete any Submission for any reason.

  • Is it True about SQLPLUS ?

    Based on below link :
    http://intermediatesql.com/index.php/tools/sqlplus-might-show-incorrect-explain-plan/
    SQLPlus, while a useful tool, has its own share of problems that you need to be aware of ?
    Any Idea is very appreciated.
    Thanks.

    Interesting article. I left a nice long comment on that blog article. :-)
    P. Forstmann, thanks for the link to the documentation - I think that Tom Kyte covered this limitation well in his books and in a couple of AskTom articles, but it was helpful to be able to be able to quote the documentation.
    My comment attached to the blog article follows:
    Please note that what you have reported in this blog article is in fact NOT a bug in SQL*Plus. Behind the scenes, SQL*Plus' AUTOTRACE facility uses an EXPLAIN PLAN FOR call to retrieve the execution plan for a submitted SQL statement. All bind variables for a call to EXPLAIN PLAN, whether called from SQL*Plus or another utility, are interpretted as VARCHAR2 (regardless of the actual bind variable data type) and are not initialized with a value (this also prevents bind variable peeking from affecting the execution plan). The Oracle Database documentation states the following about EXPLAIN PLAN: "Oracle does not support EXPLAIN PLAN for statements performing implicit type conversion of date bind variables. With bind variables in general, the EXPLAIN PLAN output might not represent the real execution plan."
    Your article states that it is attempting to compare execution plans for NUMBER and CHAR binds, but the VC bind variable is actually defined as a VARCHAR2 and not a CHAR.
    A quick demonstration:
    CREATE TABLE T1 (C1 NUMBER, PRIMARY KEY(C1));
    INSERT INTO T1
    SELECT ROWNUM FROM DUAL CONNECT BY LEVEL<=100;
    COMMIT;
    EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'T1',CASCADE=>TRUE)We now have a very simple table with a primary key index, and 100 rows in the table. On to the test:
    VARIABLE N1 NUMBER
    EXEC :N1:=1
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 12';
    SET AUTOTRACE ON
    SELECT
      C1
    FROM
      T1
    WHERE
      C1 = :N1;
    Execution Plan
    Plan hash value: 2546125981
    | Id  | Operation         | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |              |     1 |     3 |     0   (0)| 00:00:01 |
    |*  1 |  INDEX UNIQUE SCAN| SYS_C0028425 |     1 |     3 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - access("C1"=TO_NUMBER(:N1))
    SET AUTOTRACE OFFNotice the Predicate Information section of the execution plan shows that the N1 bind variable is being converted from a VARCHAR2 to a NUMBER for the comparison. That conversion is a direct result of AUTOTRACE using EXPLAIN PLAN to generate the excution plan for the SQL statement. Now, let's take a look at the way to display the actual execution plan (in Oracle Database 10.1 and greater):
    SELECT
      C1
    FROM
      T1
    WHERE
      C1 = :N1;
    SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,'TYPICAL'));
    PLAN_TABLE_OUTPUT
    SQL_ID  d2fjtd39f9gmd, child number 0
    SELECT   C1 FROM   T1 WHERE   C1 = :N1
    Plan hash value: 2546125981
    | Id  | Operation         | Name         | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT  |              |       |       |     1 (100)|
    |*  1 |  INDEX UNIQUE SCAN| SYS_C0028425 |     1 |     3 |     0   (0)|
    Predicate Information (identified by operation id):
       1 - access("C1"=:N1)Notice in the above, the Predicate Information section does not show that the N1 bind variable is being converted from a VARCHAR2 to a NUMBER for the comparison.
    Now that we are finished with the 10046 trace, we should disable it:
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF';Still not sure that SQL*Plus just calls EXPLAIN PLAN when AUTOTRACE is enabled? Take a look in the 10046 trace file that was generated, below is a small portion of the trace file:
    PARSING IN CURSOR #11 len=85 dep=0 uid=286 oct=3 lid=286 tim=178896871268 hv=3595065010 ad='4697a6750' sqlid='gkgsxamb4hppk'
    EXPLAIN PLAN SET STATEMENT_ID='PLUS702067' FOR SELECT
      C1
    FROM
      T1
    WHERE
      C1 = :N1
    END OF STMT
    PARSE #11:c=0,e=144,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=0,tim=178896871268
    BINDS #11:
    Bind#0
      oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
      oacflg=00 fl2=1010000 frm=01 csi=178 siz=32 off=0
      kxsbbbfp=1f533240  bln=32  avl=00  flg=05Notice in the above the call to EXPLAIN PLAN, that the oacdty is set to 01 (VARCHAR2), and that the bind variable's value was not submitted.
    Of course, it is also possible for TKPROF to show the wrong (Row Source Operation) execution plan for a query, but that is a topic for another discussion.
    If anyone cares to see a case where the Row Source Operation execution plan may be displayed incorrectly, you will find a test case here:
    http://hoopercharles.wordpress.com/2010/01/11/explain-plan-lies-autotrace-lies-tkprof-lies-what-is-the-plan/
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Is this true about Trade Ins?

    I called my local Best Buy and the rep told me that the trade in phone had to be originally purchased at Best Buy?  Does anyone know if this is true?

    Hello BRIVAEH226-
    There are city, county and state regulations that do control what we can take as a trade-in.  In some situations, we are required by those regulations to only take trade-ins that can be validated as purchased in a Best Buy store by the customer producing a Best Buy receipt.
    This is why all of our trade-in promotions as well as our Limitations and Restrictions of our trade-in program here call out that some stores may have additional limitations that prevent a trade-in.  Your local store should be able to provide you with more information around any particular regulations that they have to follow.
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Is this true about installation disks??

    Is it true that certian OS cd's can only be loaded onto certain Mac's? Ex. Like a installation disk from a emac wont work on a powermac? What do the codes on the disks mean when it says "disk 1" and "disk 2" etc? I aquired a 2002 powermac G4 quicksilver and need to reinstall but dont have the disks. How will I be able to tell which installation disks to buy If i'm looking to install Tiger??
    -Thanks for your help

    funylinks2004, welcome to Apple Discussions.
    Tiger install DVDs are in short supply. Tiger is no longer available at the Apple Store but is still available for $129 by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753). For other sources, do a Google search for MA453Z/A and M9639Z/A . Also look on eBay. Be sure & buy a retail version (black with silver X) and not a model specific version (gray).
    Also check this web store http://www.lacomputercompany.com/cgi-bin/rpcart/index.cgi?command=dispitem&type= sku&sku=19521
     Cheers, Tom

  • Is this true about iPhone vibrate feature?

    Is it true if you keep putting the virbate off and on it will break or ruin the vibrate in your iPhone?? Is this true? So if I turn it off and on like 4 times in a row will I break my iphone or iphone virbate motor or whatever?????
    THANKS for the help!

    Is it true if you keep putting the virbate off and on it will break
    So if I turn it off and on like 4 times in a row ... or whatever?????
    If you really mean compulsively flipping the switch, all hardware switches have a finite lifetime designed for rational use and you may eventually break it.

  • Iis't true about disable put and delete and trace in weblogic?

    i want to known how the http method(put ,delete and trace ) is working in weblogic?

    Hi,
    Enable following parameter
    -DHttpTraceSupportEnabled=true
    and trace your Http Method.
    Regards,
    kal

  • What is true about used disk space?

    Hi,
    Funny thing a MacBook Air but I don't understand which of the values below is true or not?
    Running one shows 45Gb used space and the other 81Gb, which of the 2 is right?
    :/ root# du -sckxh * | sort -nr
    408M          usr
    45G          total
    29G          Users
    15M          mach_kernel
    5.8G          private
    4.6G          Applications
    4.5K          dev
    4.1M          bin
    4.0K          var
    4.0K          tmp
    4.0K          etc
    4.0K          Volumes
    4.0K          User Guides And Information
    3.0G          Library
    2.7G          System
    2.3M          sbin
    1.0K          net
    1.0K          home
      0B          cores
      0B          Network
    :/ root# df -h
    Filesystem                          Size   Used  Avail Capacity  Mounted on
    /dev/disk0s2                       112Gi   81Gi   31Gi    73%    /
    devfs                              187Ki  187Ki    0Bi   100%    /dev
    map -hosts                           0Bi    0Bi    0Bi   100%    /net
    map auto_home                        0Bi    0Bi    0Bi   100%    /home
    localhost:/BMibznOHfSLdyFjRO-gK10  112Gi  112Gi    0Bi   100%    /Volumes/MobileBackups
    /dev/disk2s0s2                     226Mi  226Mi    0Bi   100%    /Volumes/WD SmartWare
    /dev/disk1s1                       931Gi  896Gi   35Gi    97%    /Volumes/My Passport 1
    Thanks,
    Remi

    The true amount is the higher of the two, in this case.
    Finder and Disk Utility will often show differing quantity of free space for the following reason.... If Time Machine is turned "on" in Lion, Time Machine will accumulate copies of changed information and store it as "Local Backups". This affords more "restore points" for your Time machine backups than would otherwise be kept if Time machine were to only create restoration points at each syncing to your backup drive. These "local Backups" are purged from the system at each backup sync, and the process of accumulation begins anew.
    The operating system treats these local backup files as "low priority", and will be erased straight away, if ever during normal operation the user needs this disk space. Hence, some reports will not count these files at all in free space calculations, while others recognize the space as at least temporarily in use.
    As well, Local Backups will stop accumulating is the free space drops below 10% of total. This is so that paging operations are completely unhindered by what might be a situation where erasure may be required before virtual memory could issue a write operation.
    You can turn "local Backups" off via a terminal command, but it is hardly necessary. You can stop the accumulation and purge (erase) the files by simply by turing off Time Machine, and then using the "backup now" feature the next time you want to sync to your Time Machine backup drive. You simply will have no additional staged backup points other than the ones you make every time you sync. In other words, it will be just like it was in Snow Leopard, except that you have to "tell" Time Machine to sync, instead of TM doing it automatically just by hooking up the drive. Turning off Time machine doesn't disable TM, it simply turns off Local Backups, and automatic syncing upon backup disk mounting .

  • Which of this is true about class and object?

    (a) A class is made of objects
    (b) A class is a collection of objects
    (c) A class supplies or delivers objects to the rest of the application
    (d) A class is used as a template to create objects
    (e) An object inherits its variables and their values from its class
    (f) An object inherits its variables and methods from its class
    (g) An object inherits its variables and methods from its class and its superclasses
    (h) The variables and methods of a class are defined in its objects
    (i) The variables and methods of an object are defined in its class
    (j) The variables, variable values and methods of an object are given in its class

    (a) A class is made of objects - true
    (b) A class is a collection of objects - true
    (c) A class supplies or delivers objects to the rest of the application - true
    (d) A class is used as a template to create objects - true
    (e) An object inherits its variables and their values from its class - false
    (f) An object inherits its variables and methods from its class - true
    A class is a not collection of objects. A class not only contains objects
    A class represents objects and others.

  • Is it true about the new 21.5" iMac

    that the RAM can't be upgraded after purchase? Also I've heard that it comes with a 5400 RPM hard drive, but when I went to to the website I couldn't find out if it was possible to order it with a 7200 RPM drive.

    Then, you've not been listening to Apple's gurus. Jobs started it and Cook and Phil Schiller are mouthing the same things. See http://techland.time.com/2012/10/26/apples-phil-schiller-on-the-state-of-the-mac / for example.
    Apple wants everyone to waste resources pushing everything digital, to and from the cloud, including the iTunes and Mac Apple Store. Don't you know that's the new way. As for thinness, all they did is shrink the edges, but who cares since the display is only a 2-D thing and an inch or two narrower means nothing. Just marketing hype and keeping users out of their computers.

  • Is this true about 4g?

    Since i got my TB, i can tether for free with my $29.99 unlimited plan and 4g?

    kyoakuma wrote:
    Since i got my TB, i can tether for free with my $29.99 unlimited plan and 4g?
    You can use it as a hotspot free until May 15th.

Maybe you are looking for

  • How to dynamically enable or disable a control's runtime shortcut menu?

    Is there a way to do it?   I need to disable a control's runtime menu while my VI is running and then enable it at other point of time.  All the way, I can make use of the default menu items (Reinitialize to default values, Copy data etc..,) for the

  • Creation of GR from Contract using bapi BAPI_GOODSMVT_CREATE

    Hi, As per requirement I need to create a GR for Contract line item. I tried to create using BAPI  BAPI_GOODSMVT_CREATE but It returns the error message. I tried with GM_CODE  '05', so could you please let me know which are the parameters I need to p

  • Link in a animated gif?

    Hi. Just wonder, is it possible to insert a link on a animated gif? Like - frame 1 links to www.blablabla.com Frame2 to another...and so on ? Kind regards, Bjørn.

  • Trouble removing hard drive for upgrade in Mac Pro

    I have a 2008 Mac Pro and have read how to install new drives. The problem I am having is getting one of the drive bays, drive bay 1, to release. It seems like I can remove the other drive bays OK, but that one is stuck but good. After looking inside

  • After copying the audio from one project to another, there is only silence?

    I am working in Adobe Premiere CS4. Because of an error with one of my projects, I wound up just copying all the video as well as the audio (which has a bunch of fadeouts/intricate splices) to another project. When I try to play the audio in the time