Odd Result from Library Repair

Today, as I was requesting Aperture to export one photo to Facebook, I got the message that inconsistancies had been dedected.  Although rare, this does happen from time to time, and Repair is always successful.
But this time, after the repair, I had a Recovered Project in the list of projects.  It identified two files as problematic, and not displayable.  Checking one of my clones of the Library, I found these to be two .mov files that in fact had not imported properly (but had on another Mac, into another library), and which were in the Trash in Aperture.  Other photos were in the trash, yet only these two were plucked out for a Recovered Project.  They remain in the Trash -- Curious!
Ernie

That is indeed curious. I'd expect in the "Recovered" project only originals, that are found as orphaned in the library, and have lost the connection to the versions, but not any corrupted files?

Similar Messages

  • Odd results from SQL statement in JSP

    Hi.
    Getting very strange results from my SQL statement housed in my JSP.
    the last part of it is like so:
    "SELECT DISTINCT AID, ACTIVE, REQUESTOR_NAME, ..." +
    "REQUESTOR_EMAIL" +
    " FROM CHANGE_CONTROL_ADMIN a INNER JOIN CHANGE_CONTROL_USER b " +
    "ON a.CHANGE_CTRL_ID = b.CHANGE_CTRL_ID " +
      " WHERE UPPER(REQUESTOR_NAME) LIKE ? ";   I've set the following variables and statements:
    String reqName = request.getParameter("requestor_name");
    PreparedStatement prepstmt = connection.prepareStatement(preparedQuery);
    prepstmt.setString(1, "%" + reqName.trim().toUpperCase() + "%");
    ResultSet rslts = prepstmt.executeQuery();
    rslts.next();
    int aidn = rslts.getInt(1);          
    int actbox = rslts.getInt(2);     String reqname = rslts.getString(3).toUpperCase();
    String reqemails = rslts.getString(4);
    String bizct = rslts.getString(5);
    String dept = rslts.getString(6);
    String loc = rslts.getString(7);
    Date datereq = rslts.getDate(8);
    String busvp = rslts.getString(9);
    AND SO ONSo then I loop it, or try to with the following:
    <%
      try {
      while ((rslts).next()) { %>
      <tr class="style17">
        <td><%=reqname%></td><td><%=reqemails %></td><td><%=bizct %></td>td><%=dept %></td>
       <td><%=aidn %></td>
      </tr>
      <%
    rslts.close();
    selstmt.close();
    catch(Exception ex){
         ex.printStackTrace();
         log("Exception", ex);
    %>AND so on, setting 13 getXXX methods of the 16 cols in the SQL statement.
    Trouble is I'm getting wildly inconsistent results.
    For example, typing 'H' (w/o quotes) will spit out 20 duplicate records of a guy named Herman, with the rest of his corresponding info correct, just repeated for some reason.
    Typing in 'He' will bring back the record twice (2 rows of the complete result set being queried).
    However, typing in 'Her' returns nothing. I could type in 'ell' (last 3 letters of his name, Winchell) and it will again return two duplicate records, but typing in 'hell' would return nothing.
    Am I omitting something crucial from the while statement that's needed to accurately print out the results set without duplicating it and that will ensure returning it?
    There's also records in the DB that I know are there but aren't being returned. Different names (i.e. Jennifer, Jesse, Jeremy) won't be returned by typing in partial name strings like Je.
    Any insight would be largely appreciated.
    One sidenote: I can go to SQL Plus and accurately return a results set through the above query. Having said that, is it possible the JDBC driver has some kind of issue?
    Message was edited by:
    bpropes20
    Message was edited by:
    bpropes20

    Am I omitting something crucial from the while
    statement that's needed to accurately print out the
    results set without duplicating it and that will
    ensure returning it?Yes.
    In this code, nothing ever changes the value of reqname or any of the other variables.
      while ((rslts).next()) { %>
      <tr class="style17">
        <td><%=reqname%></td><td><%=reqemails %></td><td><%=bizct %></td>td><%=dept %></td>
       <td><%=aidn %></td>
      </tr>
      <%
    } You code needs to be like this:while (rslts.next()) {
      reqname = rslts.getString(3).toUpperCase();
      reqemails = rslts.getString(4);
      bizct = rslts.getString(5);
      dept = rslts.getString(6);
      loc = rslts.getString(7);
      datereq = rslts.getDate(8);
      busvp = rslts.getString(9);
    %>
      <tr class="style17">
        <td><%=reqname%></td><td><%=reqemails %></td><td><%=bizct %></td>td><%=dept %></td>
       <td><%=aidn %></td>
      </tr>
      <%
    There's also records in the DB that I know are there
    but aren't being returned. Different names (i.e.
    Jennifer, Jesse, Jeremy) won't be returned by typing
    in partial name strings like Je.Well, you're half-right, your loop won't display all the rows in the result set, because you call rslts.next(); once immediately after executing the query. That advance the result set to the first row; when the loop is entered, it starts displaying at the 2nd row (or later if there are more next() calls in the code you omitted).

  • Results from permissions repair: Warning...

    Warning: SUID file "System/Library/CoreServices/Expansion Slot Utility.app/Contents/Resources/PCIELaneConfigTool" has been modified and will not be repaired.
    What is the problem with this result if any?

    You always will get a bunch of warnings from repair permissions.
    For example,
    Disk Utility's Repair Disk Permissions messages that you can safely ignore

  • 404 and other odd results from 11.2 docs in tahiti

    Just an observation, searching on things like pga at tahiti.oracle.com then clicking on 11.2 results gives 404 errors. Clicking on the 11.2 docs then searching gives not found errors. No problems with other versions. I optimistically take this as a sign that someone is updating the doc set. But it would seem odd to update at 11:00AM on a workday.

    user13312943 wrote:
    Hi,
    I would like to test downgrade process through the scripts (@catdwgrd.sql). Oracle documentation http://docs.oracle.com/cd/E18283_01/server.112/e17222/downgrade.htm
    says
    "2.If you previously installed a recent version of the time zone file and used the DBMS_DST PL/SQL package to upgrade TIMESTAMP WITH TIME ZONE data to that version, then you must install the same version of the time zone file in the release to which you are downgrading. For example, the latest time zone files that are supplied with Oracle Database 11g Release 2 (11.2) are version 14 as of this printing. If after the database upgrade, you had used DBMS_DST to upgrade the TIMESTAMP WITH TIME ZONE data to version 14, then install the version 14 time zone file in the release to which you are downgrading. This ensures that your TIMESTAMP WITH TIME ZONE data is not logically corrupted during retrieval. To find which version your database is using, query V$TIMEZONE_FILE"
    1) In my case, I used DBMS_DST and now the version if the time zone file is 14. If I have to go back to 10.2.0.4, Should i copy the files to $ORACLE_HOME/ORACORE/ZONEINFO (where $ORACLE_HOME is 10.2.0.4)?
    No - you should not copy files from the 11gR2 HOME to the 10.2.0.4 HOME - instead apply patch 9742718 to the 10.2.0.4 HOME (which corresponds to v14 of the DST patch)
    Updated DST transitions and new Time Zones in Oracle Time Zone File patches [ID 412160.1]
    2) If my Oracle 10.2.0.4 is shared with multiple instances, will i introduce risk for other databases running on the same oracle home when I copy the files?
    You will need to follow steps in 9742718 for all of the databases running out of the 10.2.0.4 HOME
    3) What other steps should I do other than copying the version 14 files into this directory?
    See above
    Thank You
    SarayuHTH
    Srini

  • Odd results from ADG608 multiplexer

    Hi dear enthusiasts,
    I am trying to use the following circuit (in the attachments) to switch between multiple resistors using a multiplexer. Initially I had different values of resistors attached to every channel, but since I was getting very strange and HUGE!! results, I grounded all the channels except the first channel and just connected a 120 ohm resistor. I am measuring resistor readings of magnitudes of Mega ohms and I have no idea how such huge values of resistance are showing up at all. I am not sure what I am doing wrong and I really really appreciate any help.
    Solved!
    Go to Solution.
    Attachments:
    MUX and quarter_bridge combo_test design2.ms12 ‏145 KB
    MUX and quarter_bridge combo_te.pdf ‏54 KB

    johnsold wrote:
    You cannot measure resistance directly in an active (powered) circuit. You must measure the voltage and current at the relevant points and use Ohm's Law to calculate the resistance. SImulators are jsut like real circuits in this regard.
    You also need to use voltages and currents which are compatible with the devices in the circuit. With 12 V applied to Y2 you will get ~100 mA flowing through S1 of the ADG608 when it is enabled.  I did not look up the specs but suspect that that is too much current.
    I only have a few minutes now and cannot draw up a circuit for you. Connect V1 to Y2 through an ammeter. This will let you measure the current through the mux. Also measure the voltage at Y1.  Then the switch resistance Rs = (V1 - V(Y1))/I(V1).
    Lynn
    Thank you very very much Lynn. I applied the setting that you were talking about which makes a very good sense and I found out that the internal S1 resistance was roughly 15 ohms. When I put a 120 ohm resistance before S1 next time I got a total resistance of around 135 ohms which makes sense considering the individual resistances of the S1 channels and the 120 ohm resistor. The 12V for V1 was also too much and I was careless about it because I thoought I had already taken that into account and had reduced it, but obviously I had not.
    Once again thank you and congratulation for being nominated the Knight of NI.
    I have attached my schematic for the sake of interest.
    Attachments:
    MUX and quarter_bridge combo_te3.pdf ‏54 KB

  • ADFS SSO and SharePoint 2013 on-premise Hybrid outbound search results from SharePoint Online - does it work?

    Hi, 
    I want to setup an outpund hybrid search for SharePoint 2013 on-premise to SharePoint Online.
    But I'm not shure if this works with ADFS SSO.
    Has somebody experience with this setup?
    Here's my guide which I'm going to use for this installation:
    Introduction
    In this post I'll show you how to get search results from your SharePoint Online in your SharePoint 2013 on-premise search center.
    Requirements
    User synchronisation ActiveDirectory to Office 365 with DirSync
    DirSync password sync or ADFS SSO
    SharePoint Online
    SharePoint 2013 on-premise
    Enterprise Search service
    SharePoint Online Management Shell
    Instructions
    All configuration will be done either in the Search Administration of the Central Administration or in the PowerShell console of your on-premise SharePoint 2013 server.
    Set up Sever to Server Trust
    Export certificates
    To create a server to server trust we need two certificates.
    [certificate name].pfx: In order to replace the STS certificate, the certificate is needed in Personal Information Exchange (PFX) format including the private key.
    [certificate name].cer: In order to set up a trust with Office 365 and Windows Azure ACS, the certificate is needed in CER Base64 format.
    First launch the Internet Information Services (IIS) Manager
    Select your SharePoint web server and double-click Server Certificates
    In the Actions pane, click Create Self-Signed Certificate
    Enter a name for the certificate and save it with OK
    To export the new certificate in the Pfx format select it and click Export in the Actions pane
    Fill the fields and click OK Export to: C:\[certificate
    name].pfx Password: [password]
    Also we need to export the certificate in the CER Base64 format. For that purpose make a right-click on the certificate select it and click on View...
    Click the Details tab and then click Copy to File
    On the Welcome to the Certificate Export Wizard page, click Next
    On the Export Private Key page, click Next
    On the Export File Format page, click Base-64 encoded X.509 (.CER), and then click Next.
    As file name enter C:\[certificate
    name].cer and then click Next
    Finish the export
    Import the new STS (SharePoint Token Service) certificate
    Let's update the certificate on the STS. Configure and run the PowerShell script below on your SharePoint server.
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # import it
    Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $PfxCert
    Type Yes when prompted with the following message.
    You are about to change the signing certificate for the Security Token Service. Changing the certificate to an invalid, inaccessible or non-existent certificate will cause your SharePoint installation to stop functioning. Refer
    to the following article for instructions on how to change this certificate: http://go.microsoft.com/fwlink/?LinkID=178475. Are you
    sure, you want to continue?
    Restart IIS so STS picks up the new certificate.
    & iisreset
    & net stop SPTimerV4
    & net start SPTimerV4
    Now validate the certificate replacement by running several PowerShell commands and compare their outputs.
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    # get the encrypted pfx certificate object
    New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # compare the output above with this output
    (Get-SPSecurityTokenServiceConfig).LocalLoginProvider.SigningCertificate
    [/code]
    ## Establish the server to server trust
    [code lang="ps"]
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    Import-Module MSOnline
    Import-Module MSOnlineExtended
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # set the onpremise domain that you added to Office 365
    $SPCN = "sharepoint.domain.com"
    # your onpremise SharePoint site url
    $SPSite="http://sharepoint"
    # don't change this value
    $SPOAppID="00000003-0000-0ff1-ce00-000000000000"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # get the raw data
    $PfxCertBin = $PfxCert.GetRawCertData()
    # create a new certificate object
    $X64Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
    # import the base 64 encoded certificate
    $X64Cert.Import($X64CertPath)
    # get the raw data
    $X64CertBin = $X64Cert.GetRawCertData()
    # save base 64 string in variable
    $CredValue = [System.Convert]::ToBase64String($X64CertBin)
    # connect to office 3656
    Connect-MsolService
    # register the on-premise STS as service principal in Office 365
    # add a new service principal
    New-MsolServicePrincipalCredential -AppPrincipalId $SPOAppID -Type asymmetric -Usage Verify -Value $CredValue
    $MsolServicePrincipal = Get-MsolServicePrincipal -AppPrincipalId $SPOAppID
    $SPServicePrincipalNames = $MsolServicePrincipal.ServicePrincipalNames
    $SPServicePrincipalNames.Add("$SPOAppID/$SPCN")
    Set-MsolServicePrincipal -AppPrincipalId $SPOAppID -ServicePrincipalNames $SPServicePrincipalNames
    # get the online name identifier
    $MsolCompanyInformationID = (Get-MsolCompanyInformation).ObjectID
    $MsolServicePrincipalID = (Get-MsolServicePrincipal -ServicePrincipalName $SPOAppID).ObjectID
    $MsolNameIdentifier = "$MsolServicePrincipalID@$MsolCompanyInformationID"
    # establish the trust from on-premise with ACS (Azure Control Service)
    # add a new authenticatio realm
    $SPSite = Get-SPSite $SPSite
    $SPAppPrincipal = Register-SPAppPrincipal -site $SPSite.rootweb -nameIdentifier $MsolNameIdentifier -displayName "SharePoint Online"
    Set-SPAuthenticationRealm -realm $MsolServicePrincipalID
    # register the ACS application proxy and token issuer
    New-SPAzureAccessControlServiceApplicationProxy -Name "ACS" -MetadataServiceEndpointUri "https://accounts.accesscontrol.windows.net/metadata/json/1/" -DefaultProxyGroup
    New-SPTrustedSecurityTokenIssuer -MetadataEndpoint "https://accounts.accesscontrol.windows.net/metadata/json/1/" -IsTrustBroker -Name "ACS"
    Add a new result source
    To get search results from SharePoint Online we have to add a new result source. Run the following script in a PowerShell ISE session on your SharePoint 2013 on-premise server. Don't forget to update the settings region
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # region settings
    $RemoteSharePointUrl = "http://[example].sharepoint.com"
    $ResultSourceName = "SharePoint Online"
    $QueryTransform = "{searchTerms}"
    $Provier = "SharePoint-Remoteanbieter"
    # region settings end
    $SPEnterpriseSearchServiceApplication = Get-SPEnterpriseSearchServiceApplication
    $FederationManager = New-Object Microsoft.Office.Server.Search.Administration.Query.FederationManager($SPEnterpriseSearchServiceApplication)
    $SPEnterpriseSearchOwner = Get-SPEnterpriseSearchOwner -Level Ssa
    $ResultSource = $FederationManager.GetSourceByName($ResultSourceName, $SPEnterpriseSearchOwner)
    if(!$ResultSource){
    Write-Host "Result source does not exist. Creating..."
    $ResultSource = $FederationManager.CreateSource($SPEnterpriseSearchOwner)
    $ResultSource.Name = $ResultSourceName
    $ResultSource.ProviderId = $FederationManager.ListProviders()[$Provier].Id
    $ResultSource.ConnectionUrlTemplate = $RemoteSharePointUrl
    $ResultSource.CreateQueryTransform($QueryTransform)
    $ResultSource.Commit()
    Add a new query rule
    In the Search Administration click on Query Rules
    Select Local SharePoint as Result Source
    Click New Query Rule
    Enter a Rule name f.g. Search results from SharePoint Online
    Expand the Context section
    Under Query is performed on these sources click on Add Source
    Select your SharePoint Online result source
    In the Query Conditions section click on Remove Condition
    In the Actions section click on Add Result Block
    As title enter Results for "{subjectTerms}" from SharePoint Online
    In the Search this Source dropdown select your SharePoint Online result source
    Select 3 in the Items dropdown
    Expand the Settings section and select "More" link goes to the following URL
    In the box below enter this Url https://[example].sharepoint.com/search/pages/results.aspx?k={subjectTerms}
    Select This block is always shown above core results and click the OK button
    Save the new query rule

    Hi  Janik,
    According to your description, my understanding is that you want to display hybrid search results in SharePoint Server 2013.
    For achieving your demand, please have a look at the article:
    http://technet.microsoft.com/en-us/library/dn197173(v=office.15).aspx
    If you are using single sign-on (SSO) authentication, it is important to test hybrid Search functionality by using federated user accounts. Native Office 365 user accounts and Active Directory Domain Services
    (AD DS) accounts that are not federated are not recognized by both directory services. Therefore, they cannot authenticate using SSO, and cannot be granted permissions to resources in both deployments. For more information, see Accounts
    needed for hybrid configuration and testing.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Search has encountered a problem that prevents results from being returned. If the issue persists, please contact your administrator.

    Hello Guys,
    I am creating resultsource from central admin. If I create it from central admin it works fine. But if I am creating result source from power shell scripts it shows me following error message.
    An exception of type 'Microsoft.Office.Server.Search.Query.InternalQueryErrorException' occurred in Microsoft.Office.Server.Search.dll but was not handled in user code
    Additional information: Search has encountered a problem that prevents results from being returned.  If the issue persists, please contact your administrator.
    Any suggestion ?
    Thanks in Advance.

    Hi,
    Please provide more specific information about the issue. What type of content source you tried creating via powershell?
    Make sure you are using the approproate permission and search service application.
    Here is the reference for creating content resource via script:
    http://technet.microsoft.com/en-us/library/ff607867(v=office.15).aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Itunes on Windows plays one song from library and stops

    I am a new ipod owner and new to itunes. Loaded many CD's, videos and audiobooks without difficulty into itunes 6.0.4.2. Library of songs is extensive but trying to play songs from library results in itunes playing ONLY one selected song. I must re-select another song in order to play another. It will not continue to play the songs in the library. I have re-installed itunes and that did not correct the problem. Also tried selecting multiple songs and still itunes only plays the 1st song of the list. Obviously I've done something wrong or have not done something that is required. I've check all I know and have also not found this problem in the discussion groups. What am I doing wrong? Any help would be appreciated. Thanks

    This'll happen when all of the checkboxes are unchecked. iTunes will only play unchecked songs if they are directly clicked.
    To check all songs, ctrl+check one.

  • Results from SQL_TRACE

    Hello -
    I have the following results from running a SQL_Trace for a session. The first Insert statement uses all bind variables, so it's executed 785 times with 0 missed parses in the Library Cache. The second Insert statement does not use bind variable for two date columns, so this Insert statement is executed anywhere from 1 to 4 times, but there are hundreds of these Insert statements in my trace file. Should performance improve if the second statement uses bind variables for the date columns?
    Thanks.
    1. Insert statement that uses all bind variables:
    insert into SERVICE_EVENT (ACT_UID, SEV_SEQ_NO, RPCS_SOURCE_NM,
    SEV_FUNCTION_XX, CLIENT_NM, SEV_HOST_NM, SEV_CICS_TASK_ID, SEV_RECEIVE_TS,
    SEV_SEND_TS, SEV_SEND_BYTE_CT, SEV_RECEIVE_BYTE_CT, SEV_G_MESSAGE_XX,
    SEV_A_MESSAGE_XX, SERVICE_NM, SEV_SERVER_NM, ORGANIZATION_NM,
    APPLICATION_ID, RPC_SEQ_NO)
    values
    (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18)
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 785 0.18 0.19 0 681 5210 785
    Fetch 0 0.00 0.00 0 0 0 0
    total 785 0.18 0.19 0 681 5210 785
    2. Insert statement that does not use bind variables for the data columns:
    insert into SERVICE_EPISODE (ACT_UID, SE_SERVER_NM, SE_REQ_BYTE_CT,
    SE_RESP_BYTE_CT, SE_REQ_XML_XX, SE_RESP_XML_XX, SVX_XML_STYLE_NM,
    ORGANIZATION_NM, APPLICATION_CD, CLIENT_REQ_ID, DURATION_MS, STATUS_CD,
    SE_REQ_USER_ID, SE_REQ_RACF_IDS, SE_REQ_TS, SE_RESP_TS)
    values
    (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,TO_DATE('05/18/05 16:31:17',
    'MM/DD/YY HH24:MI:SS'), TO_DATE('05/18/05 16:31:17','MM/DD/YY HH24:MI:SS'))
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.00 0 0 0 0
    Execute 2 0.00 0.00 0 4 45 2
    Fetch 0 0.00 0.00 0 0 0 0
    total 4 0.00 0.00 0 4 45 2

    Should performance improve if the second statement uses bind variables for the date columns? Probably, it depends on how expense the parse is compared to the rest of teh query execution. But generally, if you've got hundreds of statements which are the same except for literals then it's usually a good idea to replace them with a statement that uses bind variables. The best thing to do is benchmark it.
    Cheers, APC

  • Kernel Panic resulting from force restart

    My MBP has gone into Kernel Panic and I am not certain how to resolve. By resolve, I mean get back to my desktop/applications The Kernel Panic resulted from a force restart, held down the Power button because I was attempting do a regular shutdown but was not able to force quit some applications..they seemed to be hanging. Safari was one, iPhoto...also I had just synced a new iPad2. Maybe I didn't disconnect the iPad2 properly? I did have anything connected to the MBP...
    I tried to startup in Safe Mode...but will not, just the kernel panic with instructions to hold down power button and restart...my MBP runs pretty well and I have never had a Kernel Panic since I bought it in August 2009
    I do have most of the files backed up using TimeMachine on an external drive...
    I have a my 15-inch MacBook Pro Mac Os X install DVD, that came with the Laptop...
    There might have been another DVD that came with the box set/ I also have my Snow Leopard upgrade DVD. I believe I was running 10.6.5 but I keep up with the System Software updates and I was also getting prompted to update to the latest 10.6.7, so maybe I had 10.6.6.
    So Kernel Panic is has never happened before, I didn't add anything, except for an iPad2 sync... but I believe that I got too impatient to shutdown when I couldn't force quit apps as quickly as I wanted too
    I think the Apple Software updater was open, although I did not initiate an update, other apps included: Microsoft Word Safari, iPhoto, iTunes, Dreamweaver, Adobe Illustrator CS..maybe Photoshop..Yeah I think I had too many apps open when I tried to force restart. In practice I do not force restart...usually never. So to recap, I got impatient, force restarted with way too many apps, some big apps open, and set off a kernel panic on my MBP with no other devices attached.
    I know part of the steps to recover involves booting from a DVD, but which one? The Mac OSX X Install DVD or the Snow Leopard Upgrade DVD? then...how to I get back to TimeMachine to do a restore if necessary?
    thanks in advance.
    Patrick

    Sadly,
    After running and completing the hardware test which is passed..I then booted off the Snow Leopard DVD and ran the Disk Utility and to Repair the Disk and it said the Disk is not repairable..
    Invalid Node Structure
    And told me to back up my files.
    So...I suppose the next steps:
    Try to run DiskWarrior, to either fix the Invalid Node Structure or at least
    retreive the files thru the HD preview.
    Boot off the Snow Leopard DVD and reformat the drive and then, I should plug my external hard drive back in with the save Time Machine Data and I can click Restore and pretty much get back what I had when Time Machine made its last back up?
    If Disk Warrior does not work. How can I try to get some files off the computer before I reformat the disk ... without using DiskWarrior? With or without DW I want to try a restore...
    Is it a best practice to reformat the HD and then do a "Restore" off a bootable DVD? This would eliminate any previous issues and start off with a sound drive as opposed to trying to go right to a "restore" procedure.
    Thanks again!

  • Clear search results from Content Services Windows Crawl 6.1

    We have ALI Content Services Windows Files 6.1 with a crawl job on a network location. It works fine. Now we have changed the location - directory structure. The job, modified with the new location works fine, however, we still see search results from the old location also. Since those documents no longer exist, clicking on the link causes an error. How do we clear the search results?
    Thanks.

    Have you tried running Search Repair. I believe this should clear out the orphaned search records.

  • Lightroom 2015 version on creative cloud I am getting a blue screen with x mark when i am switch from library to develop mode

    Lightroom 2015 version on creative cloud I am getting a blue screen with x mark when i am switch from library to develop mode

    Hi Chandan,
    Kindly try the below mentioned link.
    Adobe Photoshop Lightroom Help | Lightroom GPU FAQ
    Please share the results once you have tried the steps.
    Thanks,
    Atul Saini

  • Files missing from library after archive and install

    Hi forum folk
    any help you could give would be much appreciated.
    I can't seem to verify my permissions on HD. I have run disk utility both from finder and from my OSX startup disk and consistently get the error message "Disk Utility has lost its connection with the Disk Management Tool and cannot continue." I then reinstalled the operating system all together making sure to archive and install as well as archive previous network and preference settings. This means I am running 10.3.4 at the moment (and I can't verify any of the software updates at the moment). After reinstalling I still cannot verify my permissions, so now I am trying to back up all my files so that I can reinstall the OSX again, erase everything, and start from scratch. But I'm running into some very strange problems while doing this. select files are missing from ~/library. there is no Safari file, for example. I tried looking in HD/previous systems/library where my library files were saved before I reinstalled the operating system but there is no such folder in there either. this means all of my bookmarks are gone. additionally, under library/preferences (in both the old and new library folders) there is no file named com.apple.itunes.plst. so all of my itunes playlists are gone as well. these are the only missing files I have found thus far and i can't explain why they selectively would not have been saved after the archive and install. Everything else seems to be intact. Any ideas?
    thanks
    jb
    powerbookG4   Mac OS X (10.3.9)   running 10.3.4 at the moment - can't verify permissions on 10.3.9

    jbeep:
    my HD has a capacity of 8.85 GB available. When I reinstalled panther I had little more than 3 GB available (I deleted a bunch of unneeded things since then)
    Thanks for this update. What is the total formatted capacity of your HDD? I ask because I suspected that you might be cutting it pretty close. The rule of thumb is that you should have 10-15% of your total capacity available as free space. My personal rule is 15%-20%. This allows for more efficient perfomrance of OS X.
    I am in the process of backing up everything on my seagate combo USB 2.0/firewire 200 GB external (I am using the firewire cord)
    Having an up-to-date backup is one of the primary rules, often observed more in the breach than not. Since you have an HDD that supports Firewire, I suggest that you make a bootable clone of your entire HDD using SuperDuper. You can then use this backup as an emergency boot drive. However, it must be Firewire, as PPC Macs don't boot from USB devices.
    I also have heard that it is advisable to reinstall the OS "every now and again" and I hadn't done this for at least two years. was I ill-advised?
    Most experienced Mac users never re-install, except under dire circumstances. Since installing my new HDD in this computer I have never re-installed. Re-installation is the utlimate intrusive measure, and it exposes one to all kinds of issues, from lost data, to flawed installaton, to installations that fail midstream. Re-installation is not an effective maintenace procedure. Here are some helpful links in terms of maintenance:
    Mac OS X 10.3/10.4: System maintenance
    Macintosh OS X Routine Maintenance
    Maintaining OS X.
    I'm going to restart now and try and verify my permissions again using the procedure on the above link. I'll let you know what happens.
    Instead of verifying permissions, just go ahead and Repair Disk Permissions. Verifying permissions does nothing, and wastes your time, as it is difficult to tell whether you need to repair, and you have to repair anyway.
    Do post back with an update of your progress and any further questions or comments.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • Paging results from openSearch source

    Hi
    I have created a result source and connected it to an aspx page that I have created which gets a search phrase as parameter and renders results in OpenSearch 1.1 protocol.
    Im displaying the results in a search center with OOTB search webparts.
    Basically everything works ok besides 2 things:
    1. The search results paging doesnt work. when I click on a page in the paging links i can see the request arrives to my aspx page but no indication for the requested page is shown
    2. The search results from the result source i have created are halted if it takes more than 15 seconds to render the results, is there any way to change this interval? from the log i can see its a webrequest timeout but couldnt find the place to modify
    it.
    Thanks in advance,
    Yuval

    I'm not sure about paging, but it doesn't look like the Core Results Web Part allows you to set the timeout limit. If you were returning the results via code, you could use the following property:
    http://msdn.microsoft.com/en-us/library/microsoft.office.server.search.query.querymanager.timeout(v=office.15).aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Can PU12 fetch results from 3rd-party payroll systems?

    Gurus:
    We have configured PU12 to export master data or master/payroll data to 3rd-part systems.
    Could you tell us how to fetch the results from external 3rd-party systems back to our ECC system?
    Thanks!

    Hi Ashley,
    You can import the wage types from 3rd party systems into SAP. Then you can run the payroll in SAP system.
    Check the following description taken from help.sap.com.
    You use the Import wage types function to transfer wage types from a third-party system to the
    payroll results of the SAP System.
    For more information, see the Implementation Guide (IMG) for Cross Application
    Components under Predefined ALE Business Processes   Human Resources 
    HR External Systems   Connection With an External Payroll System   Import
    Payroll Results or in the SAP Library under CA Cross Application Components 
    Business Framework Architecture (CA-BFA)   Library of ALE Business Processes
      Human Resources   Human Resources - External Applications   Process Flow:
    Import Payroll Results from a Third-Party System [Ext.].
    Starting the Import
    Prerequisites
    You have successfully run payroll in a third-party system.
    Procedure
    1. In the menu, choose Import wage types   Create IDocs.
    You access the IDoc Inbound Processing Via File screen.
    2. In the Complete file name field, enter the name of the input file.
    3. Choose Execute.
    The system message contains the number of created IDocs.
    4. In the menu, choose File   Import wage types   Create IDocs.
    You access the Inbound Processing of IDocs Ready for Transfer screen.
    5. Enter MANAGEREXTPAYROLL_INSERTOUT as the Message type and, if required, enter the
    Creation date and the Creation time.
    6. Choose Execute.
    Result
    The wage types created in the third-party system are available for further processing in the
    interface tables of the SAP System.
    You can then start payroll in the SAP System and perform the subsequent payroll activities:
      Create a remuneration statement
      Run posting to Accounting
    Regards,
    Dilek

