How to correct sql to populate parent(id) in curr_mgr_id

HI ALL,
SELF_REFERNTIAL_INTEGRITY DEFINED ON EMP_HCHY
ID IS A SEQUENCE GENERATED NUMBER
CREATE TABLE EMP_HCHY(ID NUMBER PRIMARY KEY,
CURR_MGR_ID NUMBER REFERENCES EMP_HCHY(EMP_NO),
EMP_NO VARCHAR2(20),
TITLE_NM VARCHAR2(20))
CREATE TABLE STG_HCHY(EMP_NO NUMBER ,
NAME VARCHAR2(20),
TITLE_NM VARCHAR2(20)
CURR_MGR NUMBER )
INSERT INTO STG_HCHY VALUES(7839,'KING','VP',1000)
INSERT INTO STG_HCHY VALUES(7000,'K','VP',1001)
INSERT INTO STG_HCHY VALUES(7566,'JONES','AVP',7839)
INSERT INTO STG_HCHY VALUES(7698,'BLAKE','AVP',7000)
INSERT INTO STG_HCHY VALUES(7782,'CLARK','AVP',7839)
INSERT INTO STG_HCHY VALUES(7788,'SCOTT','RSD',7566)
INSERT INTO STG_HCHY VALUES(7902,'FORD','DSM',7788)
INSERT INTO STG_HCHY VALUES(7900,'FORD','REP',7902)
I WANT TOLOAD THE DATA IN THE FOLLOWING ORDER
VP,AVP,RSD,DSM,REP.HERE IS THE SQL I USED
INSERT INTO EMP_HCHY VALUES(
SELECT EMP_SEQ.NEXTVAL,
CURR_MGR_ID-----HOW DO I GET THIS ID,
EMP_NO,
TITLE_NM
from EMP_HCHY
start with TITLE_NM = 'VP'
connect by prior EMP_NO = MGR
and TITLE_NM = decode( prior TITLE_NM ,
'VP','AVP', 'AVP','RSD', 'RSD','DSM', 'DSM','REP' )
PARENT ID NEEDS TO BE DISPLAYED IN THE CURR_MGR_ID
ID CURR_MGR_ID EMP_NO TITLE_NM
1     NULL     7839     'VP'
2     NULL     7000     'VP'
3     1     7566     'AVP'
4     2     7698     'AVP'
5     1     7782     'AVP'
6     3     7788     'RSD'
7     6     7902     'DSM'
8     7     7900     'REP'

SORRY.I Was ina a hurry as query is not working
I will not repeat
the structure of stg_hchy is(empno,mgr,title).
when loading into emp_hchy we have to load VP,AVP,RSD,DSM,REP
EMPNO MGR TITLE
101 201 AVP
201 NULL VP
301 201 AVP
401 101 RSD
501 401 DSM
601 501 REP
EMP_HCHY MUST CONSISTSOF
1 NULL 201 VP
2 1 101 AVP
3 1 301 VP
PLEASE HELP ME IN BUILDINGTHE SQL

Similar Messages

  • Overriding VO Impl class methods to populate parent-child VO

    Hi All,
    I need to populate parent child VOs by giving webservice calls from respective impl classes.
    Scenario : Lets say suppose i have 2 VOs as DepartmentVO and Employee VO with a viewLink on departmentId. Taking a particular instance, in Department table there are 2 rows and for each parent row we have 2 child rows in Employee.
    Webservice Structure : I have a parent Object and inside that parent object i have list of child objects
    e.g : public class DepartmentDTO{
    private List<EmployeeDTO> employeeList;
    After that i have extended Impl classes for both VOs and overriden method i.e. "executeQueryForCollection" to give a webservice call and get back response of DepartmentDTO[] with List<EmployeeDTO> inside it.
    In DepartmenntVOImpl class i have overriden "createRowFromResultSet" which populates the parent VO with the number of parent records returned from webservice.
    Code for Department impl class is :
    protected ViewRowImpl createRowFromResultSet(Object qc,
    ResultSet resultSet) {
    Iterator deptIter= getPackageClassIterator(qc);
    ViewRowImpl r = createNewRowForCollection(qc);
    DepartmentDTO curDTO = (DepartmentDTO )deptIter.next();
    populateAttributeForRow(r,
    findAttributeDef("DeptId").getIndex(),
    curDTO.geDeptId() );
    populateAttributeForRow(r,
    findAttributeDef("DeptName").getIndex(),
    curDTO.getDeptName() );
    return r;
    Similarly i have overridden "createRowFromResultSet" method in EmployeeVOImpl to populate the child VO(this need to be populated from the list object inside parent object reponse)
    Code as follows :
    protected ViewRowImpl createRowFromResultSet(Object qc,
    ResultSet resultSet) {
    Iterator empItr= getPackageClassIterator(qc);
    ViewRowImpl r = createNewRowForCollection(qc);
    DepartmentDTO curDTO1 = (DepartmentDTO )empItr.next();
    List<EmployeeDTO> list = curDTO1.getEmployeesList();
    for (EmployeeDTO curDTO : list) {
    populateAttributeForRow(r,
    findAttributeDef("EmpId").getIndex(),
    curDTO.getEmpId());
    populateAttributeForRow(r,
    findAttributeDef("EmpName").getIndex(),
    curDTO.getEmpName() );
    populateAttributeForRow(r,
    findAttributeDef("EmpLastName").getIndex(),
    curDTO.getEmpLastName() );
    populateAttributeForRow(r,
    findAttributeDef("DeptId").getIndex(),
    curDTO.getDeptId());
    return r;
    Though the code looks simple and correct but the child records are not getting populated correctly. Am not sure if the code implementation to populate parent child VOs from webservcie is correct or not.
    Would appreciate for Help or valuable Suggestions.
    -Sanjeeb

    Hi Ray,
    Go for custom BADIs in this case. In fact, that is exactly the functionality you are looking for !
    Just go through this excellent five part blog on Enhancement framework by Thomas Weiss.
    What the New Enhancement Framework Is For – Its Basic Structure and Elements For Beginners
    The new Enhancement Framework Part 2 - What Else You Need to Know Before Building an Enhancement
    How To Define a New BAdI Within the Enhancement Framework - Part 3 of the Series
    How to implement a BAdI And How to Use a Filter - Part 4 of the Series on the New Enhancement Framework
    Source Code Enhancements - Part 5 of the Series on the New Enhancement Framework
    Cheers,
    Mahesh

  • How to install SQL SERVER 2008 r2 in window 7 home premimum 64bit

    how to install SQL SERVER 2008 r2 in home premimum 64bit os. can any say that weather it will support or not in window 7 home premimum os.
    my server log file:
    Final result:                  SQL Server installation failed.
    To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation
    failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-03-27 00:52:25
      End time:                      2014-03-27
    00:56:09
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL
    Server\100\Setup Bootstrap\Log\20140327_005035\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  SEVALAL-PC
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance          
      Instance ID                    Feature                                  Language          
      Edition              Version         Clustered 
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          Database Engine Services                 1033                 Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          SQL Server Replication                   1033                 Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER  
          Full-Text Search                         1033                 Standard Edition     10.50.1600.1    No    
      Sql Server 2008 R2   MSSQLSERVER          MSAS10_50.MSSQLSERVER  
           Analysis Services                        1033                 Standard Edition     10.50.1600.1    No  
      Sql Server 2008 R2   MSSQLSERVER          MSRS10_50.MSSQLSERVER  
           Reporting Services                       1033                 Standard Edition     10.50.1600.1    No    
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL
                   Database Engine Services                 1033                 Express Edition      10.3.5500.0    
    No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL
                   SQL Server Replication                   1033                 Express Edition      10.3.5500.0  
      No        
      Sql Server 2008 R2                        
                                  Client Tools Connectivity                1033                    
                     10.50.1600.1    No        
      Sql Server 2008 R2                        
                                  Client Tools Backwards Compatibility     1033                            
             10.50.1600.1    No        
      Sql Server 2008 R2                        
                                  Client Tools SDK                         1033              
                           10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services
    2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         G:\01.SQL Server 2008 R2 FullVersion\x64\setup\
      Installation edition:          STANDARD
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup
    Bootstrap\Log\20140327_005035\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                True
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      IS,SSMS,ADV_SSMS,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL
    Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft
    SQL Server
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\SYSTEM
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  True
      TCPENABLED:                    0
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup
    Bootstrap\Log\20140327_005035\ConfigurationFile.ini
    Detailed results:
      Feature:                       Integration
    Services
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management
    Tools - Complete
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management
    Tools - Basic
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync
    Framework
      Status:                        Failed:
    see logs for details
      MSI status:                    Passed
      Configuration status:          Passed

    my summary log file information:
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068052700
      Exit facility code:            1212
      Exit error code:               1316
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-03-27 00:52:25
      End time:                      2014-03-27 00:56:09
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\SSCRuntime_Cpu32_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  SEVALAL-PC
      Machine processor count:       4
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         Database Engine Services                 1033            
        Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         SQL Server Replication                   1033            
        Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSSQL10_50.MSSQLSERVER         Full-Text Search                         1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSAS10_50.MSSQLSERVER          Analysis Services                        1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008 R2   MSSQLSERVER          MSRS10_50.MSSQLSERVER          Reporting Services                       1033      
              Standard Edition     10.50.1600.1    No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL                Database Engine Services                 1033  
                  Express Edition      10.3.5500.0     No        
      Sql Server 2008      SEVALAL              MSSQL10.SEVALAL                SQL Server Replication                   1033
                    Express Edition      10.3.5500.0     No        
      Sql Server 2008 R2                                                       Client Tools Connectivity      
             1033                                      10.50.1600.1    No        
      Sql Server 2008 R2                                                       Client Tools Backwards Compatibility  
      1033                                      10.50.1600.1    No        
      Sql Server 2008 R2                                                       Client Tools SDK        
                    1033                                      10.50.1600.1    No        
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         G:\01.SQL Server 2008 R2 FullVersion\x64\setup\
      Installation edition:          STANDARD
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                True
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      IS,SSMS,ADV_SSMS,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\SYSTEM
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  True
      TCPENABLED:                    0
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\ConfigurationFile.ini
    Detailed results:
      Feature:                       Integration Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140327_005035\SystemConfigurationCheck_Report.htm

  • Script populate parent-child hierarchy not running

    Hallo guys
    I have problem when running script populate Parent-Child Relationship Table.
    Here is the script.I don't even change the script.just run it in PL/SQL
    declare
    v_max_depth integer;
    v_stmt varchar2(32000);
    i integer;
    begin
    select max(level) into v_max_depth
    from V_D_BRANCH
    connect by prior BRANCH_KEY=PARENT_BRANCH_KEY
    start with PARENT_BRANCH_KEY is null;
    v_stmt := 'insert into DM_ANALYTICS.BRANCH_HIERARCHY (MEMBER_KEY, ANCESTOR_KEY, DISTANCE, IS_LEAF)
                select BRANCH_KEY as member_key, null, null, 0 from V_D_BRANCH where PARENT_BRANCH_KEY is null
                union all
                select  member_key,
                replace(replace(ancestor_key,''\p'', ''|''), ''\'', ''\'') as ancestor_key,
                case when depth is null then 0
                else max(depth) over (partition by member_key) - depth + 1
                end as distance, is_leaf
    from
    select member_key,depth,
    case     when depth is null then '' || member_key
    when instr(hier_path, ''|'', 1, depth + 1) = 0 then null
       else substr(hier_path, instr(hier_path, ''|'', 1, depth) + 1, instr(hier_path, ''|'', 1, depth + 1) - instr(hier_path, ''|'', 1, depth) - 1)
    end ancestor_key,
    is_leaf
    from
        (    select BRANCH_KEY as member_key, PARENT_BRANCH_KEY as ancestor_key, sys_connect_by_path(replace(replace(BRANCH_KEY, ''\'', ''\''), ''|'', ''\p''), ''|'') as hier_path,
          case when BRANCH_KEY in (select PARENT_BRANCH_KEY from V_D_BRANCH ) then 0 else 1 end as IS_LEAF
    from V_D_BRANCH 
    connect by prior BRANCH_KEY = PARENT_BRANCH_KEY
    start with PARENT_BRANCH_KEY is null
      ( select null as depth from dual;
    for i in 1..v_max_depth - 1 loop
    v_stmt := v_stmt || union all select '' || i || '' from dual;
    end loop;
    v_stmt := v_stmt || ) )
    where ancestor_key is not null;
    execute immediate v_stmt;
    end;
    but I got errors like following:
    Error report -
    ORA-06550: line 19, column 12:
    PLS-00103: Encountered the symbol "insert into DM_ANALYTICS.BRANCH_HIERARCHY (MEMBER_KEY, ANCESTOR_" when expecting one of the following:
       ( - + case mod new not null <an identifier>
       <a double-quoted delimited-identifier> <a bind variable>
       continue avg count current exists max min prior sql stddev
       sum variance execute forall merge time timestamp interval
       date <a string literal with character set specification>
       <a number> <a single-quoted SQL string> pipe
       <an alternatively-quoted string
    06550. 00000 -  "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    what should I do guys?any idea,any solution would be appreciated.thanks alot guys

    956850 wrote:
    hi,
    i tried making "Dimension with Parent-Child Hierarchy" as described in your tutorials.
    i finished with the admin tool and database changes and with no errors.
    when trying to create a new answer, by only puting the hierarchy column in the answer.
    the result show "no result" exist.
    i am not sure what i am doing wrong. maybe you can point me to the problem?
    thanks
    Mirit.Hi Mirit,
    What is the table that you created hierarchy on?
    Which column in the hierarchy you pulled into your reports to see the No Result message?
    Please query the table and see if has data.
    Thanks,
    G. SK

  • How to execute SQL Query in Code behind Using infopath 2010?

    Hi,
    I've repeatable on infopath form, and want bind it throuth code behind from SQL table. My question is that how to execute SQL Query in code behind from infopath as well as how would get Query result to bind repeatable control?
    Thanks In Advance
    Shoeb Ahmad

    Hello,
    You first need to add new SQL DB connection then you need execute connection from code behind.
    See below link to create new connection
    http://office.microsoft.com/en-in/infopath-help/add-a-data-connection-to-a-microsoft-sql-server-database-HP010092823.aspx:
    http://www.bizsupportonline.net/infopath2010/connect-infopath-2010-sql-server-2008-table.htm
    Then use below code to execute this connection:
    AdoQueryConnection conn = (AdoQueryConnection)(this.DataConnections["Data connection name"]);
    string origCommand = Select * from tablename;
    conn.Command = origCommand;
    conn.Execute();
    Finally bind your table:
    http://www.bizsupportonline.net/infopath2007/4-way-programmatically-add-row-repeating-table.htm
    http://stevemannspath.blogspot.in/2010/09/infopath-20072010-populate-repeating.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to use Sql Loader in Unix Environmant

    Hi All,
    Can anyone explain me please how to use sql Loader in unix environment.
    Actually i have one control file i want to run that file in Unix how can i achive please explain me
    Thank's

    Hi Kuljeet,
    Thank you for your replay
    I just put my control file into the Unix Environmant that's fime
    and when i trying to entering the following cmd in Unix environment i am getting this error
    sqlldr username/password@string control='unix_pathname'i am not sure about the path name my question is
    1) Do i need to give the Local file Path Or Unix Path
    This is  the error in Sql Loader:
    SQL*Loader: Release 10.2.0.4.0 - Production on Mon Sep 24 13:14:23 2012
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    SQL*Loader-500: Unable to open file (/bx167a/riskbatch/rdwdbat/sample_upl.upl)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: No such file or directory
    Could you please correct me
    Thank's

  • How to catch SQL Exceptions in JSP

    Hi,
    I wanted to know how do we catch the correct SQL return code in a JSP page ?
    Based on the return code I wanted to display customised Error messages.
    But I could'nt figure out a way to get the error message returned by the underlying DB2
    database.
    I am using Websphere Application Server and the backend database is DB2.

    The only way I am aware of is parsing the exception message/the call stack.

  • How to design SQL server data file and log file growth

    how to design SQL DB data file and log file growth- SQL server 2012
    if my data file is having 10 GB sizze and log file is having 5 GB size
    what should be the size in MB (not in %) of autogrowth. based on what we have to determine the ideal size of file auto growth.

    It's very difficult to give a definitive answer on this. Best principal is to size your database correctly in advance so that you never have to autogrow, of course in reality that isn't always practical.
    The setting you use is really dictated by the expected growth in your files. Given that the size is relatively small why not set it to 1gb on the datafile(s) and 512mb on the log file? The important thing is to monitor it on an on-going basis to see if that's
    the appropriate amount.
    One thing you should do is enable instant file initialization by granting the service account Perform Volume Maintenance tasks in group policy. This will allow the data files to grow quickly when required, details here:
    https://technet.microsoft.com/en-us/library/ms175935%28v=sql.105%29.aspx?f=255&MSPPError=-2147217396
    Also, it possible to query the default trace to find autogrowth events, if you wanted you could write an alert/sql job based on this 
    SELECT
    [DatabaseName],
    [FileName],
    [SPID],
    [Duration],
    [StartTime],
    [EndTime],
    CASE [EventClass]
    WHEN 92 THEN 'Data'
    WHEN 93 THEN 'Log' END
    FROM sys.fn_trace_gettable('c:\path\to\trace.trc', DEFAULT)
    WHERE
    EventClass IN (92,93)
    hope that helps

  • IWeb shuts down when I attempt to publish site changes. Any ideas on how to correct?

    iWeb shuts down when I attempt to publish site changes. Any ideas on how to correct?

    I have deleted the com.apple.iweb.plist file and the cache file, restarted the mac and still iWeb crashes when I attempt to publish my site changes.
    ANY other suggestions would be welcomed...
    Here is the report that I can view when given the option to report to Apple (it's all Greek to me).
    Process:         iWeb [163]
    Path:            /Applications/iWeb.app/Contents/MacOS/iWeb
    Identifier:      com.apple.iWeb
    Version:         3.0.2 (302)
    Build Info:      iWeb-4890000~67
    Code Type:       X86 (Native)
    Parent Process:  launchd [95]
    Interval Since Last Report:          130110 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  130 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-01-08 13:26:38.918 -0600
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  4C1F3C23-3BEB-4157-A59E-780F8677522D
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000024
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.apple.iWeb.sfarchiving              0x006fa19e -[SFAXMLUnarchiver(SFAInternal) setIndexXml:] + 78
    1   com.apple.iWeb.sfarchiving              0x006f8bcc -[SFAXMLUnarchiver initFromPath:indexLocator:dataManager:uidNamespace:] + 604
    2   com.apple.iWeb.sfarchiving              0x006f8888 -[SFAXMLUnarchiver initFromPath:indexFilename:dataManager:uidNamespace:] + 248
    3   com.apple.iWeb.sfarchiving              0x006f7b8f -[SFAXMLUnarchiver initFromPath:indexFilename:dataManager:] + 111
    4   com.apple.iWeb                          0x00022311 0x1000 + 135953
    5   com.apple.iWeb                          0x00011daa 0x1000 + 69034
    6   com.apple.iWeb                          0x00010b08 0x1000 + 64264
    7   com.apple.iWeb                          0x0001652a 0x1000 + 87338
    8   com.apple.iWeb                          0x000147cd 0x1000 + 79821
    9   com.apple.Foundation                    0x95d4432b -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1115
    10  com.apple.Foundation                    0x95d978e8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    11  com.apple.iWeb                          0x0016c637 0x1000 + 1488439
    12  com.apple.iWeb                          0x0016c3cd 0x1000 + 1487821
    13  com.apple.iWeb                          0x00165ca3 0x1000 + 1461411
    14  com.apple.iWeb                          0x00165362 0x1000 + 1459042
    15  com.apple.iWeb                          0x0016396d 0x1000 + 1452397
    16  com.apple.iWeb                          0x00140cb2 0x1000 + 1309874
    17  com.apple.iWeb                          0x0023aade 0x1000 + 2333406
    18  com.apple.iWeb                          0x0023ab4d 0x1000 + 2333517
    19  com.apple.iWeb                          0x0023839f 0x1000 + 2323359
    20  com.apple.AppKit                        0x905f4e8f -[NSApplication sendAction:to:from:] + 112
    21  com.apple.sf.sfapplication              0x005fe794 -[SFAppApplication sendAction:to:from:] + 610
    22  com.apple.AppKit                        0x906a3b64 -[NSMenu performActionForItemAtIndex:] + 493
    23  com.apple.AppKit                        0x906a3869 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 220
    24  com.apple.AppKit                        0x906804ba AppKitMenuEventHandler + 6608
    25  com.apple.HIToolbox                     0x97aec13d DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181
    26  com.apple.HIToolbox                     0x97aeb57b SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    27  com.apple.HIToolbox                     0x97b07ecc SendEventToEventTarget + 52
    28  com.apple.HIToolbox                     0x97b3c1e7 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 411
    29  com.apple.HIToolbox                     0x97b62959 SendMenuCommandWithContextAndModifiers + 59
    30  com.apple.HIToolbox                     0x97b62914 SendMenuItemSelectedEvent + 134
    31  com.apple.HIToolbox                     0x97b6282a FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 162
    32  com.apple.HIToolbox                     0x97b3f494 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 640
    33  com.apple.HIToolbox                     0x97b3ee7f _HandleMenuSelection2 + 383
    34  com.apple.HIToolbox                     0x97b3ecf3 _HandleMenuSelection + 53
    35  com.apple.AppKit                        0x905bce67 _NSHandleCarbonMenuEvent + 244
    36  com.apple.AppKit                        0x90523bc2 _DPSNextEvent + 1918
    37  com.apple.AppKit                        0x90522f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.AppKit                        0x9051bf9f -[NSApplication run] + 795
    39  com.apple.AppKit                        0x904e91d8 NSApplicationMain + 574
    40  com.apple.iWeb                          0x0000b5f3 0x1000 + 42483
    41  com.apple.iWeb                          0x00003812 0x1000 + 10258
    Thread 1:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x942d2d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x942d2d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x962343c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x96246d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d22116 usleep$UNIX2003 + 61
    2   com.apple.AppKit                        0x90589bf1 -[NSUIHeartBeat _heartBeatThread:] + 2042
    3   com.apple.Foundation                    0x95d43dfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95d439a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x969b5b32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90d1b166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90d2295c mach_msg + 72
    2   com.apple.CoreFoundation                0x9805ae7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x9805bb04 CFRunLoopRun + 84
    4   com.apple.iLifeMediaBrowser             0x952dfd0e -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 862
    5   com.apple.Foundation                    0x95d43dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95d439a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90d4b8c6 kevent + 10
    1   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90d6a60a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x97646a09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x90d1b1ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90d22c85 pthread_mutex_lock + 569
    2   com.apple.Foundation                    0x95d49673 -[NSLock lock] + 67
    3   SFWordProcessing                        0x00f4a952 -[SFWPSpellThread pRun:] + 224
    4   com.apple.Foundation                    0x95d43dfd -[NSThread main] + 45
    5   com.apple.Foundation                    0x95d439a4 __NSThread__main__ + 308
    6   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x90d1b166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90d2295c mach_msg + 72
    2   com.apple.CoreFoundation                0x9805ae7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x9805baa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x923f318c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x941276b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x92e7c77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x90d1b166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90d2295c mach_msg + 72
    2   com.apple.CoreFoundation                0x9805ae7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x9805baa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95da7520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x95d43dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95d439a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x90d2234e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d4cccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.vImage                        0x970db4ef vImageQueue_DequeueJob + 111
    3   com.apple.vImage                        0x970db7bc vImageWorkerThreadFunc + 124
    4   libSystem.B.dylib                       0x90d4c055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90d4bf12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x006fa164  ecx: 0x96f51e8c  edx: 0x00731ab1
      edi: 0x026e3200  esi: 0x02286a00  ebp: 0xbfffdea8  esp: 0xbfffde80
       ss: 0x0000001f  efl: 0x00010206  eip: 0x006fa19e   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000024
    Binary Images:
        0x1000 -   0x3cdfe7  com.apple.iWeb 3.0.2 (302) <670e4c0f76d4076bf1b99adb72fb7aa8> /Applications/iWeb.app/Contents/MacOS/iWeb
      0x484000 -   0x522ffc  com.apple.MobileMe 11 (1.0.3) <b889ea4659df719d842dc3a335b1aa88> /Applications/iWeb.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobile Me
      0x585000 -   0x5beff7  com.apple.iWeb.SFAnimation 1.0 (0.0.1d1) <e77cc19204a20e36bbabd2cc00fcff53> /Applications/iWeb.app/Contents/Frameworks/SFAnimation.framework/Versions/A/SFA nimation
      0x5ea000 -   0x68bffb  com.apple.sf.sfapplication 1.0.1 (1.0) <5a0027347f5aa441d67e776ba8f36865> /Applications/iWeb.app/Contents/Frameworks/SFApplication.framework/Versions/A/S FApplication
      0x6f1000 -   0x748fe7  com.apple.iWeb.sfarchiving 1.0 (0.0.1d1) <35152b807928346f5aabae7e2de88206> /Applications/iWeb.app/Contents/Frameworks/SFArchiving.framework/Versions/A/SFA rchiving
      0x781000 -   0x7ccff3  com.apple.iWeb.SFControls 1.0 (20030306_1) <bf6ab6ac4ae596b04000f8263a96d254> /Applications/iWeb.app/Contents/Frameworks/SFControls.framework/Versions/A/SFCo ntrols
      0x7fd000 -   0x98bfe3  com.apple.iWeb.sfdrawables 2.0 (2.0) <f5fcba8bdd67dbd302eee0f6f65848fc> /Applications/iWeb.app/Contents/Frameworks/SFDrawables.framework/Versions/A/SFD rawables
      0xa5b000 -   0xb12fe3  com.apple.iWeb.sfinspectors 1.0 (1.0) <e1b17d0251fa236bdeeabaaf384acc5b> /Applications/iWeb.app/Contents/Frameworks/SFInspectors.framework/Versions/A/SF Inspectors
      0xb74000 -   0xb9eff7  com.apple.iWeb.sflicense 1.0.1 (0.0.1d1) <eb9c286a862a3f38c7fb92100afca499> /Applications/iWeb.app/Contents/Frameworks/SFLicense.framework/Versions/A/SFLic ense
      0xbbc000 -   0xc44fff  com.apple.iWeb.proofreader 1.0 (1) <2c9ebacf56c2bbced405d7941123d41f> /Applications/iWeb.app/Contents/Frameworks/SFProofReader.framework/Versions/A/S FProofReader
      0xc55000 -   0xd62feb  com.apple.iWeb.sfrendering 1.0 (1.0) <5fcdb506a010e2ee061e148600c4c0b1> /Applications/iWeb.app/Contents/Frameworks/SFRendering.framework/Versions/A/SFR endering
      0xdd3000 -   0xdedff7  com.apple.iWeb.sfstyles 1.0 (1.0) <57b71fa41065cb3e3603bc4b56a98ffb> /Applications/iWeb.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFStyl es
      0xdff000 -   0xeb0ff3  com.apple.iWeb.sfutility 1.0 (0.0.1d1) <a26923ef5a747e9345916e4fe6d7f7ab> /Applications/iWeb.app/Contents/Frameworks/SFUtility.framework/Versions/A/SFUti lity
      0xf29000 -  0x119bfff +SFWordProcessing ??? (???) <cabf0fdb87153cd04be6169809dda037> /Applications/iWeb.app/Contents/Frameworks/SFWordProcessing.framework/Versions/ A/SFWordProcessing
    0x12db000 -  0x1534ffb  com.apple.MessageFramework 3.6 (936) <d7a6e5f6721cbab99ed3e83137dba11a> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x168b000 -  0x171dff7 +com.panic.FTPKit 1.2 (1.2) <4e0db853b1ca98cbd60b0c46b9812aae> /Applications/iWeb.app/Contents/Frameworks/FTPKit.framework/Versions/A/FTPKit
    0x1767000 -  0x179ffff  com.apple.OSAKit 1.1 (55) <38257e261cc7dd391e4dee6a69861e49> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x17cf000 -  0x17f7ffb  com.apple.framework.Admin 3.8 (3.8) <f4f6fab351683bc7cc0f09df54bdf2f2> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x1819000 -  0x1823fff  libexslt.0.dylib ??? (???) <28d7f88ef65126651087beb9785183a9> /usr/lib/libexslt.0.dylib
    0x1829000 -  0x182bfff  com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x1832000 -  0x1856fe7  com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x186b000 -  0x1963fe0  com.apple.DiskImagesFramework 10.5.10 (204) <b5a706350dbfe8ef03d23833e5687f65> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x19c9000 -  0x19fffff  com.apple.MediaKit 9.1 (401) <36149a69962ed3101199093a6220ef74> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x1a10000 -  0x1ad9fe5  com.apple.DiscRecording 4.0.7 (4070.4.1) <7c105f35c674aad3a476f8959d3f3ebb> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1b44000 -  0x1b71ffb  libcurl.4.dylib ??? (???) <e70ed3c4c3a9ab52cca43930b038b2b8> /usr/lib/libcurl.4.dylib
    0x1ea3000 -  0x1ea4ff7  com.apple.iWork.SFImageUnit 5.0 (2) <124c52622a55b9fa4dbb5f6425b0031a> /Applications/iWeb.app/Contents/Frameworks/SFRendering.framework/Versions/A/Res ources/SFImageUnit.plugin/Contents/MacOS/SFImageUnit
    0xec22000 -  0xf009fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xf948000 -  0xf95afff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xf979000 -  0xf97aff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xfc36000 -  0xfc52ff7  GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xfc5f000 -  0xfc66fff  com.apple.iLMBAperturePlugin 2.1.5 (127) <64f3d109e8ac7abb31e073da26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0xfcd6000 -  0xfcd7fff  com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0xfcdd000 -  0xfcdefff  com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0xfce4000 -  0xfce8fff  com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0xfcf5000 -  0xfcf7fff  com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <a6ae59ef4e40840b36a8f4dc6b697a5b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0xff00000 - 0x10085fe3  GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x100f5000 - 0x100f7fff  com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86fe02308b70e1cdf2805654f999ec70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x102b8000 - 0x102c3fff  com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x102cb000 - 0x102dcfff  com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x102e6000 - 0x102eefff  com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x10400000 - 0x10408fff  com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x10700000 - 0x10a04fe9  com.apple.ATIRadeonX1000GLDriver 1.5.48 (5.4.8) <4d0365447d4c959a376ccaab3d1c47e7> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x11e5d000 - 0x11f0dfff  com.apple.iTunesAccess 10.5.2 (10.5.2) <3b8db64c4a9b4dbc84e51a2288b19cdf> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x122cf000 - 0x122d4ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1233b000 - 0x12349feb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x150c4000 - 0x150c5fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x150d7000 - 0x150dbffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90035fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90036000 - 0x90041fff  com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x90042000 - 0x901a5ff2  com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x901a6000 - 0x904d1ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x904d2000 - 0x904e1fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x904e2000 - 0x904e2ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x904e3000 - 0x90ce1fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90ce2000 - 0x90d19fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d1a000 - 0x90e81ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90e82000 - 0x90eabfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x90eac000 - 0x90eb1ffc  com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90eb2000 - 0x91004ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91005000 - 0x91005ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91006000 - 0x9104ffef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91050000 - 0x91094feb  com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91095000 - 0x91122ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91123000 - 0x91204ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x91205000 - 0x91298ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91299000 - 0x912a6fe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x912a7000 - 0x91334ff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91335000 - 0x9141dff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9141e000 - 0x91439ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9143a000 - 0x91470fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x9153b000 - 0x91674ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x91675000 - 0x91831ff3  com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91832000 - 0x919b2fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x919b3000 - 0x919c3ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x919c4000 - 0x919cefeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x919cf000 - 0x91b5efe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91b5f000 - 0x91b60ffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x91b7e000 - 0x91e58ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91e59000 - 0x92269fef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9226a000 - 0x922a9fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x922f9000 - 0x923e7fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x923e8000 - 0x923effff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x923f0000 - 0x92497fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92498000 - 0x9261cfef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9261d000 - 0x92641feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x92642000 - 0x9268dfe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9268e000 - 0x9269efff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9269f000 - 0x926a6fe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x926a7000 - 0x926abffd  com.apple.AOSNotification 1.0.0 (68.13) <d2a1f7c6e054d7451b17c7301e4dadd5> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x926ac000 - 0x926b0fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x927a6000 - 0x9282dff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x9282e000 - 0x9282effe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9282f000 - 0x92863fef  com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92864000 - 0x928bdff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x928be000 - 0x92c7cfea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92c82000 - 0x92ccdff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92cce000 - 0x92cd4fff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd5000 - 0x92d11fff  com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x92d12000 - 0x92d6fffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x92d70000 - 0x92d75fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92d76000 - 0x92db6fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92db7000 - 0x92df8fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92df9000 - 0x92dfbff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92dfc000 - 0x92e4afe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92e4b000 - 0x92e59ffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x92e5a000 - 0x92e5affe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92e5b000 - 0x93bc9fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93bcd000 - 0x93bebfff  libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x93bec000 - 0x93c3dfeb  com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93c3e000 - 0x93c8dfff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93c8e000 - 0x93c9afff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x93c9b000 - 0x94057ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94058000 - 0x9405dfff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9405e000 - 0x94076fff  com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9411c000 - 0x94333ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94334000 - 0x95234fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95235000 - 0x95277fef  com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95278000 - 0x952a3fe7  libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x952a4000 - 0x952a4ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952a5000 - 0x95318fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95319000 - 0x9533dfff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x9533e000 - 0x953f0ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x953f1000 - 0x95423ff7  com.apple.DotMacSyncManager 1.2.4 (308) <99bb01aa2cdb0d860a11a1097ffe421d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95466000 - 0x954a0fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x954a1000 - 0x954a8ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x954ac000 - 0x95536ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95537000 - 0x95680ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95681000 - 0x9579eff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9579f000 - 0x9579ffff  com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x957a0000 - 0x95806ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95807000 - 0x95825ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95826000 - 0x9584eff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9584f000 - 0x9590afe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9590b000 - 0x95a43fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95a44000 - 0x95b8efeb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95b8f000 - 0x95bbcfeb  libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95bbd000 - 0x95bf7ffe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95bf8000 - 0x95bfcfff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95bfd000 - 0x95ca4feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95ca5000 - 0x95d38fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95d39000 - 0x95fb5fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95fb6000 - 0x96007ff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96008000 - 0x96008ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96009000 - 0x96010ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96011000 - 0x9607effb  com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x9607f000 - 0x960dbff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x960dc000 - 0x9610bfe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9610c000 - 0x9610cffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9610d000 - 0x96129ff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9612a000 - 0x961a4ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x961a5000 - 0x961ffff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96200000 - 0x96200ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96201000 - 0x962ccfef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x962cd000 - 0x9696dfff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9696e000 - 0x9698dffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9698e000 - 0x96e5ffbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96e60000 - 0x96e63fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96e64000 - 0x96e6dfff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96e6e000 - 0x96e76fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96ea7000 - 0x96f87fff  libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x96f88000 - 0x96f88ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96f89000 - 0x96f9affe  com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96f9b000 - 0x9701aff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9701b000 - 0x970e2ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9734c000 - 0x97369ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9736a000 - 0x9753bfef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9753c000 - 0x97551ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97552000 - 0x978effef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x978f0000 - 0x978f5fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x978f6000 - 0x97902ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97903000 - 0x9790efe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9790f000 - 0x979f1fff  com.apple.syncservices 3.3 (389.20) <bfedc8cbb3754652e13d67a45791fac9> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x979f2000 - 0x97a08fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97a09000 - 0x97a0bfff  com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97a0c000 - 0x97a0cffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97a0d000 - 0x97a1cffe  com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x97a1d000 - 0x97a9afeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97aa5000 - 0x97ae3fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97ae4000 - 0x97decfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97e01000 - 0x97e7efef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97e7f000 - 0x97f30fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97f31000 - 0x97f35fff  com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x97f36000 - 0x97fa8fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97fa9000 - 0x97fdaffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x97fdb000 - 0x97fe7ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97fe8000 - 0x9811bfe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2  libKoreanConverter.dylib ??? (???) <bc0bb2eed0f4558f07bbaa812d79371b> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • How to execute sql scripts from Powershell across multiple databases

    Re: How to execute sql scripts from Powershell across multiple databases
    I have an tsql script that I want to run across a list of databases. How is the best way to do this in Powershell? Thanks.

    My example below, using just the SMO and not breaking up the batches, the ExecuteWithResults give the following error when the .sql file contains a GO. My script files are as simple as a DECLARE and then a GO.
    WARNING: SQL Script Failed
    The object of type "Microsoft.PowerShell.Commands.Internal.Format.FormatStartData" is not valid or not in the correct sequence. This is likely caused by a user-specified "format-list" comm
    and which is conflicting with the default formatting.
        + CategoryInfo          : InvalidData: (:) [out-lineoutput], InvalidOperationException
        + FullyQualifiedErrorId : ConsoleLineOutputOutOfSequencePacket,Microsoft.PowerShell.Commands.OutLineOutputCommand
    Also, when executing from the ISE, is there a way to force the ISE to release the files. I am having to close the ISE and reopen my script every time I want to make a testing change to the .sql file.
    [reflection.assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo")
    $scriptspath = "C:\temp\psExecuteSQLScripts\scripts"
    $SQLServer = "fidevc10"
    $SQLDB = "Bank03"
    # Create SMO Server Object
    $Server = New-Object ('Microsoft.SQLServer.Management.Smo.Server') $SQLServer
    # Get SMO DB Object
    $db = $Server.Databases[$SQLDB]
    # Load All SQL Scripts in Directory
    $scripts = Get-ChildItem -Path (Join-Path $scriptspath "*") -Include "*.sql" -Recurse
    # Loop through each script and execute
    foreach ($SQLScript in $scripts)
    $fullpath = $SQLScript.FullName
    # Read the Script File into Powershell Memory
    $reader = New-Object System.IO.StreamReader($fullpath)
    $script = $reader.ReadToEnd()
    # Execute SQL
    Write-Host "Executing $SQLScript on $SQLDB...."
    try
    $ds = $db.ExecuteWithResults($script)
    Foreach ($t in $ds.Tables)
    Foreach ($r in $t.Rows)
    Foreach ($c in $t.Columns)
    Write-Host $c.ColumnName "=" $r.Item($c)
    Write-Host "Complete"
    catch [Exception]
    Write-Warning "SQL Script Failed"
    echo $_.Exception|format-list -force
    Write-Host " " -BackgroundColor DarkCyan

  • I create a birthday calendar in iCal and then click on it in iphoto at the begining of the calendar project each year.  Some how the birthday did not populate the photo calendar.  Is there a way to add the birthday iCal calendar into the calendar project?

    I created a birthday calendar to use in iphoto for calendar.  When a new calendar project is started each year, I click on it in.  Some how the birthday did not populate the photo calendar this year.  The photo calendar is almost complete.  Is there a way to add the birthday iCal calendar into the calendar project? I would prefer not to start over.

    Hi,
    If you first select the calendar on the left, so that its background is highlighted blue/grey, when you make a new events they should be added to that calendar.
    Best wishes
    John M

  • HDMI cable - Plus Pay TV with HDMI cable. How to correct?

    Today i purchased Apple tv and was told to buy a HDMI cable which i did. My problem is my tv has 1 input and that input currently has HDMI cable connected to the Austar unit (pay TV). Any ideas how to correct this please? i.e. double adapter etc.

    Welcome to the Apple Community.
    The cheaper option is an HDMI switch, if you get one ensure you can exchange it if need be, not all will work as they should.
    You might also want to consider a receiver and sound system, modern receivers tend to have multiple HDMI inputs which would solve your problem.

  • HT204051 iphone5c i often lose wifi connection on 2 phones must reset to open. No other device connection problems just Iphone5  Why? How to correct?

    My two Iphone 5C disconnect from my wireless (wifi) router often.  Usually when changing from LTE network to wifi.  I must reset (turn off and on ) phone to regain wifi network.  All other dervices on wireless work great.  What is causing the problem and how to correct???

    Howdy Old rider,
    Thanks for using the Apple Support Communities.
    If multiple iPhones are having the same issue where ithey are disconnecting from your Wi-Fi network, then I'd like you to please review the settings on your router to ensure they match with the information in the article below.
    iOS and OS X: Recommended settings for Wi-Fi routers and access points - Apple Support
    Take care,
    Alex H.

  • I am trying to save a doc. to a external hard drive and it wont allow me. I says its read only, any ideas on how to correct it?

    I am trying to save a doc. to a external hard drive and it wont allow me. I says its read only, any ideas on how to correct it?

    Save it on the internal HD then copy it from this safe location to the external device.
    iWork applications can't apply their save process on devices which aren't formatted as HFS+.
    But it may also be that for some reason, an external device formatted as HFS+ is set to Read Only.
    If it's this case, you will have to change de setting before moving the file on it.
    Yvan KOENIG (VALLAURIS, France) vendredi 20 mai 2011 11:01:05
    Please :
    Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    Disable your antivirus and firewall, and try again.

Maybe you are looking for