Different Database Behavior for UAT and PRO in same DB

Hi All,
The UAT and Production Documentum schemas reside in the same database instance referring to different applications.
Problem is when I run the same query to production it send me result in a second but in UAT it takes for ever and also its shows the different plan if do explain in UAT and PRO.
OS windows 64Bit
DB 10.2.0.3
There is frequent, automated data load.
The indexes are rebuilt every other day.
SQL on UAT
select all dm_folder.r_object_id, dm_folder.object_name, dm_repeating.i_folder_id, dm_repeating.r_folder_path from dm_folder_sp dm_folder, dm_folder_rp dm_repeating where (dm_folder.r_object_id in (select all dm_repeating.i_ancestor_id from dm_folder_sp dm_folder, dm_folder_rp dm_repeating where ((dm_folder.r_object_id='0b01b3f18000b897') and (dm_folder.a_is_hidden=0)) and (dm_folder.i_has_folder = 1 and dm_folder.i_is_deleted = 0) and dm_repeating.r_object_id=dm_folder.r_object_id )) and (dm_folder.i_has_folder = 1 and dm_folder.i_is_deleted = 0) and dm_repeating.r_object_id=dm_folder.r_object_id order by dm_folder.r_object_id
Explain Plan on UAT
This sql ran forever. An execution plan was gotten for the SQL. Note the MERGE JOIN CARTESIAN with 404 million rows and 34 GB of data highlighted in red.
Execution Plan
Plan hash value: 1131176958
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 1 | 132 | 21M (1)| 70:20:41 |
| 1 | NESTED LOOPS SEMI | | 1 | 132 | 21M (1)| 70:20:41 |
| 2 | NESTED LOOPS | | 15087 | 1723K| 21M (1)| 70:08:37 |
| 3 | MERGE JOIN CARTESIAN | | 404M| 34G| 802K (1)| 02:40:32 |
| 4 | NESTED LOOPS | | 9854 | 606K| 382 (1)| 00:00:05 |
|* 5 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_S | 22358 | 1026K| 381 (1)| 00:00:05 |
| 6 | INDEX FULL SCAN | D_1F01B3F180000109 | 26813 | | 5 (0)| 00:00:01 |
|* 7 | INDEX UNIQUE SCAN | D_1F01B3F180000143 | 1 | 16 | 1 (0)| 00:00:01 |
| 8 | BUFFER SORT | | 41065 | 1162K| 802K (1)| 02:40:32 |
| 9 | TABLE ACCESS FULL | DM_FOLDER_R | 41065 | 1162K| 81 (0)| 00:00:01 |
| 10 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_R | 1 | 25 | 1 (0)| 00:00:01 |
|* 11 | INDEX UNIQUE SCAN | D_1F01B3F18000010A | 1 | | 1 (0)| 00:00:01 |
|* 12 | VIEW | VW_NSO_1 | 1 | 15 | 4 (0)| 00:00:01 |
| 13 | NESTED LOOPS | | 2 | 190 | 4 (0)| 00:00:01 |
| 14 | NESTED LOOPS | | 4 | 304 | 3 (0)| 00:00:01 |
| 15 | NESTED LOOPS | | 1 | 42 | 2 (0)| 00:00:01 |
|* 16 | INDEX UNIQUE SCAN | D_1F01B3F180000143 | 1 | 16 | 1 (0)| 00:00:01 |
|* 17 | TABLE ACCESS BY INDEX ROWID| DM_SYSOBJECT_S | 1 | 26 | 1 (0)| 00:00:01 |
|* 18 | INDEX UNIQUE SCAN | D_1F01B3F180000109 | 1 | | 1 (0)| 00:00:01 |
| 19 | TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 4 | 136 | 1 (0)| 00:00:01 |
|* 20 | INDEX RANGE SCAN | DM_FOLDER_R_IND_UT | 4 | | 1 (0)| 00:00:01 |
|* 21 | INDEX UNIQUE SCAN | D_1F01B3F18000010A | 1 | 19 | 1 (0)| 00:00:01 |
Predicate Information (identified by operation id):
5 - filter("YB_"."I_HAS_FOLDER"=1 AND "YB_"."I_IS_DELETED"=0)
7 - access("YB_"."R_OBJECT_ID"="OG_"."R_OBJECT_ID")
11 - access("ZB_"."R_OBJECT_ID"="PG_"."R_OBJECT_ID" AND
"ZB_"."I_POSITION"="PG_"."I_POSITION")
filter("ZB_"."R_OBJECT_ID"="YB_"."R_OBJECT_ID")
12 - filter("YB_"."R_OBJECT_ID"="$nso_col_1")
16 - access("OG_"."R_OBJECT_ID"='0b01b3f18000b897')
17 - filter("YB_"."I_HAS_FOLDER"=1 AND "YB_"."I_IS_DELETED"=0 AND "YB_"."A_IS_HIDDEN"=0)
18 - access("YB_"."R_OBJECT_ID"='0b01b3f18000b897')
20 - access("PG_"."R_OBJECT_ID"='0b01b3f18000b897')
21 - access("ZB_"."R_OBJECT_ID"='0b01b3f18000b897' AND "ZB_"."I_POSITION"="PG_"."I_POSITION")
SQL on Production
The following sql was run through sqlplus on production. It is identical to the one run on UAT with the exception that a different r_object_id is used.
select all dm_folder.r_object_id, dm_folder.object_name, dm_repeating.i_folder_id, dm_repeating.r_folder_path from dm_folder_sp dm_folder, dm_folder_rp dm_repeating where (dm_folder.r_object_id in (select all dm_repeating.i_ancestor_id from dm_folder_sp dm_folder, dm_folder_rp dm_repeating where ((dm_folder.r_object_id='0b01b3f080011726') and (dm_folder.a_is_hidden=0)) and (dm_folder.i_has_folder = 1 and dm_folder.i_is_deleted = 0) and dm_repeating.r_object_id=dm_folder.r_object_id )) and (dm_folder.i_has_folder = 1 and dm_folder.i_is_deleted = 0) and dm_repeating.r_object_id=dm_folder.r_object_id order by dm_folder.r_object_id
Explain Plan on Production
This query ran very quickly. The query plan does not contain a MERGE JOIN CARTESIAN.
Execution Plan
Plan hash value: 3553258581
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 5 | 650 | 10 (20)| 00:00:01 |
| 1 | SORT ORDER BY | | 5 | 650 | 10 (20)| 00:00:01 |
| 2 | NESTED LOOPS | | 5 | 650 | 9 (12)| 00:00:01 |
| 3 | NESTED LOOPS | | 9 | 936 | 8 (13)| 00:00:01 |
| 4 | NESTED LOOPS | | 3 | 234 | 7 (15)| 00:00:01 |
| 5 | NESTED LOOPS | | 3 | 186 | 6 (17)| 00:00:01 |
| 6 | VIEW | VW_NSO_1 | 3 | 48 | 4 (0)| 00:00:01 |
| 7 | HASH UNIQUE | | 3 | 279 | | |
| 8 | NESTED LOOPS | | 3 | 279 | 4 (0)| 00:00:01 |
| 9 | NESTED LOOPS | | 5 | 365 | 3 (0)| 00:00:01 |
| 10 | NESTED LOOPS | | 1 | 38 | 2 (0)| 00:00:01 |
|* 11| INDEX UNIQUE SCAN | D_1F01B3F080000143 | 1 | 16 | 1 (0)| 00:00:01 |
|* 12| TABLE ACCESS BY INDEX ROWID| DM_SYSOBJECT_S | 1 | 22 | 1 (0)| 00:00:01 |
|* 13| INDEX UNIQUE SCAN | D_1F01B3F080000109 | 1 | | 1 (0)| 00:00:01 |
| 14| TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 5 | 175 | 1 (0)| 00:00:01 |
|* 15| INDEX RANGE SCAN | DM_FOLDER_R_IND | 5 | | 1 (0)| 00:00:01 |
|* 16| INDEX UNIQUE SCAN | D_1F01B3F08000010A | 1 | 20 | 1 (0)| 00:00:01 |
|* 17| TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_S | 1 | 46 | 1 (0)| 00:00:01 |
|* 18| INDEX UNIQUE SCAN | D_1F01B3F080000109 | 1 | | 1 (0)| 00:00:01 |
|* 19| INDEX UNIQUE SCAN | D_1F01B3F080000143 | 1 | 16 | 1 (0)| 00:00:01 |
| 20| TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_R | 3 | 78 | 1 (0)| 00:00:01 |
|* 21| INDEX RANGE SCAN | D_1F01B3F08000010A | 3 | | 1 (0)| 00:00:01 |
| 22| TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 1 | 26 | 1 (0)| 00:00:01 |
|* 23| INDEX UNIQUE SCAN | D_1F01B3F080000144 | 1 | | 1 (0)| 00:00:01 |
Predicate Information (identified by operation id):
11 - access("TGB_"."R_OBJECT_ID"='0b01b3f080011726')
12 - filter("GJ_"."A_IS_HIDDEN"=0 AND "GJ_"."I_HAS_FOLDER"=1 AND "GJ_"."I_IS_DELETED"=0)
13 - access("GJ_"."R_OBJECT_ID"='0b01b3f080011726')
15 - access("VGB_"."R_OBJECT_ID"='0b01b3f080011726')
16 - access("IJ_"."R_OBJECT_ID"='0b01b3f080011726' AND "IJ_"."I_POSITION"="VGB_"."I_POSITION")
17 - filter("GJ_"."I_HAS_FOLDER"=1 AND "GJ_"."I_IS_DELETED"=0)
18 - access("GJ_"."R_OBJECT_ID"="$nso_col_1")
19 - access("GJ_"."R_OBJECT_ID"="TGB_"."R_OBJECT_ID")
21 - access("IJ_"."R_OBJECT_ID"="GJ_"."R_OBJECT_ID")
23 - access("IJ_"."R_OBJECT_ID"="VGB_"."R_OBJECT_ID" AND "IJ_"."I_POSITION"="VGB_"."I_POSITION")
Message was edited by:
user624068

