Time's error with a metric for DashBoard in the WHERE Clause - @Prompt

Hello,
I have a problem with a measure in Universe. In the WHERE clause I have the typical @Prompt to interact with DashBoard:
"Fact.Time_Key between @Prompt('BEGIN_DATE','D',,mono,free) And @Prompt('END_DATE','D',,mono,free)" *
*Fact.Time_Key is a Date Field
I check many options to solve the problem, which is: "The conversion of char data type to smalldatetime data type result in an out-of-range smalldatetime value." For example I saw many forums, I check the regional settings with IT and I also change the prm file that my universe's connection use but it still doesn't work.
So I believe that the date format of my field (Fact.Time_Key) is different to @Prompt date format
Any Suggestion?
Regards
Romá

Hi Roman,
I am not sure but I thought there was also a 'BEGIN_DATETIME' option
Regards
Alan

Similar Messages

  • When I tgry to drop a video from the main screen to a time line with no secuence i receive an error with no number, just tell me the progran stop working and the program closes can you help me please

    please someone who help me please
    when I tgry to drop a video from the main screen to a time line with no secuence i receive an error with no number, just tell me the progran stop working and the program closes

    You need to help us first ...
    Computer specs:
    OS, CPU, RAM, GPU, vRAM ... and also disc layout & connections can be useful (as in, "2 internal hard-drives and an external on Thunderbolt connection for exports")
    Program specs:
    Specific build of Premier Pro from the bottom of the "About" splash screen off the "Help" menu is best.
    Footage file type: MXF, AVCHD, MOV, m2s, what?
    Even the camera it was shot on can be of interest at times.
    And did you use media browser to import, then project panel to drag & drop?
    Neil

  • How to record a time-limited video with Adobe AIR for iOS

    I am trying to record a time-limited video with Adobe AIR for iOS.
    For example, I want to implement the following function. Start a one-minute timer before launching CameraUI to record video. When the timeout event happens after one minute, stop recording video, close the CameraUI view and obtain the video data so far.
      I have several questions related to that.
      1. How to stop recording video from outside the CameraUI view(in this case, from the timeout event handler) and then close the CemeraUI view? As far as I know, to close the CameraUI view, the only way is to press the [Use Video] button or the [Cancel] button from inside the CameraUI view. Is it possible to close it from outside?
      2. Even if the first problem mentioned above is solved, then how can I get the video data so far(in this case, the video data before the timeout). I know that normally we can get a MediaPromise object from MediaEvent parameter of the  complete handler, and read the video data from the MediaPromise object. But obviously in this case, we can not access the MediaPromise object just because the complete handler itself will not be executed since the [Use Video] button is not pressed.
      3. Is it possible to add a stopwatch to show possible remaining recording time when CameraUI view is open? It seems that the CameraUI automatically uses the full screen of iOS device(in my case, iPad) and there is no extra space to show the stopwatch.
      Are there any solutions or workarounds about the three problem above? I really appreciate it if anyone has any idea about this. Thanks in advance.

    You'd have more control by using the Camera object, showing the camera on a video object inside a Sprite, and capturing that. Then you could put whatever graphics alongside it on the stage.. I've used FlashyWrappers in a test to capture the video to the library.  It took some work, but the test worked well...
    Flash/AIR record videos of your apps and games: Rainbow Creatures

  • HT3529 i cant add new mail fir I message as every time i add and tyep pass for Apple ID the email still not add to be reached by i message

    i cant add new mail fir I message as every time i add and tyep pass for Apple ID the email still not add to be reached by i message.
    Pls i need to validate my mail adress [email protected] to send and recieve Imessage from my iphone.
    Islam fouad
    +966554948283

    i cant activate Imessage in my iPhone as every time i write my Appel ID and the Password the message appear the User id or password incorrect but 100% sure that its correct.
    Pls feed me back

  • [svn:osmf:] 14107: Fixing compile error in NetMocker, Metrics provider changed in the OSMF project.

    Revision: 14107
    Revision: 14107
    Author:   [email protected]
    Date:     2010-02-10 11:36:11 -0800 (Wed, 10 Feb 2010)
    Log Message:
    Fixing compile error in NetMocker, Metrics provider changed in the OSMF project.
    Modified Paths:
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockMetricsProvider.as

    Hi,
    You are the first person I have read so far on this forum who does not use Flex or Flash builder. I will check out FlashDevelop. It is good information to know. Thanks a lot!
    -Wei Zhang
    Senior Computer Scientist
    Adobe Systems, Inc.
    [email protected]

  • Function-based index with OR in the wher-clause

    We have some problems with functin-based indexes and
    the or-condition in a where-clause.
    --We use Oracle 8i (8.1.7)
    create table TPERSON(ID number(10),NAME varchar2(20),...);
    create index I_NORMAL_TPERSON_NAME on TPERSON(NAME);
    create index I_FUNCTION_TPERSON_NAME on TPERSON(UPPER(NAME));
    The following two statements run very fast on a large table
    and the execution-plan asure the usage of the indexes
    (-while the session is appropriate configured and the table is analyzed):
    1)     select count(ID) FROM TPERSON where upper(NAME) like 'MIL%';
    2)     select count(ID) from TPERSON where NAME like 'Mil%' or (3=5);
    In particular we see that a normal index is used while the where-clause contains
    an OR-CONDITION.
    But if we try the similarly select-statement
    3)     select count(ID) FROM TPERSON where upper(NAME) like 'MIL%' or (3=5);
    the CBO will not use the function-index I_FUNCTION_TPERSON_NAME and we have a full table scan in the execution-plan.
    (This behavior we only expect with views but not with indexes.)
    We ask for an advice like a hint, which enable the CBO-usage
    of function-based indexes in connection with OR.
    This problem seems to be artificial because it contains this dummy logic:
         or (3=5).
    This steams from an prepared statement, where this kind of boolean
    flag reduce the amount of different select-statements needed for
    covering the hole business-logic, while using bind-variables for the
    concrete query-parameters.
    A more realistic (still boild down) version of our select-statement is:
    select * FROM TPERSON
    where (upper(NAME) like 'MIL%' or (NAME is null))
    and (upper(FIRSTNAME) like 'MICH% or (FIRSTNAME is null))
    and ...;
    thank you for time..
    email: [email protected]

    In the realistic statement you write :
    select * FROM TPERSON
    where (upper(NAME) like 'MIL%' or (NAME is null))
    and (upper(FIRSTNAME) like 'MICH% or (FIRSTNAME is null))
    and ...;
    as far as i know, NULL values are not indexed, "or (NAME is NULL)" have to generate a full table scan.
    HTH
    We have some problems with functin-based indexes and
    the or-condition in a where-clause.
    --We use Oracle 8i (8.1.7)
    create table TPERSON(ID number(10),NAME varchar2(20),...);
    create index I_NORMAL_TPERSON_NAME on TPERSON(NAME);
    create index I_FUNCTION_TPERSON_NAME on TPERSON(UPPER(NAME));
    The following two statements run very fast on a large table
    and the execution-plan asure the usage of the indexes
    (-while the session is appropriate configured and the table is analyzed):
    1)     select count(ID) FROM TPERSON where upper(NAME) like 'MIL%';
    2)     select count(ID) from TPERSON where NAME like 'Mil%' or (3=5);
    In particular we see that a normal index is used while the where-clause contains
    an OR-CONDITION.
    But if we try the similarly select-statement
    3)     select count(ID) FROM TPERSON where upper(NAME) like 'MIL%' or (3=5);
    the CBO will not use the function-index I_FUNCTION_TPERSON_NAME and we have a full table scan in the execution-plan.
    (This behavior we only expect with views but not with indexes.)
    We ask for an advice like a hint, which enable the CBO-usage
    of function-based indexes in connection with OR.
    This problem seems to be artificial because it contains this dummy logic:
         or (3=5).
    This steams from an prepared statement, where this kind of boolean
    flag reduce the amount of different select-statements needed for
    covering the hole business-logic, while using bind-variables for the
    concrete query-parameters.
    A more realistic (still boild down) version of our select-statement is:
    select * FROM TPERSON
    where (upper(NAME) like 'MIL%' or (NAME is null))
    and (upper(FIRSTNAME) like 'MICH% or (FIRSTNAME is null))
    and ...;
    thank you for time..
    email: [email protected]

  • Performance with dates in the where clause

    Performance with dates in the where clause
    CREATE TABLE TEST_DATA
    FNUMBER NUMBER,
    FSTRING VARCHAR2(4000 BYTE),
    FDATE DATE
    create index t_indx on test_data(fdata);
    query 1: select count(*) from TEST_DATA where trunc(fdate) = trunc(sysdate);
    query 2: select count(*) from TEST_DATA where fdate between trunc(sysdate) and trunc(SYSDATE) + .99999;
    query 3: select count(*) from TEST_DATA where fdate between to_date('21-APR-10', 'dd-MON-yy') and to_date('21-APR-10 23:59:59', 'DD-MON-YY hh24:mi:ss');
    My questions:
    1) Why isn't the index t_indx used in Execution plan 1?
    2) From the execution plan, I see that query 2 & 3 is better than query 1. I do not see any difference between execution plan 2 & 3. Which one is better?
    3) I read somewhere - "Always check the Access Predicates and Filter Predicates of Explain Plan carefully to determine which columns are contributing to a Range Scan and which columns are merely filtering the returned rows. Be sceptical if the same clause is shown in both."
    Is that true for Execution plan 2 & 3?
    3) Could some one explain what the filter & access predicate mean here?
    Thanks in advance.
    Execution Plan 1:
    SQL> select count(*) from TEST_DATA where trunc(fdate) = trunc(sysdate);
    COUNT(*)
    283
    Execution Plan
    Plan hash value: 1486387033
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 9 | 517 (20)| 00:00:07 |
    | 1 | SORT AGGREGATE | | 1 | 9 | | |
    |* 2 | TABLE ACCESS FULL| TEST_DATA | 341 | 3069 | 517 (20)| 00:00:07 |
    Predicate Information (identified by operation id):
    2 - filter(TRUNC(INTERNAL_FUNCTION("FDATE"))=TRUNC(SYSDATE@!))
    Note
    - dynamic sampling used for this statement
    Statistics
    4 recursive calls
    0 db block gets
    1610 consistent gets
    0 physical reads
    0 redo size
    412 bytes sent via SQL*Net to client
    380 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    Execution Plan 2:
    SQL> select count(*) from TEST_DATA where fdate between trunc(sysdate) and trunc(SYSDATE) + .99999;
    COUNT(*)
    283
    Execution Plan
    Plan hash value: 1687886199
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 9 | 3 (0)| 00:00:01 |
    | 1 | SORT AGGREGATE | | 1 | 9 | | |
    |* 2 | FILTER | | | | | |
    |* 3 | INDEX RANGE SCAN| T_INDX | 283 | 2547 | 3 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - filter(TRUNC(SYSDATE@!)<=TRUNC(SYSDATE@!)+.9999884259259259259259
    259259259259259259)
    3 - access("FDATE">=TRUNC(SYSDATE@!) AND
    "FDATE"<=TRUNC(SYSDATE@!)+.999988425925925925925925925925925925925
    9)
    Note
    - dynamic sampling used for this statement
    Statistics
    7 recursive calls
    0 db block gets
    76 consistent gets
    0 physical reads
    0 redo size
    412 bytes sent via SQL*Net to client
    380 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows
    Execution Plan 3:
    SQL> select count(*) from TEST_DATA where fdate between to_date('21-APR-10', 'dd-MON-yy') and to_dat
    e('21-APR-10 23:59:59', 'DD-MON-YY hh24:mi:ss');
    COUNT(*)
    283
    Execution Plan
    Plan hash value: 1687886199
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 9 | 3 (0)| 00:00:01 |
    | 1 | SORT AGGREGATE | | 1 | 9 | | |
    |* 2 | FILTER | | | | | |
    |* 3 | INDEX RANGE SCAN| T_INDX | 283 | 2547 | 3 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - filter(TO_DATE('21-APR-10','dd-MON-yy')<=TO_DATE('21-APR-10
    23:59:59','DD-MON-YY hh24:mi:ss'))
    3 - access("FDATE">=TO_DATE('21-APR-10','dd-MON-yy') AND
    "FDATE"<=TO_DATE('21-APR-10 23:59:59','DD-MON-YY hh24:mi:ss'))
    Note
    - dynamic sampling used for this statement
    Statistics
    7 recursive calls
    0 db block gets
    76 consistent gets
    0 physical reads
    0 redo size
    412 bytes sent via SQL*Net to client
    380 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed

    Hi,
    user10541890 wrote:
    Performance with dates in the where clause
    CREATE TABLE TEST_DATA
    FNUMBER NUMBER,
    FSTRING VARCHAR2(4000 BYTE),
    FDATE DATE
    create index t_indx on test_data(fdata);Did you mean fdat<b>e</b> (ending in e)?
    Be careful; post the code you're actually running.
    query 1: select count(*) from TEST_DATA where trunc(fdate) = trunc(sysdate);
    query 2: select count(*) from TEST_DATA where fdate between trunc(sysdate) and trunc(SYSDATE) + .99999;
    query 3: select count(*) from TEST_DATA where fdate between to_date('21-APR-10', 'dd-MON-yy') and to_date('21-APR-10 23:59:59', 'DD-MON-YY hh24:mi:ss');
    My questions:
    1) Why isn't the index t_indx used in Execution plan 1?To use an index, the indexed column must stand alone as one of the operands. If you had a function-based index on TRUNC (fdate), then it might be used in Query 1, because the left operand of = is TRUNC (fdate).
    2) From the execution plan, I see that query 2 & 3 is better than query 1. I do not see any difference between execution plan 2 & 3. Which one is better?That depends on what you mean by "better".
    If "better" means faster, you've already shown that one is about as good as the other.
    Queries 2 and 3 are doing different things. Assuming the table stays the same, Query 2 may give different results every day, but the results of Query 3 will never change.
    For clarity, I prefer:
    WHERE     fdate >= TRUNC (SYSDATE)
    AND     fdate <  TRUNC (SYSDATE) + 1(or replace SYSDATE with a TO_DATE expression, depending on the requirements).
    3) I read somewhere - "Always check the Access Predicates and Filter Predicates of Explain Plan carefully to determine which columns are contributing to a Range Scan and which columns are merely filtering the returned rows. Be sceptical if the same clause is shown in both."
    Is that true for Execution plan 2 & 3?
    3) Could some one explain what the filter & access predicate mean here?Sorry, I can't.

  • JSP, Data Web Bean, BC4J: Setting the where clause of a View Object at run time

    Hi,
    I am trying to develop a data web bean in which the where clause of a View Object will be set at run time and the results of the query then displayed.
    My BC4J components are located in one project while the coding for the data web bean is in another project. I used the following code bu t it does not work. Could you please let me know what I am doing wrong?
    public void populateOSTable(int P_EmpId)
    String m_whereString = "EmpView.EMP_ID = " + P_EmpId;
    String m_OrderBy = "EmpView.EMP_NAME";
    oracle.jbo.ApplicationModule appModule = null;
    ViewObject vo = appModule.findApplicationModule("EMPBC.EMPAppModule").findViewObject("EMPBC.EMPView");
    vo.setWhereClause(m_whereString);
    vo.setOrderByClause(m_OrderBy);
    vo.executeQuery();
    vo.next();
    String empName numAttrs = vo.getAttribute(EmpName);
    System.out.println(empName);
    Thanks.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team (Laura):
    Here is how I have usually done mine:
    1. In the JSP, use a RowsetNavigator bean to set the where clause and execute the query.
    2. Use a custom web bean to process the results of the query (print to HTML).
    for example:
    <jsp:useBean class="oracle.jbo.html.databeans.RowsetNavigator" id="rsn" scope="request" >
    <%
    // get the parameter from the find form
    String p = request.getParameter("p");
    String s = request.getParameter("s");
    // store the information for reference later
    session.putValue("p", p);
    session.putValue("s", s);
    // initialize the app module and view object
    rsn.initialize(application,session, request,response,out,"wt_bc_WT_bcModule.wtjoinView");
    // set the where clause string
    String theclause = "presname = '" + p + "' AND slideno=" + s;
    // set the where clause for the VO
    rsn.getRowSet().getViewObject().setWhereClause(theclause);
    rsn.getRowSet().getViewObject().executeQuery();
    rsn.getRowSet().first();
    %>
    </jsp:useBean>
    <jsp:useBean class="wt_bc.walkthruBean" id="wtb" scope="request" >
    <%
    // initialize the app module and VO
    wtb.initialize(application,session, request,response,out,"wt_bc_WT_bcModule.wtjoinView");
    wtb.render();
    %>
    In this case, the render method of my custom web bean mostly gets some session variables, and prints various content depending on the session variable values.
    Hope this helps.
    </jsp:useBean><HR></BLOCKQUOTE>
    Laura can you give the code of your walkthru bean? i wna't to initialize a viewobject, set the where clause and give that viewobject back to initialize my navigatorbar.
    Nathalie
    null

  • How to construct the where clause for a nested xml target file

    Post Author: jlpete72
    CA Forum: Data Integration
    I'm having some problems getting the desired results creating a multi-level nested xml file.  Specifically, it does not seem that the where clause in the child schemas respects values from parent schemas.  I'm sure I'm constructing something incorrectly, but am running out of ideas. 
    I am working with the classic company/order/line hierarchy and there are three levels of output schemas in my target xml file, one for company, order header and order line information.
    For testing, I have hardcoded a restriction at the order header line to deal with only one order.  But unless I hardcode values into the where clause at the order line level of the schema, all values are returned for orders belonging to the company defined in the company level.
    I'm trying a where clause at the order line level similar to:
    order_line.customer = order_header.customer and order_line.order_num = order_header.order_num
    If the customer has more than one order in the data file, then all orders for that customer are placed in the detail for the order header.  Only if I hard code the order number in the where clause do I get only the lines for the order specified in the header section.  Not very practical. 
    What am I missing?

    An External Parsed Entity could be used to reference a schema.
    In your DTD:
    <!ENTITY datamodules SYSTEM "file:///c:/Datamodules/Datamodules.xsd">
    Refer the external entity in xml document:
    <datamodules>&datamodules;</datamodules>

  • Parsing an input parameter for the where clause or record select value

    In my limited CR experience, I've always used a command database connection so that I can write my own SQL.  However, now I have to parse a  pipe delimited parameter to get my value for the where clause, so I'm selecting several tables and joining them through the Database Expert Links tab.  All works fine, but after doing that and then parsing the parameter with the below formula in the Select Expert, I notice that there is no where clause in the SQL query, and although the report eventually displays the proper values, it runs through thousands of records first.  Here is my Select Expert - Record formula:
    StringVar array Parm1;
    Parm1 := Split({?DATA_AREA}, "|");
    {SO_ORDERS.CASE_ID} = Parm1[2]
    If I change "Parm1[2]" on the last line to a valid Case ID, then there is a where clause in the SQL and the report generates immediately. 
    It seems like the record select formula is applied AFTER all of the records (without a where clause) are searched when I use the parsed parameter value, but when I hard code a valid value, it places that into the where clause BEFORE the sql is executed.  Is there a way to get the parameter parsed first and then use that parsed value in the SQL where clause?
    Thanks.
    Bill

    Yes crystal will run the query first to get 100% data and then applies record selection condition. To increase the performance you need to pass the where condition at the command level instead of report level. So you need to create a report using add command like this
    select * from tablename where field={?Parameter}
    {?Parameter} is a command level parameter.
    Now insert this report as a subreport in another report which has no connection but has a parameter
    {?DATA_AREA} and create a formula like this in the main report
    Split({?DATA_AREA}, "|")[2]
    Now right click on the subreport and go to change subreport links and add this formula from main report and link this to sub report parameter {?Parameter} without linking any database field from the subreport.
    Now your subreport runs with the where clause to get the data.
    Regards,
    Raghavendra

  • Time Machine errors with external hard drive

    This is my first post,
    I've had my MBP for a little over 8 months and came up with an error when i went to go use bootcamp, saying that it could not partition my windows partition cause there is not enough space ( I have like at least 40+ gigs left after i partition it) and it tells me to backup and re-install. So what I wanted to do is do a time machine restore.
    I take my 750GB Western Digital External Drive via Firewire and plug it in, time machine recognizes it and wants to format it as "Mac OS X Extended (Case-Sensitive, Journaled). So I do that and it all goes well.
    After that's all done is basically when all my problems come. My external likes to lock up now and doesn't want to transfer all my files. I will load up the time machine restore and it sometimes will recognize my external and sometimes wont show up. My external will occasionally lock up during the time machine restore process. And all the time when it does actually complete and I restart the computer, it will have most of my things but all my pictures and stuff are missing off it and i go to look in my external and its still all in there but I'm left wondering why it didn't work.
    As another resort i did a fresh re-install of mac os x and tried the migration assistant. It went going to restore it but then comes up with an error saying that it cant transfer the data and tells me to plug in my external when i have it already plugged in.
    Since that didn't work I did another re-install of mac and decided to just start fresh, I still had all my music and other things that I had on my back up and tried putting them on my mac's hard drive and towards the middle and stuff it will come up with an error saying that it could not transfer files anymore and what not.
    So I'm left scratching my head in wonder, because my external will show up on my desktop and I'm able to search files through there ok.
    Could the possible problem be is that time machine partitioned it as journaled and case-sensative while my mac is partitioned as just journaled? Would that cause a conflict of having it locking up and giving me errors?
    This is really the first time I've ever really been able to seriously play around with a mac and am totally lost and don't know what I can be doing wrong.
    The external I have I just got last year not too long ago and it was working great before this.
    I've been trying for the past 3 days straight trying to figure out this problem and have had no luck.
    Please any help would really be appreciated greatly.
    Thanks in advance!!!

    Ok I tried what you said and I failed every time.
    But here is an interesting thing that I just figured out. What I tried was making a folder on the desktop and I went into the time machine backup that I had I went and manually copied the applications, library, system, users, and developer folder thinking that it may work. Well it did for me with all the folders but not the Library folder. I think that it may be the culprit behind it cause it may be corrupt and thats why my stuff will keep locking up.
    I will start copying all the other folders and they work just fine but then i would start to copy the Library folder and it would come up saying preparing to copy to "so and so" folder. well a bit into that it will stop and my external will spin down and stop working, all the other things being copied will stop in their tracks. But when I cancel it and wait a few for it to finally cancel, all my other folders will continue to copy to my desktop to the specified folder. I tried copying the Library folder over and over but same thing happened. It locked my system and my external up.
    I thought all along that I had a bad external drive when i knew it worked well when I first got it.
    So could that be a possibility that there's something in that folder that would completely halt everything when I'm copying? Because I've really never done a fresh reinstall of mac os x when I bought the machine. This backup is the factory install.
    I'm just sitting here right now making sure that these other folders that are copying get done so I know that I can single out the Library folder. And so far so good with all the copying via firewire.

  • Time Machine Error with Lion

    Been using Time Machine with no problems for a couple of years now. It's wonderful. Upgraded to Lion two weeks ago and it's been working flawlessly. However, two days ago, my Time Machine backup quit working. I'm not getting the following error message every time I try to perform a backup:
    "The backup was not performed because an error occurred while copying files to the backup disk. The problem may be temporary. Try again later to back up. If the problem persists, use Disk Utility to repair your backup disk"
    I have run Disk Utility twice a day for the past two days and nothing. It says the volume is fine and does not need repairing, yet the backup continues to fail.
    I have checked Software Update and there are no updates available. I have checked the drive manufacturer and there are no firmware updates.
    I have (4) internal disks. All of them check out fine, permissions are checked, repaired. Nothing.
    The Apple tech document suggests deleting my backup and doing a new one. Kind of defeats the purpose of having a backup in the first place, right?
    It's been working just fine until now. Any ideas on how to proceed?
    Thanks!

    Sorry, not really.
    My normal backup looks like this:
    02/08/2011 21:35:12.271 com.apple.backupd: Starting standard backup
    02/08/2011 21:35:18.181 com.apple.backupd: Network destination already mounted at: /Volumes/Colin Robinson's Time Caps
    02/08/2011 21:35:28.627 com.apple.backupd: Disk image already attached: /Volumes/Colin Robinson's Time Caps/Colin Robinson’s iMac.sparsebundle, DIHLDiskImageAttach returned: 35
    02/08/2011 21:35:29.884 com.apple.backupd: Disk image already attached: /Volumes/Colin Robinson's Time Caps/Colin Robinson’s iMac.sparsebundle, DIHLDiskImageAttach returned: 35
    02/08/2011 21:35:31.218 com.apple.backupd: Disk image /Volumes/Colin Robinson's Time Caps/Colin Robinson’s iMac.sparsebundle mounted at: /Volumes/Time Machine Backups
    02/08/2011 21:35:31.289 com.apple.backupd: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    02/08/2011 21:36:02.117 com.apple.backupd: 183.1 MB required (including padding), 115.41 GB available
    02/08/2011 21:36:02.182 com.apple.backupd: Indexer unavailable (200)
    02/08/2011 21:36:04.185 com.apple.backupd: Indexer unavailable (200)
    02/08/2011 21:37:10.485 com.apple.backupd: Copied 4498 files (125.6 MB) from volume Macintosh HD.
    02/08/2011 21:37:10.883 com.apple.backupd: 100.0 MB required (including padding), 115.41 GB available
    02/08/2011 21:37:10.887 com.apple.backupd: Indexer unavailable (200)
    02/08/2011 21:37:12.891 com.apple.backupd: Indexer unavailable (200)
    02/08/2011 21:37:22.757 com.apple.backupd: Copied 1061 files (25.0 MB) from volume Macintosh HD.
    02/08/2011 21:37:29.466 com.apple.backupd: Starting post-backup thinning
    02/08/2011 21:37:29.466 com.apple.backupd: No post-back up thinning needed: no expired backups exist
    02/08/2011 21:37:30.113 com.apple.backupd: Backup completed successfully.
    And that's taken from Console using System Log Queries set to All Messages with backupd in the search box.
    Pondini is the Time Machine expert - his writings are here:
    http://web.me.com/pondini/Time_Machine/Home.html
    Message was edited by: Colin Robinson
    I'm disappearing soon (GMT time zone) but James is in Florida so will hopefully see this and work his magic :)

  • Time Machine Error with brand new WD My Book Studio Edition

    I have a brand new iMac and just bought a new WD My Book Studio Edition 500 gb HD for specific use with my Time Machine. The iMac has a 500 HD is about 3 months old and the WD HD is brand new. I am getting an error when I try to activate and back up with Time Machine that says, " Time Machine Error. This backup is too large for a backup volume. The backup requires 524.4 gb but only 465.5 gb are available. To select a larger volume, or make the backup smaller by excluding files, open System Preferences and choose Time Machine."
    I copied the files from the Time Machine to my hard drive to make as much space as possible. I have a capacity of 465.44 GB and 28.48GB of free space on my MacHD. I have a capacity of 465.64 GB and 465.49 GB of free space on my WD. It is formatted Mac OS Extended (Journaled) the way it was originally sold. I have not tried to reformat. Not too sure about how to. But I have tried all of these scenarios.
    I have tried the following and nothing works to get Time Machine backing up at all:
    1. I have changed the preferences in Time Machine Options to a smaller file size excluding the applications folder (appx. 12 GB),
    2. I have zapped the P-RAM,
    3. I have reset the index in the Spotlight by putting my Macintosh HD and Time Machine in the Privacy section, let it reindex and then pulled it out, and
    4. I have deleted the preferences in Macintosh HD>Library>Preferences>com.apple.TimeMachine.plist.
    Nothing is working and I bought the HD when I was home visiting in the states and I live in Bogota, Colombia. Quite hard to return HD.
    Can anyone help me?
    Thanks,
    Marsh64

    You have a nearly full 500 GB hard drive and you are trying to use TM with a 500 GB hard drive - but the way TimeMachine works, your TimeMachine hard drive should be at least twice the size of your backup data. In other words, to use TM effectively you should have bought a 1 TB external drive.
    With a 500 GB drive for backups, you need to determine exactly what has to be backed up and what can be left out. If you open the TimeMachine preferences you'll see that there's an Options button. Click it and you can select folders to exclude from backing up. For example, you might decide that you don't need to back up your music because it is all on your iPod anyway and the Mac OS and your applications are all on CD so those can be left out. By carefully paring the list down you may be able to get your backup data down under 250 GB and if so, then TimeMachine will do the job for you.
    Another solution would be to drop TimeMachine as your backup solution and simply use a program such as SuperDuper! or CarbonCopyCloner (CCC) to perform your backups. There are advantages and disadvantages to each backup method. As you mull your options, don't be afraid to ask more questions.

  • Error with Function Module for Automatically Reversing FI Documents

    We are trying to use BAPIACREV to automatically reverse a document as part of workflow but get an error with 2 of the import parameters stating they were never transferred:
    1) OBJ_KEY_R
    2) OBJ_SYS
    Does anyone know how to resolve this?

    Hi,
    OBJ_KEY : Reference Key
    This key value must be created while posting the document and this key must be maintained in any of SAP tables
    for example : If the it is Accounting document then all detail found in BKPF and BSEG table, you can find OBJ_KEY in BKPF-AWKEY field.
    OBJ_SYS : Logical system of source document
    Logical system may be maintained in some table.
    for example : If the it is Accounting document then all detail found in BKPF and BSEG table, you can find OBJ_SYS in BKPF-AWSYS field.
    or you can use following FM to get logical system
    CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
    IMPORTING
    OWN_LOGICAL_SYSTEM = L_V_OWN_LOGICAL_SYSTEM
    EXCEPTIONS
    OWN_LOGICAL_SYSTEM_NOT_DEFINED = 1
    OTHERS = 2

  • Time out error in production server  for alv grid report

    hi. i have developed alv grid report using nested select statments. when i testing in development  server it is giving the output but in production server if i give 4 months then it is showing time out error.please help me out..its urgent.
    Thanks in advance.

    Hi Manu,
    Don't use Nested selected statements.
    Use the Following  Performance Tuning Options that i have given below so that your problem can be solved.
    1)  Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    2) Avoid for all entries in JOINS
    3) Try to avoid joins and use FOR ALL ENTRIES.
    4)   Try to restrict the joins to 1 level only ie only for tables
    5)   Avoid using Select *.
    6)   Avoid having multiple Selects from the same table in the same object.
    7)  Try to minimize the number of variables to save memory.  
    8)   The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    9)   Avoid creation of  index as far as possible
    10) Avoid operators like  <>, > , < & like % in where clause conditions
    11) Avoid select/select single statements in loops.
    12) Try to use 'binary search' in READ internal table. Ensure table is sorted before using   BINARY SEARCH.
    13) Avoid using aggregate functions  (SUM, MAX etc) in selects ( GROUP BY , HAVING,)  
    14) Avoid using  ORDER  BY in selects
    15) Avoid Nested Selects
    16) Avoid Nested Loops of Internal Tables
    17) Try  to  use FIELD SYMBOLS.
    18) Try to avoid into Corresponding Fields of
    19) Avoid using Select  Distinct, Use DELETE ADJACENT
    <b>
    Reward Points for sure if you find it useful. </b>
    Regards
    Babu

Maybe you are looking for

  • Remote Desktop Connection has encountered a problem and needs to close. We are sorry for the inconvenience.

    Remote Desktop Connection has encountered a problem and needs to close. We are sorry for the inconvenience.

  • Open quantity on a service order

    Hi I need to know how to check (and which tables to go to) the open quantity on a service purchase order. I need to see this for both the planned services as well as the limits that have been maintained. Thanks Vinesh

  • Form processed by LiveCycle, but cannot be saved by Adobe Reader

    Hi All, I have an Adobe form which has been processed by LiveCycle, however, it still cannot be saved by Adobe Reader. What could be the probable cause of this? Background: Previously, the whole process could work alright; i.e. create form using Acro

  • Cannot reattempt quiz slides

    Hi I am working on a project using captivate 5. I have created some inline tests without any scoring. When I publish the course, I am able to attempt the question and then continue to the next screen. But when I click the back button to attempt the q

  • Automatically create PO for STO PR

    Dear Gurus,       There have central distribute center and non-central distribute center in our company, which are defined as different plant in one company in SAP system. The goods moving between central DC and non-central DC is used stock transfer