Reponse time issue with a simple qurey .

hi all,
i started facing a strange issue with the below query form the biging of the month. we have a DW system for a banking domain and in that our accounts table from the first of this month is taking a huge amount of time to retive the data. if i query a back dated data say 31st of may that would be '310509' it give the result in less that 5 seconds. this is a very simple query which i am joing with a transaction table.
i assume the reason for the change in query reponce time is may be tha data from the beging of this month had a datablock extantion and this block is corrupted . kindly let me know what i am thinking is correct or there is another reaosn for this.
Also let me know what resolution should i take to resolve this issue.
my database version is Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
Thanks in advance
SELECT * FROM
(select * from gtxn_dtl_v1 where batch_id='070609') a,
(select * from gacc_dtl_v1 where batch_id='070609') b
WHERE a.account_number = b.id
SELECT * FROM
(select * from gtxn_dtl_v1 where batch_id='310509') a,
(select * from gacc_dtl_v1 where batch_id='310509') b
WHERE a.account_number = b.id

Hemant K Chitale wrote:
I don't think that it is a simple query.
The two objects "gtxn_dtl_v1" and "gacc_dtl_v1" seem to be Views. So, the queries are probably involving joins of other tables.
Without an Execution Plan and information about table and index definitions and statistics on the tables and indexes, any attempt to answer your question would be meaningless.Both are tables. Explain plan is shown below:
SQL> explain plan for
  2  SELECT * FROM
  3  (select * from gtxn_dtl_v1 where batch_id='070609') a,
  4  (select * from gacc_dtl_v1 where batch_id='070609') b
  5   WHERE a.account_number = b.id;
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
Plan hash value: 4236620027
| Id  | Operation                    | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT             |             |     1 |   601 |    38   (0)| 00:00:01 |
|   1 |  NESTED LOOPS                |             |     1 |   601 |    38   (0)| 00:00:01 |
|*  2 |   TABLE ACCESS BY INDEX ROWID| GACC_DTL_V1 |     1 |   313 |     4   (0)| 00:00:01 |
|*  3 |    INDEX RANGE SCAN          | IDX_ACC2_V1 |     1 |       |     3   (0)| 00:00:01 |
|*  4 |   TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1 |     1 |   288 |    34   (0)| 00:00:01 |
|*  5 |    INDEX RANGE SCAN          | IDX_TXN2_V1 |    55 |       |     8   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - filter("BATCH_ID"='070609')
   3 - access(SUBSTR("BATCH_ID",1,6)='070609')
   4 - filter("BATCH_ID"='070609' AND SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='070609')
   5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID")
       filter(SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1
              ,3))
22 rows selected.
SQL> explain plan for
  2  SELECT * FROM
  3  (select * from gtxn_dtl_v1 where batch_id='310509') a,
  4  (select * from gacc_dtl_v1 where batch_id='310509') b
  5  WHERE a.account_number = b.id;
Explained.
SQL>  select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
Plan hash value: 1249675553
| Id  | Operation                     | Name            | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT              |                 |     1 |   601 |   785   (1)| 00:00:10 |
|   1 |  TABLE ACCESS BY INDEX ROWID  | GACC_DTL_V1     |     1 |   313 |     4   (0)| 00:00:01 |
|   2 |   NESTED LOOPS                |                 |     1 |   601 |   785   (1)| 00:00:10 |
|   3 |    TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1     |   104 | 29952 |   368   (2)| 00:00:05 |
|*  4 |     INDEX RANGE SCAN          | IDX_TXN1        |   104 |       |   340   (2)| 00:00:05 |
|*  5 |    INDEX RANGE SCAN           | GACC_DTL_V1_IDX |     1 |       |     3   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   4 - access("BATCH_ID"='310509')
       filter(SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='310509')
   5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID" AND "BATCH_ID"='310509')
       filter(SUBSTR("GACC_DTL_V1"."BATCH_ID",1,6)='310509' AND
              SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1,3))