I am gathering the statistics for the full database statement is .
execute dbms_stats.gather_database_stats(ESTIMATE_PERCENT => 99, CASCADE => TRUE)
I tried to gather the stats on schema but no effect.
No of indexes are same in UAT and Pro.
I am still confuse if we have less data do it change the plan and if it did it should be faster.
Thats the max it got format. is there any other way i can format that or send u.
Execution Plan
Plan hash value: 3842135587
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 3 | 384 | 14M (1)| 47:28:20 |
| 1 | NESTED LOOPS SEMI | | 3 | 384 | 14M (1)| 47:28:20 |
| 2 | NESTED LOOPS | | 10269 | 1133K| 14M (1)| 47:20:08 |
| 3 | MERGE JOIN CARTESIAN | | 273M| 22G| 541K (1)| 01:48:20 |
| 4 | NESTED LOOPS | | 6648 | 383K| 412 (0)| 00:00:05 |
|* 5 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_S | 6648 | 279K| 411 (0)| 00:00:05 |
| 6 | INDEX FULL SCAN | D_1F01B3F180000109 | 26592 | | 5 (0)| 00:00:01 |
|* 7 | INDEX UNIQUE SCAN | D_1F01B3F180000143 | 1 | 16 | 1 (0)| 00:00:01 |
| 8 | BUFFER SORT | | 41076 | 1163K| 541K (1)| 01:48:20 |
| 9 | TABLE ACCESS FULL | DM_FOLDER_R | 41076 | 1163K| 81 (0)| 00:00:01 |
| 10 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_R | 1 | 25 | 1 (0)| 00:00:01 |
|* 11 | INDEX UNIQUE SCAN | D_1F01B3F18000010A | 1 | | 1 (0)| 00:00:01 |
|* 12 | VIEW | VW_NSO_1 | 1 | 15 | 4 (0)| 00:00:01 |
| 13 | NESTED LOOPS | | 2 | 182 | 4 (0)| 00:00:01 |
| 14 | NESTED LOOPS | | 4 | 288 | 3 (0)| 00:00:01 |
| 15 | NESTED LOOPS | | 1 | 38 | 2 (0)| 00:00:01 |
|* 16 | INDEX UNIQUE SCAN | D_1F01B3F180000143 | 1 | 16 | 1 (0)| 00:00:01 |
|* 17 | TABLE ACCESS BY INDEX ROWID| DM_SYSOBJECT_S | 1 | 22 | 1 (0)| 00:00:01 |
|* 18 | INDEX UNIQUE SCAN | D_1F01B3F180000109 | 1 | | 1 (0)| 00:00:01 |
| 19 | TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 4 | 136 | 1 (0)| 00:00:01 |
|* 20 | INDEX RANGE SCAN | D_1F01B3F180000144 | 4 | | 1 (0)| 00:00:01 |
|* 21 | INDEX UNIQUE SCAN | D_1F01B3F18000010A | 1 | 19 | 1 (0)| 00:00:01 |
Predicate Information (identified by operation id):
5 - filter("RG_"."I_HAS_FOLDER"=1 AND "RG_"."I_IS_DELETED"=0)
7 - access("RG_"."R_OBJECT_ID"="WQ_"."R_OBJECT_ID")
11 - access("SG_"."R_OBJECT_ID"="XQ_"."R_OBJECT_ID" AND
"SG_"."I_POSITION"="XQ_"."I_POSITION")
filter("SG_"."R_OBJECT_ID"="RG_"."R_OBJECT_ID")
12 - filter("RG_"."R_OBJECT_ID"="$nso_col_1")
16 - access("WQ_"."R_OBJECT_ID"='0b01b3f18000b897')
17 - filter("RG_"."A_IS_HIDDEN"=0 AND "RG_"."I_HAS_FOLDER"=1 AND "RG_"."I_IS_DELETED"=0)
18 - access("RG_"."R_OBJECT_ID"='0b01b3f18000b897')
20 - access("XQ_"."R_OBJECT_ID"='0b01b3f18000b897')
21 - access("SG_"."R_OBJECT_ID"='0b01b3f18000b897' AND "SG_"."I_POSITION"="XQ_"."I_POSITION")
Production Explan
Execution Plan
Plan hash value: 3553258581
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 5 | 650 | 10 (20)| 00:00:01 |
| 1 | SORT ORDER BY | | 5 | 650 | 10 (20)| 00:00:01 |
| 2 | NESTED LOOPS | | 5 | 650 | 9 (12)| 00:00:01 |
| 3 | NESTED LOOPS | | 9 | 936 | 8 (13)| 00:00:01 |
| 4 | NESTED LOOPS | | 3 | 234 | 7 (15)| 00:00:01 |
| 5 | NESTED LOOPS | | 3 | 186 | 6 (17)| 00:00:01 |
| 6 | VIEW | VW_NSO_1 | 3 | 48 | 4 (0)| 00:00:01 |
| 7 | HASH UNIQUE | | 3 | 279 | | |
| 8 | NESTED LOOPS | | 3 | 279 | 4 (0)| 00:00:01 |
| 9 | NESTED LOOPS | | 5 | 365 | 3 (0)| 00:00:01 |
| 10 | NESTED LOOPS | | 1 | 38 | 2 (0)| 00:00:01 |
|* 11 | INDEX UNIQUE SCAN | D_1F01B3F080000143 | 1 | 16 | 1 (0)| 00:00:01 |
|* 12 | TABLE ACCESS BY INDEX ROWID| DM_SYSOBJECT_S | 1 | 22 | 1 (0)| 00:00:01 |
|* 13 | INDEX UNIQUE SCAN | D_1F01B3F080000109 | 1 | | 1 (0)| 00:00:01 |
| 14 | TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 5 | 175 | 1 (0)| 00:00:01 |
|* 15 | INDEX RANGE SCAN | DM_FOLDER_R_IND | 5 | | 1 (0)| 00:00:01 |
|* 16 | INDEX UNIQUE SCAN | D_1F01B3F08000010A | 1 | 20 | 1 (0)| 00:00:01 |
|* 17 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_S | 1 | 46 | 1 (0)| 00:00:01 |
|* 18 | INDEX UNIQUE SCAN | D_1F01B3F080000109 | 1 | | 1 (0)| 00:00:01 |
|* 19 | INDEX UNIQUE SCAN | D_1F01B3F080000143 | 1 | 16 | 1 (0)| 00:00:01 |
| 20 | TABLE ACCESS BY INDEX ROWID | DM_SYSOBJECT_R | 3 | 78 | 1 (0)| 00:00:01 |
|* 21 | INDEX RANGE SCAN | D_1F01B3F08000010A | 3 | | 1 (0)| 00:00:01 |
| 22 | TABLE ACCESS BY INDEX ROWID | DM_FOLDER_R | 1 | 26 | 1 (0)| 00:00:01 |
|* 23 | INDEX UNIQUE SCAN | D_1F01B3F080000144 | 1 | | 1 (0)| 00:00:01 |
Predicate Information (identified by operation id):
11 - access("TGB_"."R_OBJECT_ID"='0b01b3f080011726')
12 - filter("GJ_"."A_IS_HIDDEN"=0 AND "GJ_"."I_HAS_FOLDER"=1 AND "GJ_"."I_IS_DELETED"=0)
13 - access("GJ_"."R_OBJECT_ID"='0b01b3f080011726')
15 - access("VGB_"."R_OBJECT_ID"='0b01b3f080011726')
16 - access("IJ_"."R_OBJECT_ID"='0b01b3f080011726' AND "IJ_"."I_POSITION"="VGB_"."I_POSITION")
17 - filter("GJ_"."I_HAS_FOLDER"=1 AND "GJ_"."I_IS_DELETED"=0)
18 - access("GJ_"."R_OBJECT_ID"="$nso_col_1")
19 - access("GJ_"."R_OBJECT_ID"="TGB_"."R_OBJECT_ID")
21 - access("IJ_"."R_OBJECT_ID"="GJ_"."R_OBJECT_ID")
23 - access("IJ_"."R_OBJECT_ID"="VGB_"."R_OBJECT_ID" AND "IJ_"."I_POSITION"="VGB_"."I_POSITION")
Message was edited by:
user624068

