need model of Oracle Designer data, for database roles

I use Oracle Designer 10.1.2.6 and must know where to find Descriptions of role for a module.

Here's my starting point of Designer-repository object Navigator,

bus units.PNG

These point here, so in the end, I want to get role responsibilities-> "ACADEMIC_DEPARTMENT" on the right.

Role description.PNG

I have looked at these tables, but can't find where to find these data.

SELECT * FROM sdd_folders app - applications

SELECT * from sdd_folder_members afm - cross between applications and files

SELECT * from sdd_folders fol - records

SELECT * from sdd_folder_members fms - cross between modules and files

SELECT * from sdd_mod gmd WHERE - modules

SELECT * from sdd_mun MCO - components module

SELECT * from sdd_mti mdt - table detail module uses

SELECT * from tab sdd_tab - tables

SELECT * DBI sdd_ite - data-bound items

SELECT * from sdd_col col - columns

FYI - the list I found in ci_business_units (role_responsibilities column) was just a list of roles, what I was trying to get the list of roles assigned to a module.

I found the roles assigned to a module here:

SELECT bnu.role_responsibilities

The BNU .ci_business_units [owner]

INNER JOIN [owner] .ci_module_business_units mbu ON mbu.business_unit_reference = bnu.irid

INNER JOIN [owner] .ci_modules mds ON mds.irid = mbu.module_reference AND mds.ivid = mbu.parent_ivid

Jr_version.is_latest_version@devel (bnu.ivid) = 1 WHERE

AND jr_version.is_latest_version@devel (mds.ivid) = 1

AND mds.short_name = UPPER ('& short_name')

2.1 ORDER

Tags: Oracle Development