21 rows selected.
Indexes:
select i.index_name,index_type,i.table_name,num_rows,column_name,COLUMN_EXPRESSION
from all_indexes i,all_ind_columns c,ALL_IND_EXPRESSIONS e
where i.table_name in ('GACC_DTL_V1','GTXN_DTL_V')
and i.index_name = c.index_name
and e.index_name(+) = i.index_name;
INDEX_NAME     INDEX_TYPE          TABLE_NAME     NUM_ROWS     COLUMN_NAME     COLUMN_EXPRESSION
GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     ID     
GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     BATCH_ID     
IDX_ACC5_V1     NORMAL               GACC_DTL_V1     34524304     POSTING_RESTRICT     
IDX_ACC1_V1     NORMAL               GACC_DTL_V1     55919578     CATEGORY     
IDX_CUS5_V1     NORMAL               GACC_DTL_V1     54461378     CUSTOMER_NUMBER     
IDX_CUS6_V1     NORMAL               GACC_DTL_V1     3272052     LIMIT_REF     
IDX_ACC3_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     52940894     SYS_NC00099$     "CUSTOMER_NUMBER"||'.'||"LIMIT_REF"
IDX_ACC4_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     57238600     SYS_NC00100$     "CUSTOMER_NUMBER"||'.000'||"LIMIT_REF"
GACC_DTL_V1_IX2     FUNCTION-BASED NORMAL     GACC_DTL_V1     54448627     SYS_NC00101$     SUBSTR("ID",1,3)
IDX_ACC2_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     55566106     SYS_NC00102$     SUBSTR("BATCH_ID",1,6)Edited by: user577300 on Jun 10, 2009 11:41 PM
So many strange things here:
1.Query showing cost 38 is taking a long time  (hours). Other quey takes 5 sec
2. Plans are different.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Execution time issues with SU01 demo script

    Having worked with Scripting in a Box for a while now I wanted to try out the examples there. I read FM: SO_USER_LIST_READ or another one explaining why my attempt to narrow the returned users failed (Craig, did you find out why the functionality was removed?) and Re: Issue with "Scripting in a Box" seeing that  Harry had the same problems with only ~200 users in his system. However, Craig's original post states he successfully managed with over 400 users. I'm a bit confused...
    I included some simple timing stuff and found out that processing of one user in the loop takes about 1.7 seconds - little surprise then that every script times out. This seems to be due to the additional calls to GetStatus() and GetValid() - by commenting them out I get the whole list rather quickly.
    Unfortunately commenting them out also means no nice icons for 'Status' and 'Valid', which is not desired. I probably could create a Z FM to deliver me the userlist with these two fields already added (which would save on rfc-calls, assuming the operation is much quicker on the server directly), but I hoped to get a solution based purely on PHP, not own ABAP coding (being aware that Craig also used a Z FM anyway, but still...)
    I'm a bit unsure now how easy it is to actually create useful frontends in PHP, with such long execution times. I assume this will happen in other occasions as well, not only for user lists. Is there an alternative? Or a general way to do those things quicker?
    :Frederic:

    Craig: you say it's easy to go from 1.7 seconds per user lookup down to a small fraction of it? Then apparently I'm lacking these skills. Could you please give me a hint what should be done there?
    I though about creating a Z function, but having to write custom wrappers - possibly for about any transaction in this style - I wanted to avoid.
    Bala: the two functions only take one user as input, not a list. So w/o modifying the ABAP side I can't feed the whole list in there. I wonder how much it would improve the result time anyway, so perhaps I'm trying it. It's just not a solution I'd prefer.
    Paging is a good idea, the actual call to get the whole userlist is quite quick. Having like 20 users displayed at a time is manageable - still slow, but the script won't timeout anymore. I think I'll implement this today.
    About AJAX: yes, I want to play around a bit with AJAX, however having the two columns valid and status removed and the information only displayed on mouseover etc is a bit like cheating. And 1.7+ seconds waiting for a hoover info is too long. So I'd like to optimize on the rfc-calling side primarily.
    Craig: surely it was just a demo, and I'm just trying to get it to work for understanding it
    :Frederic:

  • CFWDDX Time Issue with CF7

    We're upgrading a bunch of apps from CF5 to CF7. We've run
    into an issue with cfwddx that results in times coming across with
    one hour subtracted - this didn't happen with CF5. Basically I'm
    packetizing query results with an action CFML2JS. If I just dump
    that packet via something like alert(mypacket.value) I can see that
    the date is intact. However, if I break it down via WDDX2CFML then
    run a cfquery against it, the datetime fields are all coming back
    one hour short, i.e. 10 PM instead of 11 PM. I'm suspecting I need
    to manipulate the usetimezoneinfo property of the serializer
    object, but I'm not sure how to do that - at any rate, is this a
    known problem with CF7? Any suggestions at all on how to get around
    this would be greatly appreciated!
    Regards,
    Al
    P.S. I'll be happy to post code if that's required.

    Very same thing here. Iphone 5C on 7.0.2 from tmobile in NC.
    time is frozen when auto lock is engage. Both manual and automatic settings failed to help.
    Tried the LTE trick, tried the reset network trick...

  • Render time Issues with 5.0 project in CC 12.1

    This is actually a copy of a post I had in a different discussion entitled "render time" but this now
    I did some extensive testing to try and see why my render times in CC were so much slower that 5.5 and I found some very interesting results.
    The original project was created in 5.0 and opened in 5.5 and rendered, it contained video footage and graphics. When it was render in 5.5 it rendered in 4:27. When I opened it in 12.1 and rendered it was 18:00. I then started turning off layers and my render times shot up. basically layer 12 had two animated masks on colored solid. With this off it took 8:30
    I then imported the project into 12.1 and saved it, reopened it and with layer 12 off it took 5:11. So importing and saving the project made a difference. Now I recreated layer 12 in 12.1 from scratch and turned it on and my rendered time was 6:50.
    So there is something going on with projects being converted from earlier versions - Now to really test this theory I would need to recreate the project from scratch and compare to the 5.5 times.
    To further test this we did the same sort of testing with a different comp and found similar results - the render times were different if it was imported vs. just opened. But the big thing we found with this comp was a layer where we were moving large stills with some z space. It looks like the 3d from 5.0 was causing a major slow down in CC on layers that has AE 3d applied.
    I think the major take away is if your comp was created in 5.0 and you need to modify it, then make changes in 5.5 or 5.0 or be prepared to recreate any layers with more than simple key frames.
    Just to also answer some other questions - in rendering to prores vs. animation or dvcprohd the times were almost the same. The animation was slightly longer but that makes sense cause the file was much bigger.
    I also found that with 32 gigs of ram my magic number was 11 reserved for other apps ...
    Hope someone can jump in and add some light to this
    This was all done on a 2010 mac pro 2.66 w 12 cores 36 megs ram running 10.8.4 - I have 5.5 and CC and the 12. 1 updates are installed and the video card is an NVidia 575. Mulit threading was on and in 5.5 - 9 Megs is reserved and in 12.1 - 10 is reserved

    I've experienced similar problem with Java Web Start twice.
    Also using JRE version 1.5.0_06 Java HotSpot(TM) Client VM and Browser Internet Explorer 6.0.2800.1106 on Windows XP (Problem was the same with Java 1.4.2)
    My application was signed and launched via JNLP. The security warning popup was shown in the windows taskbar, but it was hidden. Using maximize in the taskmanager, I was able to see the dialog but it was blank. The problem was persistent, although I did not try as many times as 20-30 :-)
    On both occations the problem occured on multi (3) screen systems, which I suspected to be the problem (Java has historically had some issues regarding multi screen systems), but now I'm not so sure.
    Did you find a solution / cause?

  • Daylight Savings Time issue with Palm Treo 755p/Missing Sync 6.0.6

    I'm not sure where the fault is, but here's what a user sees here:
    User has a Palm Treo 755p with the 1.08 software installed.
    Since DST on March 14th, when he syncs the iCal information to the phone using Missing Sync 6.0.6, the information on the phone is pushed ahead one hour.
    But the odd thing about it is how it shows on the phone.
    User created a repeating event from March 12-20 from 9-10 a.m. called "test 9" for an example of this.
    On March 12 and 13, this shows as "test 9" -- at 9:00 on the Treo
    From the 14th on, it shows as: "test 9 (9 am EST)" -- but it is entered at *10:00* a.m.
    What I don't know is if this is a Missing Sync issue or a Palm OS issue.
    User's computer is running 10.6.2 -- and both computer and Palm are in the Eastern time zone.
    I'm open for suggestions here -- is this a *Palm* issue? Or something else?
    Thanks!

    We "fixed" this by noticing that -- for whatever reason -- Detroit (we're in Ann Arbor, actually) shows as "Eastern Standard Time" where it seems that every other major city in the time zone (Columbus, Indianapolis, New York, Miami, Philadelphia, etc...) shows as "Eastern Time".
    So we set up iCal on this computer to use New York ("Eastern Time") and all the events added to iCal after that synced properly.
    I tried to add "Detroit" to the Palm, but had no luck in syncing with that.  I think the "Eastern Time" thing is key.   I have a Bug Report into Apple about the fact that the time zone seems wrong for us.
    That said, while I could  change pre-existing events from "Eastern Standard Time" to "Eastern Time" in iCal, those events did *NOT* sync to the Palm correctly.
    The user had to delete/readd the events in the right "time zone" to get them to sync correctly.
    I'd be curious to know if this solution (?) works for you as well.

  • I need help re-installing my OS on a new hard drive. Having MAJOR issues with this simple task.

    I have a MacBook Pro 15" (mid 2009) I recently needed to get a new hard drive for it, the old one stopped working. It came with OS X Snow Leopard already installed from Apple, and it also came with the install disks. I have booted up using the install disks and put OS X Snow Leopard back on the computer.
    I tried booting with a USB install disk of OS X Lion (10.7) but had no luck on multiple occasions. It would only get through the initial step of the install and then say it couldn't download additional components needed for OS X 
    So finally, I decided to try a full erase and reformat of my brand new hard drive (less than a week old) and stated with the basic software that came with the computer. Installing that worked fine, until I tried to do a software update through the built in program. My computer refused to download 10.6.8 from the apple servers, so I had to find it on a 3rd party website. Once I found it and downloaded it, I finally got it installed. There were 12 more updates after I did 10.6.8 and none of them worked when I tried downloading and installing as a group. I had to do each one individually, the last one being a security update.
    Up to this point, the Mac App Store didn't work (even after the 10.6.8 update), I couldn't download any of my previous purchases. I needed to download lion, to see if having it on the Mac hard drive itself would help with the install, but I couldn't do that until after the security update.
    Other than that, the Mac worked normally except for during each start up, the apple logo would flash along with the forbidden sign and the folder with a question mark on it. It flashed for a few seconds randomly, then would boot up normally or say that my computer would need to be restarted.i figured this issue would be fixed after I successfully installed lion.
    FINALLY I got the App Store to download lion, and began the install process. Halfway through the install, it failed and when I tried to restart the computer, it continuously flashes through those three symbols at startup. I can't get it to do anything else. I'm so ****** off I'm ready to just sell it for parts.
    My questions are:
          1. Can I install OS X Lion OR OS X Mountain Lion clean from the start after a full format of the hard drive?
          2. How do I go about installing clean and get my computer to stop flashing those symbols during start up?
    *I have performed the Apple Hardware extended test and all systems are reporting normal function*

    Okay, so, fast forward from July to now -
    - I've visited my closest Apple store's genius bar twice now. (Over an hour and a half away.)
    - My computer spent at least 8 hours behind their closed doors in the workshop
    - Several complete erases of the harddrive have taken place
    - Most of the Apple geniuses I dealt with were nice and very knowledgeable, but they were and still aren't 100% sure exactly what is wrong with my computer.
    The good news is:
    - They were able to at least get it running again, with a clean install from their servers of OS X Lion 10.7.5
    - They believe that my problems stem from either 1 of 2 things:
            - Faulty Hard Drive (even though it is brand new)
             - The wrong build of software being installed.
    Now, while the wrong build does seem like it could be the problem, it doesn't make sense in the aspect that all of the initial problems began when the first hard drive failed. The same problems continued when I changed out the failed hard drive with the brand spanking new one, and only slightly improved when I was able to successfully install the OS that came with the original disks for my computer. I'm not convinced this thing is back to normal, but hopefully I can make it last through getting a shiny new retina Macbook Pro in the coming future. Thank you so much to everyone who read and replied to this post!
    - Andrew =)

  • Logging Time issue with Job running under SYS.MAINTENANCE_WINDOW_GROUP

    Hi,
    We have configured a nightly job to run daily at 2:00 AM
    And configured the Job to run under Sys,maintenance_window_group.
    The nightly job is producing some log(trace) files in the format
    <date-time> message
    the <date-time> entry is made as
    UTL_FILE.PUT_LINE (log_file, TO_CHAR(SYSDATE,'DD/MM/YYYY HH24:MI:SS') || ' ' || msg, TRUE);
    the problem is the entry for date-time field in the log file is not correct.
    06/02/2013 20:00:02 NIGHTLY_JOB Begin
    It is using EST time ( e.g.- 20:00:00 PM ) but the job is running at timezone Europe/VIENNA
    the file modifcation time is OK, when we check it with ls command ( it gives time near to 2:00 AM)
    -rw-r--r-- 1 oracle asmadmin 3494 Feb 7 02:36 NIGHTLY_JOB.log
    could you please suggest what could be wrong?
    Oracle release is 11.2.0.2

    hi,
    Can you , paste the o/p of
    select * from NLS_DATABASE_PARAMETERS;Thanks,
    Ajay More
    http://www.moreajays.com

  • Daylight savings time issue with iphone

    When syncing iphone to pc (Vista) and Microsoft Outlook 2007, the time on the iPhone is one hour LATER that it is on the computer source.
    It seems that, once again, Apple and Microsoft are at odds with each other and the new rules on Daylight Savings time were never considered.
    Anybody have ideas? Seen this? There is NOTHING on the Apple website (also typical!!).

    This seems like it might be similar to the problem I was having. Please see the following thread for the solution:
    http://discussions.apple.com/thread.jspa?threadID=1791145&tstart=0
    It worked for me, give it a shot.

  • Time issue with iphone 5c?

    after upgrading to 7.0.3 our 5c quits keeping time when the autolock is used when unlocked time starts but is behind. Anyone else seen this or have suggestions.?

    Very same thing here. Iphone 5C on 7.0.2 from tmobile in NC.
    time is frozen when auto lock is engage. Both manual and automatic settings failed to help.
    Tried the LTE trick, tried the reset network trick...

  • Time issues with planning

    So, where I work I get my roster mailed to me every week. What I like to do is click on that time and date and make it an activity in my agenda, but when the time goes beyond 12 pm it still somehow doubles it's count within the 24 hour cycle.
    For example, when i have to work from 23:30 to 6:30 it will say from 23:30 to 18:30.
    Except for me being able to fix this manually each time I don't know to how to fix this.
    Hopefully someone will be abke to help me out here.
    Thanks in advance,

    Hi,
    Can you check OS COLLECTOR (SAPOSCOL) status in ST06 T-code.
    Also check for SM21 relate logs and Canceled jobs in SM37, data based jobs scheduled in DB13 T-code.
    Also possible any logs/Tablespaces/Files full in SAP.
    Regards
    Nagaraju

  • TS4185 Face Time issue with iPhone5?

    Using Face Time call from an iPad2 to my iPhon5 doesn't work.  Apple IDs are different and checked on both Face Time settings. But both the iPad2 and iPhone5 can face time to an iPhone 4s. Why? 

    Post in the Facetime for Mac community

  • Issues with installing simple games...

    *This is what I get when I am almost finish installing the game*
    The Installation Finished With Errors
    Check the installation log at /Users/admin/Library/Logs/Install_YoudaSushiChef log for more details.
    *This is what I get when I go to my Log*
    Installation started on 2009-07-17 06:14:07 -0500
    Install_YoudaSushiChef
    Error installing "YoudaSushiChef.app" to "/Applications".
    Error = Creating directory at "/Applications/YoudaSushiChef.app" failed.
    Error installing "helper" to "/Applications/YoudaSushiChef.app/Contents/MacOS".
    Error = Could not create directory /Applications/YoudaSushiChef.app".
    Installation finished on 2009-07-17 06:16:16 -0500
    what do I do, any game I download it says the same thing...
    Message was edited by: mac email

    Are you doing this as an admin account? Non-admin users do not have write permissions to the Applications directory. The installer should be prompting you for a password, so you need to enter an admin password there.
    If not, does the installer have the option of changing the installation location? If it does, just make a games directory in your user directory and install to there - you have full read and write permissions over you home folder and it's subfolders, so it will be able to create the required directories.

  • RV220W System Time Issue in Combination with WiFi Active Time

    Hi
    Have system time issues with rv220w!
    Setup:
    Note that the real time is 17.32 (bottom right) but the system time is 16.20, result 1h offset (sad that the possibility to configure summertime start/end is missing)
    Setting up the WiFi active time from 5.30PM until 6PM (testing only):
    Note that the real time is 17.44, the WiFi is "Disabled". The RV220W system time is 16.44 with setting "CET +1h".
    BUT:
    Even when i change the RV220W system time to a Time/Date offset GMT +2h EET has this no issue to the WiFi time profile i set up. The WiFi stay down.
    Note:
    The WiFi Active Time Settings only working correct when the Clock Source is setting up with "Set Date and Time Manually" (in "Administration" "Time Settings"), but that is not the way.... i don't like to configure time settings manually (no system administrator will do that tinking)
    Conclusion:
    I think that the WiFi Time setting does not work fine, mean that the WiFi does not include the configured offset as usually system does....
    Further:
    RV220W firmware is up to date....
    Hope Cisco will fix that and add the summer time feature (like in other systems and other manufacturer) in the next FW.....

    GJinAmsterdam wrote:
    I have a MacBook upgraded from Tiger 10.4 to *Snow Leopard OS X 10.6.1.* I'm now using *Time Machine* to make back-ups on a *MiniMax external drive* through an USB connection. However, I wish to make wireless back-ups by connecting the external drive to my *Airport Extreme*. I learned that this wasn't possible until the recent release by Apple of the software update "*About Time Machine and AirPort Updates v1.0*".
    this has been possible for a long time, since about February 2008 when those updates came out.
    The minimum system requirement for this software update is OS X 10.5.2. I should think this requirement is met because I have upgraded to 10.6.1. But when I try to install the software I get the message that the system requirement is at least 10.5.2. and as a result *I can't continue installing*. Apparently my OS update is not recognized by the software. Is there a solution for this problem? Many thanks.
    you don't need to install those updates. they are for leopard, not snow leopard. you should be fine as is. do keep in mind that TM backups to air disks are not "officially" supported but they have worked for a long time. also, keep in midn that you'll need to start a new backup sequence once you move the drive to AEBS as remote backups are stored differently from directly attached ones.

  • I'm experiencing 2 issues with a site I'm working on that I can't figure out...

    I'm developing a site for a local 5-star restaurant, and I'm almost done with the development. Unfortunately, I'm a lot better at design then coding, and I have a couple of problems that I have not found solutions to.
    If you have a few minutes, I'd love some advice on how to fix these. They are confusing me a lot...
    1) My pages have a footer that attached to the bottom of the content of the page. On pages that end with tables, there's space between the content and the footer. On pages without tables, it looks fine. Examples:
    Broken:
    [1] http://www.dorseygraphics.com/review/wclg/site_05/winelist.html
    Not broken:
    [2] http://www.dorseygraphics.com/review/wclg/site_05/contact.html
    2) My background image contains some complex elements that overlap (like vines overlapping the content area just a bit on either side). the client LOVES this, so it's not an option to remove. My background is currently a large PNG that easily takes care of the overlapping issue with a simple BG image. But it runs out at the bottom of the page, and some of the pages have content that it too tall for the background.
    Example:
    [3] http://www.dorseygraphics.com/review/wclg/site_05/reviews.html
    How would you go about solving this problem? I'm thinking the easiest way is to add a new containing DIV and use it to extend the content area down, but that would mess up the header (I think). I'm confused.

    1) My pages have a footer that attached to the bottom of the content of the page. On pages that end with tables, there's space between the content and the footer. On pages without tables, it looks fine. Examples:
    Broken:
    [1] http://www.dorseygraphics.com/review/wclg/site_05/winelist.html
    Not broken:
    [2] http://www.dorseygraphics.com/review/wclg/site_05/contact.html
    The problem here is the background image.  Do you have the image without the beige background in the center?  If so what you need to do is leave the background of the body as the URL to the image (without the beige in the center), no-repeat, and leave the color as you have.  Then move the lighter beige color background to the container with the navigation and content.
    2) My background image contains some complex elements that overlap (like vines overlapping the content area just a bit on either side). the client LOVES this, so it's not an option to remove. My background is currently a large PNG that easily takes care of the overlapping issue with a simple BG image. But it runs out at the bottom of the page, and some of the pages have content that it too tall for the background.
    Example:
    [3] http://www.dorseygraphics.com/review/wclg/site_05/reviews.html
    How would you go about solving this problem? I'm thinking the easiest way is to add a new containing DIV and use it to extend the content area down, but that would mess up the header (I think). I'm confused.
    If you look at my above answer I don't think this is a huge problem.  In CSS3 (Safari, Firefox, Chrome, IE9) you can have multiple background images, one static and one repeating in your case.  However, older browsers will not see this, most notably IE 8 and earlier.  You could put the initial image in one layer and make the body background a repeating image but you run the risk of the layers not aligning. 
    Another alternative is to set the max-height of the content container and then set the overflow attribute to scroll in the CSS (overflow: scroll;).  That would make the content container scroll independantly from the page.
    A final alternative would be to discuss the pages with the client again.  For instance with the wine list there are different types of wines.  You could have nested tabbed panels, or you could make a page for each wine type sparkling/white, red, etc. and then have tabbed panels underneath to make the lists shorter.  Otherwise the "Significant Others" or "Riesling" get lost at the bottom of the page, regardless of your background, and users do not know those wines are offered.

  • Time issue seems odd to me

    I put a secondary domain and po at a remote location - running 8.03 on Sles/Oes and moved all of the "local" users to that po.
    while everything seems to run ok we have a weird time issue.
    Mail into and out of the new mailboxes shows a three and a half hour time difference both in the date column in the groupwise client and in the printed header of the email.
    The odd thing is that if I go to the properties of the email - the Creation date and the File date and time are both correct.
    I can't see any time issues with the servers (primary or secondary) and especially something that would be 3:30 minutes off
    there is a timezone difference between the pri and sec but that's just 1 hour.
    Any thoughts?
    As a workaround I have had my users add the creation column to see when they actually received the email as our clients have time critical projects.
    Thanks
    Dennis

    Danita,
    Thanks for the reply - Oh how I wish it were that easy - I've checked and double checked the PO object and the domain object - both say US eastern time.
    If I send email from a mailbox on the secondary to the primary - everything is correct (a 1 hour time difference - Eastern to Central)
    If I send mail from a mailbox on the primary to the secondary - it shows up right away, but says 3:30 minutes later than it should (in Date/Time, but not in Created)
    If I send email from a mailbox on the secondary to a GMail account - the header shows the 3:30 offset, but the properties of the mail shows correctly.
    I would be happy to send email from that po to anyone that wants to see for themselves.
    Other than the PO Object and the DOM object - Where should I be looking for a time difference
    and how would it be getting UTC minus 30 minutes - - Is there a special timezone out there for Hy Brasil?
    The workstations all get their time settings from "time.windows.com" the windows default.
    Thanks for looking into this - I just hope that I can get it figured out because as small of an issue that I think it is (they get their email, it just looks like it gets read before they officially receive it)
    but it seems that this office uses the received time to track how long it takes them to do their work.
    Dennis

Maybe you are looking for

  • Create txt file at runtime

    I'm working on a biological database. People see the data via jsp pages. Now at runtime a very long string is created depending on the needs of the user. This data is derived from different tables and the output string can be up to 5000 characters. N

  • Problem with logon ticket on a cluster J2EE environment.

    Hi Experts, We have a Portal system with one J2EE node running which issues logon ticket to do SSO into our R/3 4.6 system. After we added another node into the J2EE cluster on another machine, we have problem SSO into our R/3 system if you login to

  • Transferring old emails from old iMac to new iMac

    I've just gotten a new intel Imac (10.6.6). Can anyone point me in the direction of instructions on how I can get the emails off my old iMac's (10.4) hard-drive and into the new iMac's mailboxes? On a related topic, anyone know how I can retrieve the

  • Mapping to trim all columns

    Hi All, I am wondering if you have any recommendation on how to do data scrubbing (trimming, data conversion, etc) in owb mapping? For example, I would like to TRIM all the columns (say 200 of them) in a source table and move them to target table. Cu

  • Mass processing for printing shopfloor papers

    When I press background  processing for printing shopfloor papers  in COHV then I get message background  processing triggered but no print comes out of printer. Where to see result of background  processing. In COHV log is also empty. My requirement