Similar Messages

  • Different Ringtone Notifications for Text and Email

    I would like to assign different ringtone notifications for texting and email, and if possible, different ringtones for each of my two email accounts.  I need to see texts immediately, but not emails.  Am picking up the phone 50 times a day so I don't miss a text, critical to my work. Could do this on Bb Storm, but can't figure out on Incredible.  At a minimum, I would like to shutoff notification for email, and just get pinged for texts.  Thanks!!

    valniemiec wrote:
    I would like to assign different ringtone notifications for texting and email, and if possible, different ringtones for each of my two email accounts.  I need to see texts immediately, but not emails.  Am picking up the phone 50 times a day so I don't miss a text, critical to my work. Could do this on Bb Storm, but can't figure out on Incredible.  At a minimum, I would like to shutoff notification for email, and just get pinged for texts.  Thanks!!
    Well, 
    The default notification tone that you set in the Settings->Sound is for the default tone in the generic e-mail account and all other notifications.  If you use the Gmail client, you can set your own personal ringtone in it's settings (Menu->Settings).  In the messaging Application you can also set a custom notification sound from there as well (Menu->Settings)
    As for different e-mail accounts using the same e-mail application, I don't think that is possible with the in stock app...tho I am not totally sure I haven't use it like that before.
    Hope that helps!

  • How do I have 1 apple id for the family to use in the iTunes and app store and a different apple id for iCloud and FaceTime and imessages

    how do I have 1 apple id for the family to use in the iTunes and app store and a different apple id for iCloud and FaceTime and imessages?

    See also Using your Apple ID for Apple services
    specifically the section "Using one Apple ID for iCloud and a different Apple ID for Store Purchases".

  • My husband and I share an iTunes account. We both just got iPads. How can we program them to have different phone numbers for FaceTime and messages

    My husband and I share an iTunes account. We both just got iPads. How can we program them to have different phone numbers for FaceTime and messages

    Use different email address (gmail?) just for FaceTime and Messages.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • HT5622 How do I change the Apple id against a certain telephone number?  I have two iPhones and wish to use a different Apple id for each and confused as to how I do this?

    How do I change the Apple id against a certain telephone number?  I have two iPhones and wish to use a different Apple id for each and confused as to how I do this?

    Create a new Apple ID for the second phone. If you are setting the phones up as new phone enter the ID you want to use on each phone.
    If both phones are already signed in to one Apple ID then use the settings app to change Apple IDs on one phone.
    Settings > iTunes and App Store > tap on the Apple ID > sign out > sign in with alternate Apple ID.
    Note that if you have downloaded apps with the original Apple ID on the phone with the new Apple ID, those apps will still be associated with the old Apple ID and will require the old ID and password in order to update them.

  • How can i use 2 different apple ids for imessage and facetime on 1 ipad?

    How can i use 2 different apple ids for imessage and facetime on 1 ipad?

    Do you mean can you use one Apple ID for FaceTime and one for iMessage? You should be able to. Or, do you mean, can you log into iMessage (or FaceTime) with two Apple IDs at once? No.

  • Different Document types for Reciepts and payment-Cash Journal

    Hi Gurus,
    Please tell me how can we make different document types for reciepts and payments in cash journal and where we need to assign it??
    Please revert asap.
    Thank You

    Hi
    While posting the transactions by using FBCJ T.Code u can select the Receipts or Payments or Expenses then the documents will be genereted.  FBCJ02 is the T.Code for no.range there u can assign the no.range intervels.
    Shammi

  • PCUI - Different Text type for Accounts and Contact Persons

    Hi All,
    While configuring the Text Determination, how can we have different determination procedures for Accounts and Contacts. On the CRM back end side there is no distinction on the objtect type for account & contacts. Instead there is one for BP.
    We defined a Text Det Proc for Object BUT000 (Business Partners) which gives us the same text types in both accounts and contact person screens in PCUI. But we want different text types. Can any one please advise.
    Thanks in advance,
    Raj K

    Hello All,
    Any suggestions in this matter would be greatly appreciated. Thanks,
    Raj Kasa

  • How to auto-detect a baud rate on UART or Serial port. and how to handle different baud rates for Transmission and Reception

    Hi,
    Till now i have used only single baud rate for opening a port, writing some stuff and reading back from other end.  This time requirement is little different, can SerialPort class
    be used to have different baud rates for Tx and Rx, I have not seen that in the msdn, but any other ideas also welcome!!!. I am experimenting!!!

    When I look in the Info.plist file for the AppleUSBCDCDriver kext, which is what the driver should be for a USB modem, there are three driver personalities listed: DeviceClass = 2, DeviceProtocol = 0, DeviceSubClass = 0; DeviceClass = 2, DeviceProtocol = 0, DeviceSubClass = 2; DeviceClass = 2, DeviceProtocol = 1, DeviceSubClass = 2. When I look at the info for the Phone with USB Prober, the class, protocol and subclass are all 0 and it is assigned to the AppleUSBComposite driver which appears to be a default when it doesn't know what else to use.
    Does that information come from the phone or is it assigned by the Mac? I'm wondering if the Mac doesn't recognize the phone and is assigning default values, or if the phone is responding with the wrong values causing it not to be assigned to the right driver. Are there other USB utilities out there which could possibly configure the phone's USB port to identify itself correctly?

  • Difficult with different coding masks for operative and std templates.

    Hi Experts
    I have below coding masks
    OP-XXXX-XX-XX For operative structures (not allowed for std templates)
    ST-XXXX-XX-XX For std tempplates (not allowed for operative structures)
    But i am unable to create operative project using std template.
    I have disabled Lck for std mask and tried, then i could create project but the operative project got created with WBS element's short id 'ST' and not with 'OP'
    How to ensure getting the right WBS id while copying from different standard coding mask?
    warm regards
    ramSiva

    Hi Ahmed
    I have gone through help, but i did not get any clue to make use different project IDs for std and operative.
    I am just looking for this to have dedicated structures for both std and operative, due to which one can easily recognise the nature by seeing the project id.
    Of course, it is very comfortable using unique project ID / coding mask for both. Still i am exploring. You may suggest if feasible.
    warm regards
    ramSiva

  • Is it possible to have different pricing procedure for SO  and invoice?

    Hi,
    Is it possible to have different pricing procedure for SO
    and invoice?

    Hi Kiran35086 
    --Yes you can have it.But it is based on the business requirement
    --Create 2 Document pricing procedures & assign one in VOV8 & another in VOFA
    --In Sales Document VOV8 you maintain different  document pricing procedure Ex A
    --Go to VOFA & select your billing document type in Account assignment/pricing assign the document pricing procedure.EX- B
    --Create condition records in VK11 for the condition types which are included in the pricing procedures
    --Maintain pricing procedure determination in OVKK with 2 different Document pricing procedure & save it
    --When you raise SO in VA01 you will find one pricing procedure & when you raise billing in VF01 you find another pricing procedure in conditions.
    Let me know if your problem is solved
    Regards
    Pradeep

  • Different material number for SD and for PP MM

    Hello
    Does sap provide a functionality to manage different material number for SD and for PP MM:
    We produce and stock material A . We want to be able to sell material A and B. For MM (stock)  and PP, B = A but for reglementation, we need to print on the delivery document  caracteristics stored at the material level.
    We don't want to substitute B by A on the sale document and we want that the stock of A beeing reduced by sales orders of A and B.
    Thanks
    Simon

    Simon,
    Iu2019m not aware of any way to manage the same thing using one material number in MM/PP and a different number in SD.
    What makes B different from A?  From your description it sounds like itu2019s the same thing with different characteristics.  Without more info itu2019s difficult to offer solutions to your problem but Iu2019d start by looking at classification and batch management so you can differentiate differences between materials based on characteristics captured at the batch level. 
    If you provide a little more info about the products perhaps I can help.

  • Different Bluetooth connections for phone and music streaming

    Can I have different Bluetooth connections for phone and music streaming functions on my 4s? If I can is there a way that the will automatically select (remember) the proper bluetooth receiver?

    TDMA interference, and is a type of RFI (Radio Frequency Interference) unique to GSM mobile phones. It affects all GSM mobile phones, but is not harmful to you or your electronics. It is just an audible indicator of network activity.
    GSM mobile phones generate this interference when they communicate with the cellular network. You don't need to be actively using the phone, as it constantly accessing the network to check signal strength, synchronize the clock, or perform other network-related tasks. The only way to stop this interference is to turn off the phone or its network capabilities. For example, by using Airplane Mode.

  • Use of different production versions for MRP and costing

    Dear PP Gurus ,
    We have a scenario in which there are multiple production versions for a particular product .The MRP run as welll as costing run considers only the production version 0001.
    We would like the system to consider different production versions for MRP and costing ..that is 0001 for MRP and 0005 for costing .
    Is this possible ... if yes ...Kindly suggest the config and master settings for this to happen .
    Ram ~

    Dear Ramakrishna,
    For doing the costing for a specific production version use CK11N,under quantity structure tab key you
    can assign the prod.version which is to be used for costing purpose.
    While taking MRP if you want to consider the particular Prod.version,assign the demand to the
    correct prod.version under schedule line tab in MD61.
    Otherwise the system always picksup the first prod.version for MRP.
    One more alternative is you have to lock the other prod.versions if you want the system to consider a
    particular prod.version.
    Check and revert back.
    Regards
    Mangalraj.S

  • Expdp with network_link and different character sets for source and target?

    DB versions 10.2 and 10.1
    Is there any limitation for implementing expdp with network_link but target and source have different character sets?
    I tried with many combinations, but only had success when target and source have the same character sets. In other combinations there was invalid character set conversion (loose of some characters in VARCHAR2 and CLOB fields).
    I didn't find anything on the internet, forums or Oracle documentation. There was only limitation for transportable tablespace mode export (Database Utilities).
    Thanks

    Hi DBA-One
    This link
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#CEGFCFFI
    is from Database Utilities 10g Release 2 (10.2) (I read it many times)
    There is only one thing about different character sets.
    I quote:
    Data Pump supports character set conversion for both direct path and external tables. Most of the restrictions that exist for character set conversions in the original Import utility do not apply to Data Pump. The one case in which character set conversions are not supported under the Data Pump is when using transportable tablespaces.
    Parameter VERSION also doesn't play role here, because the behaviour (character set) is the same if I use for target and source only 10.2 or (10.2 and 10.1) respectivly.

Maybe you are looking for

  • Trackpad is not working after Update to 10.8.3

    After updating to 10.8.3 I can not zoom anymore with the Trackpad

  • ITunes and Quicktime issue (Please Help)

    So last night I download the update for iTunes. Everything seemed to be going fine, I didn't have any problems. This morning I turn on my computer and try to run iTunes and it gives me an error message, an dwon't even open iTunes. Not only that, I ca

  • Backing up KM Folders via Portal Drive

    Hi Experts, We've implemented Netweaver Portal 7.0 with SP14 for a local company. Company migrated all shared folders from filesystem into KM via Portal Drive. Portal is running on a VMWARE machine with Linux OS. Followings are common questions, when

  • OAF Hello World Run Time errors

    Hi All, I was building the Hello world OA page as per the instruction given in developer guide and while i am running the page i am getting the error message like below. Any help would appreciate. Thanks, sAik Exception Details:- oracle.apps.fnd.fram

  • C6 - is it possible to make my phone anonymous to ...

    Hi, we have a C6 that my wife uses to call her patients (she is a GP). We want to be able to make the phone anonymous to them to prevent patients calling back directly. They have to call back to the landlines and reception staff log the calls. Thanks