Maybe you are looking for

  • Data download as on date

    Dear All, In download scheduler I schedule the report, I need to download the reports as on date on daily basis. How can I specify date criteria as current date while scheduling the report. Is there any other way I can schedule and download the repor

  • Video Track for Broadcast Safe

    I I have a project that has a duration of 28 minutes - is there a way to insert in one of my empty video tracks above the existing clips - a continuous (28 minute) empty track in which I could dump a Broadcast Safe filter and control that function gl

  • ScrollPane vertical scroll bar positioning

    I have a ScrollPane that holds a number of number of sprites. The sprites are like rows and I would like them to fill the width of the ScrollPane. My problem is that if there are not enough sprites to fill the vertical space of the ScrollPane, then n

  • Oracle 10g R2 x64 Windows - Memory allocation

    I've installed Oracle 10g R2 x64 on Windows Server 2003 STD X64. My SGA is configured to use 65% of total memory (3,5Gb). After few days since instance startup, virtual meory size grow up to 6Gb and OS crash. Anyone can help me? Thanks in advance

  • My backward and forward arrows are missing when I download Firefox 4.0

    My brother was at my home this past weekend and he downloaded Firefox 4.0 to his Windows Vista laptop and the download worked perfectly. When he downloaded Firefox 4.0 to my Windows Vista desktop, the download is missing the backward and forward arro