DDIC Dictionary check for indexes

Hi,
We have few indices that are created at Database level, but not at ABAP Dictionary level. What is the best way to check for consistency between DDIC dictionary and Database? to get the list of indices that are exiss in DB but not in ABAP?
Any suggestions...
Thanks,
Kumar

Kumar Subramaniam wrote:
Hi,
>
> We have few indices that are created at Database level, but not at ABAP Dictionary level. What is the best way to check for consistency between DDIC dictionary and Database? to get the list of indices that are exiss in DB but not in ABAP?
>
> Any suggestions...
>
> Thanks,
> Kumar
Try to access transaction SE14.

Similar Messages

  • Check for index existing

    I'm a DBA working with 3 application developers, they want to know how to check for index existing for certain column
    in a table in their schema,
    one friend told me , to check for index existing for certain column you have to query
    the view dba_ind_columns so you have to be a sysdba user
    but I don't want to grant the application developers the sysdba privilage
    but my friend told me , to avoid grant sysdba to the application developers, they can query the view user_indexes in their schema, but after watching the view user_indexes ,
    it gives me a lot of data but doesn't give me the COLUMN NAME
    how can I solve this problem which is :
    Allow the application developers to check for index existing for certain column in their schema without granting them sysdba privilage.

    You can use that query:
    select ai.index_name INDEX_NAME,
    substr(ic.column_name, 1, 30) COLUMN, ic.column_position POSITION,
    ic.table_name TABLE,
    ai.tablespace_name TABLESPACE
    from all_ind_columns ic, all_indexes ai
    where ai.index_name = ic.index_name and ai.table_name = 'TABLE_NAME' and ai.table_owner='OWNER'

  • Java: How can one check for index out of bound?

    simple while loop
    while (something [ i ] ==k)
    i+=1;
    document.write(save [ i ]);
    Thanks everyone :o)
    Edited by: bvc on Sep 21, 2007 3:33 PM
    Edited by: bvc on Sep 21, 2007 3:34 PM
    Edited by: bvc on Sep 21, 2007 3:34 PM

    you need to make sure that i is always less than the length of the array, so in your while loop, you should have that as one of your conditions
    while( i < something.length && something[i] == k )
      //blah blah
    }Also, please encapsulate your code in code tags.

  • Spell Check for Devnagari by creating new dictionary

    In Simple text editor I want to do spell check for Devnagari. For this I need to create Dictionary for Devnagari words.
    Can anyone guide me for this??
    Thanks in advance

    prometheuzz wrote:
    sanjivoak wrote:
    Any source Code link or help??
    [http://www.google.com/search?q=create+spell+checker+java+code]
    Didn't sink in the first time!

  • Check for empty session variable

    Hey there we're making a login for our jsp web application.
    The login allready works and so does the log out but now we want to make a check to make it impossible to login with names that are not in the database.
    So what basicly happens is as follows...
    Login reads the database info:
    while (rs.next()) {
         if (request.getParameter("username").equals(rs.getString("username")) && request.getParameter("password").equals(rs.getString("password"))){
              session.setAttribute("username", rs.getString("username"));
              session.setAttribute("firstname", rs.getString("first_name"));
              session.setAttribute("lastname", rs.getString("last_name"));
    }but when you enter invalid information teh session variabe "lastname" for example should read null. Now we want to make a check for this null value, which should look something like this:
    if(session.getAttribute("username").equals(null)){
         response.setStatus(301);
         response.setHeader("Location", "/index.jsp");
    } else {
         response.setStatus(301);
         response.setHeader("Location", "/mainmenu.jsp");
    }But this doesnt work, it just logs in with the null values... any1 got a clue??
    edit: im actually looking for something like the isSet command in PHP to give an idea...
    Message was edited by:
    whappit

    Your test for null will always fail, because request.getParameter("username") is NEVER null, in that it exists, even though it contains no data.
    Try .equals(""); instead.

  • TS1702 I downloaded a free Merriam-Webster dictionary app for use on my iphone 5.  I thought I executed the steps to download it properly...I do see it in my App Store 'purchased' list, but I don't see it actually activated and ready for use anywhere...he

    I downloaded a free Merriam-Webster Dictionary app for use on my iphone 5.  I thought I followed the download process properly, but cannot see that the app is launched on my phone.  I have checked my phone for 'updates' and the app is listed among the ones I have purchased.  I clicked on it and it began installing, however, it still has not launched.  I get a message screen to sign in with my Apple ID, which I tried, and I get the message that I have purchased this app and it will download.  When I try to sign in, I get the message that it can't connect to the itunes store and to retry.  I've done that several times without any luck...not sure where else to look for the 'working' app.  I did try re-booting the phone...even did a 'hard reset' to no avail...help?

    Anything* >.<

  • Check for duplicate record in SQL database before doing INSERT

    Hey guys,
           This is part powershell app doing a SQL insert. BUt my question really relates to the SQL insert. I need to do a check of the database PRIOR to doing the insert to check for duplicate records and if it exists then that record needs
    to be overwritten. I'm not sure how to accomplish this task. My back end is a SQL 2000 Server. I'm piping the data into my insert statement from a powershell FileSystemWatcher app. In my scenario here if the file dumped into a directory starts with I it gets
    written to a SQL database otherwise it gets written to an Access Table. I know silly, but thats the environment im in. haha.
    Any help is appreciated.
    Thanks in Advance
    Rich T.
    #### DEFINE WATCH FOLDERS AND DEFAULT FILE EXTENSION TO WATCH FOR ####
                $cofa_folder = '\\cpsfs001\Data_pvs\TestCofA'
                $bulk_folder = '\\cpsfs001\PVS\Subsidiary\Nolwood\McWood\POD'
                $filter = '*.tif'
                $cofa = New-Object IO.FileSystemWatcher $cofa_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
                $bulk = New-Object IO.FileSystemWatcher $bulk_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
    #### CERTIFICATE OF ANALYSIS AND PACKAGE SHIPPER PROCESSING ####
                Register-ObjectEvent $cofa Created -SourceIdentifier COFA/PACKAGE -Action {
           $name = $Event.SourceEventArgs.Name
           $changeType = $Event.SourceEventArgs.ChangeType
           $timeStamp = $Event.TimeGenerated
    #### CERTIFICATE OF ANALYSIS PROCESS BEGINS ####
                $test=$name.StartsWith("I")
         if ($test -eq $true) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("L")
           $tempItem=$left.substring(0,$pos)
           $lot = $left.Substring($pos + 1)
           $item=$tempItem.Substring(1)
                Write-Host "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\CofA.csv -Append -InputObject "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"
                start-sleep -s 5
                $conn = New-Object System.Data.SqlClient.SqlConnection("Data Source=PVSNTDB33; Initial Catalog=adagecopy_daily; Integrated Security=TRUE")
                $conn.Open()
                $insert_stmt = "INSERT INTO in_cofa_pvs (in_item_key, in_lot_key, imgfileName, in_cofa_crtdt) VALUES ('$item','$lot','$name','$timestamp')"
                $cmd = $conn.CreateCommand()
                $cmd.CommandText = $insert_stmt
                $cmd.ExecuteNonQuery()
                $conn.Close()
    #### PACKAGE SHIPPER PROCESS BEGINS ####
              elseif ($test -eq $false) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("O")
           $tempItem=$left.substring(0,$pos)
           $order = $left.Substring($pos + 1)
           $shipid=$tempItem.Substring(1)
                Write-Host "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\PackageShipper.csv -Append -InputObject "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"
    Rich Thompson

    Hi
    Since SQL Server 2000 has been out of support, I recommend you to upgrade the SQL Server 2000 to a higher version, such as SQL Server 2005 or SQL Server 2008.
    According to your description, you can try the following methods to check duplicate record in SQL Server.
    1. You can use
    RAISERROR to check the duplicate record, if exists then RAISERROR unless insert accordingly, code block is given below:
    IF EXISTS (SELECT 1 FROM TableName AS t
    WHERE t.Column1 = @ Column1
    AND t.Column2 = @ Column2)
    BEGIN
    RAISERROR(‘Duplicate records’,18,1)
    END
    ELSE
    BEGIN
    INSERT INTO TableName (Column1, Column2, Column3)
    SELECT @ Column1, @ Column2, @ Column3
    END
    2. Also you can create UNIQUE INDEX or UNIQUE CONSTRAINT on the column of a table, when you try to INSERT a value that conflicts with the INDEX/CONSTRAINT, an exception will be thrown. 
    Add the unique index:
    CREATE UNIQUE INDEX Unique_Index_name ON TableName(ColumnName)
    Add the unique constraint:
    ALTER TABLE TableName
    ADD CONSTRAINT Unique_Contraint_Name
    UNIQUE (ColumnName)
    Thanks
    Lydia Zhang

  • Install 3rd party PDF iFilter for index PDF file as attachment in e-mail (msg)

    I have called Microsoft Permium Support, base on the reply, SharePoint 2013 does not support to index a PDF file attachment in E-mail (msg) except 3rd party iFilter installed. And they finally told me how to edit Windows Registry for install the Adobe iFilter.
    But, the Adobe iFilter is too weak to call large PDF files. So, I would like to install and try the Foxit PDF iFilter, but I cannot find an installation guide for this 3rd party ifilter with SharePoint 2013. 
    Does anyone here have the experience for Foxit PDF iFilter with SharePoint 2013 can help me?
    I am not sure it is bug or feature in SharePoint 2013, but in case I still have to install 3rd party iFilter for index PDF file. I have no idea what is the out of box pdf file indexing support for.

    You ca plan to use Foxit. 
    steps are nearly the same which we use in sharepoint 2013
    1. We need to update registry for pdf . Registry value is {987f8d1a-26e6-4554-b007-6b20e2680632}
    2. we need to install the foxit ifilter
    Here are steps for same
    http://support.microsoft.com/kb/2293357
    3. run below command:
    net stop spsearch4
    net start spsearch4
    net stop osearch14
    net start osearch14
    Check below:
    http://bjarnegram.wordpress.com/2011/07/13/installing-foxit-pdf-ifilter-on-sharepoint-server-2010/

  • Duplicate check for Connection Objects in CRM

    Hi,
    I want to implement a duplicate check for connection objects in CRM. The duplicate check shall use the address of the connection object and perhaps additonal attributes. I have found a duplicate check for business partners using the basis address service and TREX as index pool. However, I couldn't find a similar functionality for connection objects. Does somebody know:
    1) How to implement a duplicate check for connection objects which is based on the address of the connection object?
    2) Is there a way to use the TREX-based duplicate check which is integrated into the basis address service for connection objects?
    Thanks in advance!
    Best regards,
    Frank

    I also have a requirement to check for duplicate address at connection object level and we are using SAP data servies to validate the address. Can anyone share their experience.

  • When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    If you have iOS 7.1 then you must be a developer, so you should be posting in the developer forums : https://devforums.apple.com/index.jspa

  • The spell check for arabic language in pages v 5.2 are Not working ! please Help !

    The spell check for arabic language in pages v 5.2 in mavericks are Not working ! please Help !

    MANKWT wrote:
    No i Did Not !
    Perhaps you can find an Arabic dictionary for OpenOffice.  That may also work with OS X.
    http://m10lmac.blogspot.com/2011/06/extra-spell-checking-dictionaries-for.html

  • Check Missing Indexes

    Hi All,
    We have a Database with many tables using foreign keys. Some of my queries from coldfusion are slow. We are using 11g version.
    It's a way to check for missing indexes?
    I would like to help the database to perform better, I know this is a huge topic but as new in oracle I need to start somewhere.
    Any links or comments will be appreciate it.
    Regards
    Johnny

    i have created a two step process for finding which Foreign key is not indexed
    1. create a table having the ddl of all indexes
    CREATE TABLE INDEX_TXT_TBD AS
    SELECT DBMS_METADATA.GET_DDL('INDEX',INDEX_NAME) TXT FROM USER_INDEXES WHERE INDEX_TYPE='NORMAL' AND INSTR(INDEX_NAME,'$') = 0
    2. create a table which will tell the tablename, columnname (FK) who are not indexed
    CREATE TABLE INDEX_TBD AS
    select distinct
         user_cons_columns.TABLE_NAME,
         user_cons_columns.COLUMN_NAME
    from
         user_cons_columns,
         user_constraints,
         INDEX_TXT_TBD,
    where
         user_constraints.CONSTRAINT_NAME=user_cons_columns.CONSTRAINT_NAME
         and CONSTRAINT_TYPE='R'
         AND INSTR(TXT,'"' || user_cons_columns.TABLE_NAME || '" ("' || user_cons_columns.COLUMN_NAME || '")') = 0

  • Cannot check for updates in Mountain Lion - NSURLErrorDomain error -1100

    Hi all,
    When I try to check for software updates I get the notification that an error has occurred -
    NSURLErrorDomain error -1100
    Anyone else with similar experience?
    Thanks
    Thomas

    Hi, as I mentioned I've faced the same problem. MBP late 2011 with 10.8.1.
    Here's the logfile content for inspection and probably help:
    Sep 13 12:30:03 Michaels-MacBook-Pro newsyslog[1691]: logfile turned over due to size>1000K
    Sep 13 12:33:49 Michaels-MacBook-Pro.local Software Update[1032]: SUAppStoreUpdateController: proceed with scan based on intervening install (including iTunes at 2012-09-13 10:25:24 +0000) (last scan: 2012-09-12 11:55:33 +0000)
    Sep 13 12:33:49 Michaels-MacBook-Pro.local Software Update[1032]: SoftwareUpdate: Scan for client pid 1032 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep 13 12:33:50 Michaels-MacBook-Pro.local Software Update[1032]: SoftwareUpdate: Using catalog https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog.gz
    Sep 13 12:33:54 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:RICOH;MODEL:RICOH Aficio MP C2800 PS
    Sep 13 12:33:54 Michaels-MacBook-Pro.local Software Update[1032]: Can't load distribution from https://swdist.apple.com/content/downloads/31/40/zzzz041-6901/mmfalra8cou4u81xz0 i3jkk9hud6vdv09j/041-6901.German.dist.gz: Error Domain=NSURLErrorDomain Code=-1100 "Der Vorgang konnte nicht abgeschlossen werden. (NSURLErrorDomain-Fehler -1100.)" UserInfo=0x7f97af8454d0 {PKURLErrorResponseHeaders=<CFBasicHash 0x7f97af861b70 [0x7fff76bc4190]>{type = immutable dict, count = 8,
              entries =>
                        0 : Case Insensitive Key: Server = <CFString 0x7f97af8d1320 [0x7fff76bc4190]>{contents = "AkamaiGHost"}
                        1 : Case Insensitive Key: Content-Type = <CFString 0x7fff76bab310 [0x7fff76bc4190]>{contents = "text/html"}
                        2 : Case Insensitive Key: Vary = <CFString 0x7f97abafbb00 [0x7fff76bc4190]>{contents = "Accept-Encoding"}
                        5 : Case Insensitive Key: Mime-Version = <CFString 0x7fff76baa790 [0x7fff76bc4190]>{contents = "1.0"}
                        6 : Case Insensitive Key: Date = <CFString 0x7f97af862990 [0x7fff76bc4190]>{contents = "Thu, 13 Sep 2012 10:33:54 GMT"}
                        10 : Case Insensitive Key: Content-Length = <CFString 0x7fff76ba0050 [0x7fff76bc4190]>{contents = "268"}
                        11 : Case Insensitive Key: Expires = <CFString 0x7f97af8507f0 [0x7fff76bc4190]>{contents = "Thu, 13 Sep 2012 10:33:54 GMT"}
                        12 : Case Insensitive Key: Connection = <CFString 0x7f97af843240 [0x7fff76bc4190]>{contents = "keep-alive"}
              , PKURLErrorStatusCode=503, NSErrorFailingURLStringKey=https://swdist.apple.com/content/downloads/31/40/zzzz041-6901/mmfalra8cou4u81xz0 i3jkk9hud6vdv09j/041-6901.German.dist.gz}
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: 1.8s to run getPPDVersion -all /Library/Printers/PPDs/Contents/Resources
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: Added 244 PPD versions from /Library/Printers/PPDs/Contents/Resources
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Ricoh_Drivers does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:RICOH;MODEL:RICOH Aficio MP C2800 PS
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Ricoh_Drivers does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:RICOH;MODEL:RICOH Aficio MP C2800 PS
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Ricoh_Drivers does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:RICOH;MODEL:RICOH Aficio MP C2800 PS
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Ricoh_Drivers does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: 10.8.1
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICAMPSeries07xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICACommon does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_PDEs does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_SharedLibraries11 does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_InkjetMGSeries10xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_Frameworks does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICACommon does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICAMPSeries07xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_InkjetMGSeries10xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_PDEs does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_SharedLibraries11 does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_Frameworks does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_Frameworks does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICACommon does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICAMPSeries07xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_InkjetMGSeries10xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_PDEs does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_SharedLibraries11 does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_Frameworks does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICACommon does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_ICAMPSeries07xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_InkjetMGSeries10xx does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_PDEs does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Connected printer: MANUFACTURER:Canon;MODEL:MG5300 series
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: Printer Canon_SharedLibraries11 does not require an update.
    Sep 13 12:33:56 Michaels-MacBook-Pro.local Software Update[1032]: JS: model = MacBookPro8,1
    Sep 13 12:34:00 Michaels-MacBook-Pro.local Software Update[1032]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1100 "Der Vorgang konnte nicht abgeschlossen werden. (NSURLErrorDomain-Fehler -1100.)" UserInfo=0x7f97af8454d0 {PKURLErrorResponseHeaders=<CFBasicHash 0x7f97af861b70 [0x7fff76bc4190]>{type = immutable dict, count = 8,
              entries =>
                        0 : Case Insensitive Key: Server = <CFString 0x7f97af8d1320 [0x7fff76bc4190]>{contents = "AkamaiGHost"}
                        1 : Case Insensitive Key: Content-Type = <CFString 0x7fff76bab310 [0x7fff76bc4190]>{contents = "text/html"}
                        2 : Case Insensitive Key: Vary = <CFString 0x7f97abafbb00 [0x7fff76bc4190]>{contents = "Accept-Encoding"}
                        5 : Case Insensitive Key: Mime-Version = <CFString 0x7fff76baa790 [0x7fff76bc4190]>{contents = "1.0"}
                        6 : Case Insensitive Key: Date = <CFString 0x7f97af862990 [0x7fff76bc4190]>{contents = "Thu, 13 Sep 2012 10:33:54 GMT"}
                        10 : Case Insensitive Key: Content-Length = <CFString 0x7fff76ba0050 [0x7fff76bc4190]>{contents = "268"}
                        11 : Case Insensitive Key: Expires = <CFString 0x7f97af8507f0 [0x7fff76bc4190]>{contents = "Thu, 13 Sep 2012 10:33:54 GMT"}
                        12 : Case Insensitive Key: Connection = <CFString 0x7f97af843240 [0x7fff76bc4190]>{contents = "keep-alive"}
              , PKURLErrorStatusCode=503, NSErrorFailingURLStringKey=https://swdist.apple.com/content/downloads/31/40/zzzz041-6901/mmfalra8cou4u81xz0 i3jkk9hud6vdv09j/041-6901.German.dist.gz}
    Sep 13 12:34:00 Michaels-MacBook-Pro.local Software Update[1032]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error Der Vorgang konnte nicht abgeschlossen werden. (NSURLErrorDomain-Fehler -1100.)

  • Boxee-source compilation "checking for main in -ldl... no"

    Hello Guys and Girls,
    I'm trying to get Boxee to run on my laptop so that I can setup up on a small homebuild HTPC running a naked Arch Linux Installation in the future.
    I have tried the versions that are in the AUR and got them to install after linking some header files, downgrading glew etc. but they are very old and
    are teaming with bugs. The repo found in the Wiki https://wiki.archlinux.org/index.php/Boxee-source is outdated as well. The current Version is 1.5
    and it is downloading 0.9.8.something from the repo.
    There are 32 and 64 bit *.deb's for Ubuntu available on boxee.tv/download, but Ubuntu is way to bloated and I don't know how to work with it
    when it comes to more advanced configuration (booting straight into X11 and starting boxee trough .xinitrc which worked fine with xbmc).
    Made me realize what a great learning tool Arch Linux is.
    So I downloaded the Sorce Code and extracted it and opened the README.ubuntu to find some building instructions.
    TOC
    1. Introduction
    2. Installing the required Ubuntu packages
    3. How to compile
    4. Create Installer
    1. Introduction
    We currently recommend Ubuntu 11.10.
    NOTE TO NEW LINUX USERS: All lines that are prefixed with the '#'
    character are commands that need to be typed into a terminal window /
    console (similar to the command prompt for Windows). Note that the '#'
    character itself should NOT be typed as part of the command.
    2. Installing the required Ubuntu packages
    # sudo apt-get install make g++ gcc gawk pmount nasm automake cmake bison libsdl1.2-dev libsdl-image1.2-dev libfribidi-dev liblzo2-dev libfreetype6-dev libsqlite3-dev libogg-dev libasound2-dev python-sqlite libglew1.5-dev libcurl4-openssl-dev libmad0-dev libogg-dev libvorbis-dev libsmbclient-dev libmysqlclient-dev libpcre3-dev libdbus-1-dev libjasper-dev libfontconfig1-dev libbz2-dev libboost-dev libfaac-dev libenca-dev libpng12-dev libjpeg62-dev libcdio-dev libsamplerate0-dev libmms-dev libmpeg3-dev libfaad-dev libflac-dev doxygen php5 swig libssl-dev libgdbm-dev libvdpau-dev libxmu-dev libxtst-dev libxinerama-dev libhal-dev libhal-storage-dev gperf libtool
    3. How to compile
    # ./bootstrap
    # ./configure --enable-optimizations --disable-debug
    # make -j4
    # make -C tools/TexturePacker -f Makefile.host
    # rm skin/boxee/media/Textures.xbt
    # make -C skin/boxee/media
    4. Create installer
    # cd debian
    # sudo ./make_debian.sh
    ./bootstrap wored fine.
    With ./configure I ran into problems a few times but managed to fix them on my own ( installed libmms, lz02, mysql-clients etc. when check failed)
    but now I'm stuck at: "checking for main in -ldl... no" and I have no clue how to fix it. What am I missing?
    Once I get this to compile and run I want to contribute my first package to the AUR. Would be a good opportunity to get familiar with ABS, PKGBUILDs and all
    that.
    Regards,
    blackout23
    Last edited by blackout23 (2011-12-30 22:42:21)

    Looks like a linking issue?
    http://phaseit.net/claird/comp.unix.programmer/linking-unix.html wrote:
    Linux's dl library
    There are at least two distinct problem symptoms with dynamic-linking that Linux users frequently report: that
        the configure for Tcl and/or derivatives think that dynamic linking is not possible; and
        a makefile which attempts dynamic linking fails for not resolving "... -ldl ..." adequately.
    To the best of my knowledge, all instances of the former problem have been traced back to an inconsistency between configure and other sources, typically the result of incomplete application of a patch, mis-installation of a compiler and its ancillary libraries, or some sort of cross-OS contamination. As far as I know, correcting any compiler problems and doing a "make distclean" to sanitize the Tcl source directory has always been enough to cure the situation.
    Some installations (Slackware 2.1? 3.1? others? Red Hat before 4.0?) are reputed to have a missing symbolic link between /lib/libdl.so.1 and /lib/libdl.so. Any application which employs dynamic linking, and which therefore links with "... -ldl ..." under Linux, apparently will fail until one completes the installation by commanding
               ln -s /lib/libdl.so.1 /lib/libdl.so
    That's the whole story that I know. However, those unfamiliar with Unix deserve a warning: the previous paragraph used "link" in three distinct senses. If these matters are new to you, you might feel more comfortable substituting
               cp /lib/libdl.so.1 /lib/libdl.so
    for the "ln ..." command above. When I'm able to make time, I'll return to explain these matters more fully.
    Why isn't there a /lib/libdl.a? That's an involved topic, one that I aim to document later in spring '97.
    ldconfig is sometimes an issue for Linux. I'll document it once I understand it better.

  • Rules applying the green check to the dictionary check boxes on upper right while ordering a service.

    Rules applying the green check to the dictionary check boxes on upper right while ordering a service.
    I'm trying to find information in the manuals about when the green check is applied to the dictionary check boxes to the right of the service form during ordering moment.   I have customers who want to know why the check is missing when they enter the data displaying for that dictionary.
    Thanks.

    Hi Nancy,
    The expected behavior is that the box should be checked once there are no remaining mandatory fields in the particular dictionary. Once the user completes and then exits the last mandatory field, the box should be checked. Is this not the behavior you are seeing?

Maybe you are looking for

  • What is the process of changing name of IT Resource Type without breaking..

    I need to change the name of an IT Resource Type and at the same time include additional fields. I also have existing IT Resources that are provisioned that are of the old name. What I thought I could do was to use the Design Console, bring up the IT

  • Set connection timeout in LightSwitch HTML

    Hi. I am creating Lightswitch HTML application and implementing export functionality using ServerApplicationContext. I am trying to export a lot of data and i when i call for DB objects I get connection error. I have tried to set ;Connection Timeout=

  • JPDK:Unable to initialize new provider instance

    has anyone seen this error before when trying to register the JPDK portlets? An error occurred when attempting to call the providers register function. (WWC-43134) The following error occurred during the call to Web provider: Unable to initialize new

  • BO XI 3.1 Sp2 OLAP Universe - MDX Function

    Hi all, How i tuse MDX Functions in OLAP Universe ? Iam getting parse ok in Universe . getting error in while creating webi report

  • Saving PDF for versions 4 and above

    How can I save a document to be compatible with versions 4 and above of Acrobat? FayeC