Similar Questions

  • Modeler cannot export the DDL for databases Oracle (only work for DB2 databases).

    Hello

    First of all, I'm sorry for my English, I'm French.

    I'm new with Oracle tools. I have my database with the DataModeler deisgned.

    Before that I've got my schema versioning I could export the schema to DDL Server Oracle 12.

    But since I have version control with Subversion I can only export to DB2 databases (screenshot follows):

    Exporting to Oracle databases?

    Thank you.

    Well, unzip to the new directory doesn't mean a new facility because it is the same version and DM will use existing preferences - you must remove the directory with the preferences. For DM 4.0.2.840 this directory on my Win7 is:

    C:\Users\\AppData\Roaming\Oracle SQL Developer data Modeler\system4.0.2.840

    After starting DM you must check "System Data Type Directory" "preferences > Data Modeler" - it should be empty or point to the directory with valid files - defaultRDBMSSites.xml and types.xml.

    Posted the picture shows that these files are correct or not existing in the directory defined in your preferences

    Philippe

  • How to remove the EM Oracle Enterprise Manager for database component.

    We have a database that someone used in the past as repository EM grid. It is no longer in use. You are looking for documentation on how the drop. If anyone knows please give me with link to open the document Oracle.

    Oracle 11 g version 1 material.

    Thank you.

    I think that if you can't find the instructions on how to remove EM you can drop the user cleaning sysman repositiry owner then the database parameters of database associated with EM.

    I think that the starting point would be the EM (Grid Control) installation manual for your version of Oracle and platform.

    10g list installation manuals
    http://OTN.Oracle.com/pls/db102/drilldown?levelnum=2&toplevel=b31288&method=like&chapters=0&book=&wildcards=1&preference=&expand_all=&result_id=&verb=installing&Word=Enterprise+Manager#b31288

    HTH - Mark D Powell.

  • JKM Oracle compatible (Date of update) CDC

    Hi all, I'm trying to implement the CDC using the JKM compatible Oracle (Update Date) for a fairly simple interface (a source and a target table table). After that I did a normal load to the target (single record) table, I've implemented logging as shown below:


    (1) select the model for the Set of logging mode. Choose the JKM compatible Oracle (Date of update) and specified the column name (LAST_UPDATE_DT) of the source table for the UPDATE_DATE_COL_NAME option.
    (2) to activate the data store source for CDC (Change Data Capture-> add to the CDC)
    (3) start magazines for the data store (-> change data Capture log starting)
    (4) add a subscriber to the journal (change->-> Subscribe Subscriber Data Capture)
    (5) insert a new record in the source table with the timestamp that is appropriate for the LAST_UPDATE_DT
    (6) check the log data and ensure that the inserted record is here (right click Datastore and change data Capture, and data log). I can see the window of log data record.
    (7) create a copy of the interface above and check the logged data only to use data logging for the load of the CDC.

    I am now under this interface in simulation mode to see if the new record is taken up to be loaded and the question. It is not the case. Weird, considering that it appears in the log data. So I checked the query that is executed to select new records, and below is what I get, Column1 as the pharmacokinetics of the source table:
    insert /*+ APPEND */  into SCHEMA.I$_TARGET
         (
         COLUMN1,
         COLUMN2
         ,IND_UPDATE
         )
    select       
         SOURCE_CDC.COLUMN1,,
         SOURCE_CDC.COLUMN2,
         JRN_FLAG IND_UPDATE
    from     SCHEMA.JV$SOURCE_CDC SOURCE_CDC
    where     (1=1)
    And JRN_SUBSCRIBER = 'SUNOPSIS' /* AND JRN_DATE < sysdate */ 
    Execution of the select statement does not show the new record. Return of location and control of the definition of the view of $ J, JV$ SOURCE_CDC:
    CREATE OR REPLACE FORCE VIEW ETL_ASTG.JV$TRADER_CDC (JRN_FLAG, JRN_DATE, JRN_SUBSCRIBER, COLUMN1, COLUMN2) AS 
      select      
         decode(TARG.ROWID, null, 'D', 'I') JRN_FLAG,
         sysdate JRN_DATE, 
         JRN.COLUMN1, 
         JRN.COLUMN2
    from     
    (select JRN.COLUMN1 ,SUB.CDC_SUBSCRIBER, SUB.MAX_WINDOW_ID_INS, max(JRN.WINDOW_ID) WINDOW_ID
         from      SCHEMA.J$SOURCE_CDC    JRN,
                  SCHEMA.SNP_CDC_SUBS        SUB 
         where     SUB.CDC_SET_NAME     = 'MODEL_NAME'
         and      JRN.WINDOW_ID     > SUB.MIN_WINDOW_ID
         and       JRN.WINDOW_ID     <= SUB.MAX_WINDOW_ID_DEL
         group by     JRN.COLUMN1,SUB.CDC_SUBSCRIBER, SUB.MAX_WINDOW_ID_INS) JRN,
         SCHEMA.SOURCE_CDC TARG
    where JRN.COLUMN1     = TARG.COLUMN1(+)
    and not      (
                   TARG.ROWID is not null
                and     JRN.WINDOW_ID > JRN.MAX_WINDOW_ID_INS
                ); 
    I can say that the record is not be stalled because of the State LOG. WINDOW_ID < = SUB. MAX_WINDOW_ID_DEL. I don't know what does this condition but the LOG. WINDOW_ID = 28, SUB. MIN_WINDOW_ID = 26 and SUB. MAX_WINDOW_ID_DEL = 27.

    Any ideas on how to get this working?

    Hello
    After the start of your paper you must implement a packge (or manually perform these steps on the model in ODI) perform the following operations using the ODI tools:

    Extend the window (this resets the YVERT numbers in the table of subscriber you found)---> Subscriber Lock---> (< run="" interfaces="">)---> unlock subscribed---> Purge Journal

    Its hidden in the docs here:
    http://docs.Oracle.com/CD/E14571_01/integrate.1111/e12643/data_capture.htm#CFHIHJEE

    Here's excellent guide, I always refer people to that shows exactly how:

    http://soainfrastructure.blogspot.co.UK/2009/02/setting-up-Oracle-data-integrator-odi_15.html

    The guide explains how to configure ODI loop around and wait for the CDC more occur (using ODIWaitForLogData).
    Hope this helps
    Alastair

  • Oracle Designer Import - lack of application systems

    Hello

    I am trying to import an Oracle Designer data model in SQL Developer Data Model 3.0, I downloaded today. I think I have my connection to the repository Designer set up OK and I can choose activities unversioned. When I click on any of my application systems will be shown. The release of Oracle Designer is 9.0.4.6.19 and the DBMS is version 10.2.0.4. Any suggestions as to what I'm missing, greatly appreciated.

    Ian

    Hi Ian,

    We have released ai2. You can try import again. I hope that it will help now.

    Thank you
    Philippe

  • Dates for "Oracle Database 11g: Performance Tuning" exam

    Hello!

    Today Oracle posted the info on the new database Oracle 11 g Performance Tuning review required for new certification expertise:

    http://education.Oracle.com/pls/web_prod-PLQ-dad/db_pages.GetPage?page_id=41 & p_exam_id = 1Z0_054 #2

    It is said that pre-registration for the beta version review starts today, however, it does not say when the phase beta begins and ends. Anyone know?

    Thank you
    Marcus

    March 31, 2009 is the current provisional end date for the exam in beta 1Z1-054. This date is subject to change.

    Kind regards
    Brandye Barrington
    Certification Forum Moderator
    Manager certification program

  • 4.1.1 SDDM - importing Oracle Designer model

    Hello world

    I'm trying to import Oracle Designer model to replace Designer 10.1.

    To do this, I would like to use the latest version and I have this error with SDDM 4.1.1 when I try to import Oracle Model Designer:

    2015-06-30 14:48:28, 055 [main] INFO ApplicationView - Data Modeler Oracle SQL Developer 4.1.1.887

    2015-06-30 14:51:27, 635 [Thread 23] ERROR ODExtractionHandler - error when importing the repository Designer

    java.lang.ClassCastException: oracle.dbtools.crest.model.design.relational.TableView cannot be cast to oracle.dbtools.crest.model.design.relational.Table

    at oracle.dbtools.crest.imports.oracledesigner.relational.ODOView.initViewColumns(ODOView.java:458)

    at oracle.dbtools.crest.imports.oracledesigner.relational.ODOView.generate(ODOView.java:291)

    at oracle.dbtools.crest.imports.oracledesigner.ODExtractionHandler.generateDesign(ODExtractionHandler.java:593)

    to oracle.dbtools.crest.imports.oracledesigner.ODExtractionController$ Runner.run (ODExtractionController.java:154)

    at java.lang.Thread.run(Thread.java:745)

    I have exactly the same error with SDDM 4.1.0

    2015-06-30 14:02:41, 779 [main] INFO ApplicationView - Data Modeler Oracle SQL Developer 4.1.0.881

    2015-06-30 14:06:27, 514 [Thread-24] ERROR ODExtractionHandler - error when importing the repository Designer

    java.lang.ClassCastException: oracle.dbtools.crest.model.design.relational.TableView cannot be cast to oracle.dbtools.crest.model.design.relational.Table

    at oracle.dbtools.crest.imports.oracledesigner.relational.ODOView.initViewColumns(ODOView.java:445)

    at oracle.dbtools.crest.imports.oracledesigner.relational.ODOView.generate(ODOView.java:283)

    at oracle.dbtools.crest.imports.oracledesigner.ODExtractionHandler.generateDesign(ODExtractionHandler.java:593)

    to oracle.dbtools.crest.imports.oracledesigner.ODExtractionController$ Runner.run (ODExtractionController.java:154)

    at java.lang.Thread.run (Thread.java:745

    This error doesn't seem to appear in SDDM 4.0.3.

    Is there a regression? Or can I change something in the designer to avoid this error?

    Thanks for your help.

    Best regards

    Cédric

    Hi Cedric,

    Thanks for reporting this.  I connected a bug on this issue.

    It seems that this problem occurs whenever a view references another view.

    If the 4.0.3 version works for you, you probably better to stick with that until this problem is resolved.

    David

  • Need help with the design of database

    Hello!

    I would really appreciate help in the design of my database. I have a client that has one or more provisions of a certain type. These arrangements will have accounts associated with them. A customer has access to a number of accounts (accounts have a guy too) and when the customer has an arrangement, the arrangement will tell what types of accounts are related.

    Some kind of pattern here
    http://S8.PostImage.org/qcoiozcf9/Namnl_s.PNG

    There are business rules to calculate that represents a client has access to (access above). It is basically three queries involving several different tables (you can give accounts, being a parent etc client that allows you to Auditors that you have not really own). One or two of these queries would a NOT IN / NOT EXIST (if you give your account, you won't have access to yourself until you revoke this action). AccountsOnArrangements is a subset of access (indicated by ArrangementType/AccountType-relationship). So A arrangement has all accounts of type 1, 2 and 3 customer B has access.

    My question is, basically, how I should apply access and AccountsOnArrangements.
    I can access in a view, which runs three queries with Union all. I can also use a table that I maintain with the application code. I have experimented a view but the performance doesn't look too good. I might have a materialized for each of the 3 queries that access, or view materialized for the 3 union all, but I wonder how the performance of this one will be. AccountsOnArrangements could also be a view or a table that I will maintain.

    Is it normal to use views or use the code to insert and remove rows from these tables 'close' when a base line is modified?

    Does still make sense? I have a few problems even explain :)

    Published by: KarlTrumstedt on 22-Aug-2012 13:02

    Published by: KarlTrumstedt on 22-Aug-2012 13:02

    Published by: KarlTrumstedt on 22-Aug-2012 13:02

    Published by: KarlTrumstedt on 2012-Aug-22-15:11

    According to the needs described I did according to model

    [Customers]
    CustomerId PK
    ParentId FK to Customer.CustomerId
    
    [Accounts]
    AccointId PK
    CustomerId FK to Customer.CustomerId /*Owner*/
    AccountType
    (CustomerId,AccountType) UK
    
    [AccountsAccess]
    AccointId FK to Accoints.AccointId
    CustomerId FK to Customer.CustomerId
    
    [Arrangements]
    ArrangementId
    CustomerId
    AccountType
    (CustomerId,AccountType) FK to Account.(CustomerId,AccountType)
    

    In AccountsAccess will be stored CustomerId, AccountId pairs that tell the CustomerId has access to AccountId. For the entirely given accounts, there is no line for the CustomerId of the owner.

    Frequently asked questions are representing a client has access to?

    I create a SQL-based hierarchical display (because of the children of the customer, grandchildren...)
    and AccountsAccess

    Exactly what accounts is an arrangement linked with?

    a view based on the join of the Arrangements and accounts on (CustomerId, AccountType)

    Who has access to an account

    a SQL-based hierarchical display (because of parents of the customer, grandparents...)
    and AccountsAccess

    and who owns it?

    a view based on the join of customers and accounts

  • I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not display in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not appear in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    You must save the spreadsheet containing the new date as a model format and use this custom template for each new spreadsheet where you want that this date format personalized at your disposal.

  • Need help on Date for report BEEP settings

    Hello

    I need to add a parameter date in my BEEP report. I used a date parameter on a BEEP report that has one for each grouping, but my RTF report BEEP pattern that has been converted to Actuate do not have a grouping for each, and I was getting an error when I validate the RTF model. Can someone please?

    Thank you

    see the example of model I sent let me know.

  • Defining the new path for the data files for restoring using the VALUE of NEWNAME FOR DATABASE

    Version: 11.2.0.3 Linux

    Today, I had to do a restore RMAN to a new server and I came across the post following RTO on the VALUE of NEWNAME FOR DATABASE

    ALTER database open resetlogs upgraded;         error to throw

    So, I thought to use it to indicate the new location of the data files to restore.

    That's what I did
    ===================

    Restore the control file and catalog items to backup using the command of CATALOGUE START WITH. Then I started the restoration
    $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:40:41 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 07/26/2012 04:40:43
    RMAN-06970: NEWNAME '/fnup/hwrc/oradata/spikey' for database must include %f or %U format
    
    Recovery Manager complete.
    Don't know how it worked for Levi without %f or %U. So, I added %f
     $ vi restore.txt
     $ cat restore.txt
    run
     {
     SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
     restore database  ;
     }
    
    
     $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:45:45 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    
    Starting restore at 26-JUL-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /fnup/hwrc/oradata/spikey/1
    channel ORA_DISK_1: restoring datafile 00002 to /fnup/hwrc/oradata/spikey/2
    channel ORA_DISK_1: restoring datafile 00003 to /fnup/hwrc/oradata/spikey/3
    channel ORA_DISK_1: restoring datafile 00004 to /fnup/hwrc/oradata/spikey/4
    channel ORA_DISK_1: restoring datafile 00005 to /fnup/hwrc/oradata/spikey/5
    channel ORA_DISK_1: restoring datafile 00006 to /fnup/hwrc/oradata/spikey/6
    channel ORA_DISK_1: restoring datafile 00007 to /fnup/hwrc/oradata/spikey/7
    channel ORA_DISK_1: restoring datafile 00008 to /fnup/hwrc/oradata/spikey/8
    channel ORA_DISK_1: restoring datafile 00009 to /fnup/hwrc/oradata/spikey/9
    channel ORA_DISK_1: reading from backup piece /u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: errors found reading piece handle=/u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: failover to piece handle=/u07/dump/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk tag=SPIKEY_FULL
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
    Finished restore at 26-JUL-12
    
    Recovery Manager complete.
    As you can see, RMAN restore data files to the desired location. But the data file names ended up as
    1
    2
    3
    .
    .      
    .
    9
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -----------| Holy Cow |-----------------------------


    So I had to rename each file as below
    $ mv 1 /fnup/hwrc/oradata/spikey/system01.dbf
    $ mv 2 /fnup/hwrc/oradata/spikey/sysaux01.dbf
    $ mv 3 /fnup/hwrc/oradata/spikey/undotbs01.dbf
    I would have been better in execution of the order for each data below file
    SET NEWNAME FOR DATAFILE
    Now, I think, there is no advantage in using NEWNAME SET of DATABASE to. Only the disadvantages. I did anything wrong above?

    Martin;

    On the issue of the VALUE of NEWNAME FOR DATABASE, you must specify at least one of the first three of the following substitution variables to avoid collisions of names: %b f % U. see semantic entry for TO 'filename' for a description of the possible substitution variables.

    You use %f

    %b
    
    Specifies the filename without the fully qualified directory path. For example, the datafile name /oradata/prod/financial.dbf is transformed to financial.dbf. This variable enables you to preserve the names of the datafiles while you move them to different directory. During backup, it can be used for the creation of image copies. The variable cannot be used for OMF datafiles or backup sets.
    
    %f
    
    Specifies the absolute file number of the datafile for which the new name is generated. For example, if datafile 2 is duplicated, then %f generates the value 2.
    
    %U
    
    Specifies a system-generated unique filename. The name is in the following format: data-D-%d_id-%I_TS-%N_FNO-%f. The %d variable specifies the database name. For example, a possible name might be data-D-prod_id-22398754_TS-users_FNO-7.
    

    Source - E10643-01

    Backup and recovery reference

    http://docs.Oracle.com/CD/E14072_01/backup.112/e10643/rcmsynta2014.htm

    I see CKPT and I agree on that!

    Best regards

    mseberg

  • model from 2012 to 2015 date for the meeting?

    Has anyone heard of an old model of Macbook Pro with a date of the current Assembly?

    Not one, but two of my colleagues recently bought Macbook Pro of the Best Buy Web site, thinking they were getting a good deal. But when they complained to me about the slow performance, I told them that the Macbook Pro have been 2012, not 2015! The bodies of these laptops are certainly the 2012 models - they have internal SuperDrive and same port configuration. And yet when we ran the serial numbers, they have all two current AppleCare. No place on the Web from Best Buy site he mentioned that they have been renovated, either.

    I went to www.powerbookmedic.com and it was even more detailed information:

    Model number:

    A1278
    Number of sales: MD101LL/A
    Machine number: MacBookPro9, 2
    Dimensions: 12.78 in x in x 0.95 in 8,94
    Weight: 4.5 lb
    Production: June 11, 2012 - present

    Based on your serial number, your device is a model of Mid 2012 and was assembled on:

    Year of production: 2015
    Week of production: 46 (November)
    Production number: 700

    Anyone seen this before? How can a body 2012 have been assembled in 2015? This means that they are refurbished? Why is the date of production always open for this model?

    Any help is greatly appreciated!

    This model has been in continuous production since its introduction. I see it as a credit to the value and reliability of this model. Apple uses dates to indicate when changes have been made, not the time period. If you buy Apple, you get a new unit. I can't say that about Best Buy.

    This isn't like cars where something changes every year. It is rather old Winchester rifles. The Winchester Model 1894 is still in production with only a minor change in the name of model 94.

    I believe that this model has been in continuous production longer than any other Apple product. You can always a "built to order":

    http://www.Apple.com/shop/buy-Mac/MacBook-Pro?product=MD101LL/A & step = config

    I have this model in the "basic configuration" purchased directly from Apple as a refurb in 2013 and it is not slow. It came with OS OS10.8.5 Mountain Lion and today runs the latest OS version 10.11 without complaining. I hope that Best Buy have not previously installed some unnecessary anti-virus or the operating system on the computers of your friends.

    It is always better to buy a Mac directly from Apple rather than through the limited number of dealers, they use.

  • I need a free software to use for all my students data registration

    I need a free software to use for recording of all data from my students to my computer

    sage180

    If you mean the personal info, then http://www.libreoffice.org/

  • Oracle Developer Tools for Visual Studio needs an Oracle Client for the Windows Installation?

    Hi everyone, I need to know if Oracle Developer Tools for Visual Studio is in need of a customer Oracle for Windows installed

    Thanks for your time

    Yes, you have the Oracle Client. However, you don't need to install the Oracle Client separately. ODT automatically includes the Oracle customer in each ODAC installation.

    The next version of the ODAC have an ODT version that uses ODP.NET, successful pilot. This version is not longer an Oracle Client.

  • Need to download Oracle Directory Server 11.1.1.7.0 for AIX 7.1

    Hello

    I need to download Oracle Directory Server Enterprise Edition 11 g Release 1 (11.1.1.7.0) for AIX 7.1 but couldn't find Installer to Oracle Software Delivery Cloud.

    Can someone please help me find the installer.

    Thank you

    Himanshu

    Hello

    The list of platforms supported for ODSEE 11 GR 1 material is available at http://www.oracle.com/technetwork/middleware/downloads/odsee-11gr1certmatrix-161592.xls

    AIX is not supported.

    Note that the Directory Unified Oracle (OUD) is supported on AIX (http://www.oracle.com/technetwork/middleware/id-mgmt/documentation/identity-access-111220certmatrix-2105036.xlsx)

    Sylvain

    Please mark this answer as correct or helpful, when it is appropriate to make it easier for others to find

Maybe you are looking for

  • Shuffle is not random (enough)

    I have several playlists in iTunes 12.4 (OS X 10.11.6) but will shuffle works is impossible. For example, a smart playlist that I put in place a more 1 400 titles spread over 124 albums but when I shuffle I get large blocks of single album titles are

  • I can't get the el capitan 10.11.5 update to download from the app store.  I have installed have10.11.3

    I got el capitan 10.11.3 on my iMac.  The update in the app store is 10.11.5.  I can't get the update download and restart.  Any suggestions?  I can't find a 10.11.4

  • G not recognized disk

    Trying to swap files from an iMac new iMac via a G Mini HD Drive connected via Firewire adapter Thunderbolt. Turn on drive G, it does not appear on the new iMac desktop computer. Any ideas? Thank you.

  • Bought an update disk thinking it was the complete system.

    I bought a windows disk thought 7 it is the full operating system, I have not followed the instructions properly or made a mistake somewere along the way during Assembly and have now lost my Vista the operating system completely. I still have the pro

  • No product page of the India for Z3

    Why are there no model HSPA + only for the Indian market this time? Why is there no list of the Z3 in Indian support page of sony mobile? Sony does not plan to release the device in India? I waited too long to get my hands on it, but I don't know whe