Broker Error : type="subscribe" source="statement" info="invalid"

i ran these on the database
use DB
GRANT CREATE PROCEDURE TO USER
GRANT CREATE QUEUE TO USER
GRANT CREATE SERVICE TO USER
Use DB
GRANT SUBSCRIBE QUERY NOTIFICATIONS TO USER
Use DB
GRANT RECEIVE ON QueryNotificationErrorsQueue TO USER
ALSO ENABLE_BROKER
this is the query
select column(char(12) FROM   dbo.table
running a profile i get this error
type="subscribe" source="statement" info="invalid"
I've looked here
http://msdn.microsoft.com/en-us/library/ms189308.aspx
and here
http://msdn.microsoft.com/en-us/library/aewzkxxh(VS.80).aspx
can't figure this out....drive'n me crazy
it's just on this database...i can get it to work on other databases

this is the query
select column(char(12) FROM   dbo.table
running a profile i get this error
type="subscribe" source="statement" info="invalid"
It seems that the syntax of SELECT statement is incorrect, which should be like "SELECT column_name [,column_name2] FROM dbo.table". Please let me know if I am missing something here.Best Regards
Alex Feng | Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Similar Messages

  • Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).

    Hi,
    I have a file where fields are wrapped with ".
    =========== file sample
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    ==========
    I am having a .net method to remove the wrap characters and write out a file without wrap characters.
    ======================
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    ======================
    the .net code is here.
    ========================================
    public static string RemoveCharacter(string sFileName, char cRemoveChar)
                object objLock = new object();
                //VirtualStream objInputStream = null;
                //VirtualStream objOutStream = null;
                FileStream objInputFile = null, objOutFile = null;
                lock(objLock)
                    try
                        objInputFile = new FileStream(sFileName, FileMode.Open);
                        //objInputStream = new VirtualStream(objInputFile);
                        objOutFile = new FileStream(sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString(), FileMode.Create);
                        //objOutStream = new VirtualStream(objOutFile);
                        int nByteRead;
                        while ((nByteRead = objInputFile.ReadByte()) != -1)
                            if (nByteRead != (int)cRemoveChar)
                                objOutFile.WriteByte((byte)nByteRead);
                    finally
                        objInputFile.Close();
                        objOutFile.Close();
                    return sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString();
    ==================================
    however when I run the bulk load utility I get the error 
    =======================================
    Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).
    ==========================================
    the bulk insert statement is as follows
    =========================================
     BULK INSERT Temp  
     FROM '<file name>' WITH  
      FIELDTERMINATOR = ','  
      , KEEPNULLS  
    ==========================================
    Does anybody know what is happening and what needs to be done ?
    PLEASE HELP
    Thanks in advance 
    Vikram

    To load that file with BULK INSERT, use this format file:
    9.0
    4
    1 SQLCHAR 0 0 "\""      0 ""    ""
    2 SQLCHAR 0 0 "\",\""   1 col1  Latin1_General_CI_AS
    3 SQLCHAR 0 0 "\",\""   2 col2  Latin1_General_CI_AS
    4 SQLCHAR 0 0 "\"\r\n"  3 col3  Latin1_General_CI_AS
    Note that the format file defines four fields while the fileonly seems to have three. The format file defines an empty field before the first quote.
    Or, since you already have a .NET program, use a stored procedure with table-valued parameter instead. I have an example of how to do this here:
    http://www.sommarskog.se/arrays-in-sql-2008.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Error: 28005, Severity: 16, State: 2...An exception occurred while enqueueing a message in the target queue. Error: 15517, State: 1. Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impe

    I've seen some similar questions, but want to make sure I can get an answer quickly and how to fix.
    Thanks,
    Paul
    spid24s     Error: 28005, Severity: 16, State: 2
    spid24s     An exception occurred while enqueueing a message in the target queue. Error: 15517, State: 1. Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated,
    or you do not have permission.

    Hi Paul,
    I also had the same error on one of my servers, and it was because the user that created the database no longer worked for the company.
    So when his AD account got deleted, the database had NULL as owner
    Using the following query I asked for the owners of the databases:
    select name, suser_sname(sid) from master.dbo.sysdatabases
    So changing the owner of the databases that had a NULL owner solved the issue for me.
    use <databasesname>
    go
    exec sp_changedbowner 'sa'
    Thanks for triggering the solution.
    Peter

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • PO 7.4: NW BPM: HTTP Error response for SOAP request or invalid content-type.HTTP 200 OK

    Hi Experts
    I am trying to call NW BPM scenario(File to BPM) from PI, and using below adapter config.
    I am getting below error.
    Failed to call the endpoint: Error in call over HTTP: HTTP 200 OK
    SOAP: Call failed: java.io.IOException: HTTP Error response for SOAP request or invalid content-type.; HTTP 200 OK
    SOAP: Error occurred: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: HTTP Error response for SOAP request or invalid content-type.; HTTP 200 OK
    MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: HTTP Error response for SOAP request or invalid content-type.; HTTP 200 OK
    Transmitting the message to endpoint <local> using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: HTTP Error response for SOAP request or invalid content-type.; HTTP 200 OK
    Any idea how to fix this issue?
    Thanks,
    Sandeep Maurya.

    Hi Sandeep,
    Test the URL from your browser and check the proxy settings as well.
    Refer the below links
    SOAP: call failed: java.io.IOException: invalid content type for SOAP: TEXT
    SOAP: Call failed: java.io.IOException: Failed to get the input stream from socket: java.net.SocketException: Connection…
    Regards
    Bhargava Krishna

  • "The movie contains an invalid data reference" error in subscribed albums

    I'm subscribed to a MobileMe album that contains movies (m4v). Just a few of these movies work well and some other will not play. I get the following error message: "The movie contains an invalid data reference". It seems that these movies are not downloaded since I can't find the original file in my iPhoto Library. For those movies without this problem I can find the original file in the iPhoto Library. It's needed to say that this problems shows up only in iPhoto since I can see all movies at the Gallery app in iPhone/iPod/iPad and also online. Any ideas?

    Your profile shows you at 10.5.7. If that's correct download and run the Mac OS X 10.5.8 Combo Update. It wouldn't hurt to reapply it even if you're at 10.5.8.
    Also reapply QuickTime 7.5 for Leopard and Compatibility Update for QuickTime 7.5.5.

  • I keep getting an error message that I have an invalid security code when trying to make purchased in itunes.  But my security code and billing info are valid.  How do I rectify this problem?

    I keep getting an error message that I have an invalid security code when trying to make purchased in itunes.  But my security code and billing info are valid.  How do I rectify this problem?

    Did you ever get an answer to this? Im having same issue now! So frustrating!

  • Which types of errors occured in "source system"?

    hi
    which types of errors occured in "source system"? how will correct it? send me data on it

    Hi,
    The common error will be RFC Connection .pls chk this links;
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a61e5e07211d2acb80000e829fbfe/frameset.htm
    http://help.sap.com/bp_biv335/BI_EN/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    Hope this helps.
    Regards
    CSM Reddy

  • Error during DataBase source creation in SES.

    Hi Experts,
    As part of creating DataBase source for SES...
    We created a table testing_data_for_ses(URL,CONTENT,LASTMODIFIEDDATE,KEY,LANG)
    and also the view
    create or replace view view_testing_data_for_ses AS
    SELECT 'docserver?docid=' || URL URL,
    CONTENT CONTENT,
    lastmodifieddate lastmodifieddate,
    KEY KEY,
    'en' LANG
    FROM testing_data_for_ses;
    Finally we tried to create DataBase source in SES with following parameter names and values
    Database Connection String: jdbc:oracle:thin:@<systemIP>:<port>:<SID>
    User ID : apps
    Password : apps
    View : view_testing_data_for_ses
    Document Count : -1
    Query : select content from testing_data_for_ses
    URL Prefix : http://<SES-Hostname>:<SES-Port>
    However in this process we ended up with following Error:
    09:55:53:750 INFO     main          
    09:55:53:761 INFO     main          Oracle Secure Enterprise Search, Crawler: Release 10.1.8.2
    09:55:53:761 INFO     main          Copyright © 2006, 2007, Oracle. All rights reserved.
    09:55:53:761 INFO     main          
    09:55:53:761 INFO     main          ================== Crawling settings ==================
    09:55:53:761 INFO     main          Reading configuration file from /mnt/u08/SOADEVIL/ses/seshome/search/data/config/crawler.dat
    09:55:53:762 INFO     main          Agent = Oracle Secure Enterprise Search
    09:55:53:800 INFO     main          User = EQ_TEST
    09:55:53:800 INFO     main          Database connect string = jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname)(PORT=1525))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=DEVIL1.hostname)))
    09:55:53:800 INFO     main          Source type is User-defined
    09:55:53:800 INFO     main          Source is "DatabaseSource_B"
    09:55:53:800 INFO     main          Number of crawling threads = 5
    09:55:53:800 INFO     main          Queue table = I1S3
    09:55:53:801 INFO     main          URL table = EQ$URL
    09:55:53:801 INFO     main          Maximum documents to crawl = no limit
    09:55:53:801 INFO     main          Maximum depth to crawl = 2
    09:55:53:801 INFO     main          Document size limit = 10M
    09:55:53:801 INFO     main          Locale of the crawler message is "en_US"
    09:55:53:801 INFO     main          URL exclusion rule = (?i:(?:\.gif)|(?:\.jpg)|(?:\.jar)|(?:\.tif)|(?:\.bmp)|(?:\.war)|(?:\.ear)|(?:\.mpg)|(?:\.wmv)|(?:\.mpeg)|(?:\.scm)|(?:\.iso)|(?:\.dmp)|(?:\.dll)|(?:\.cab)|(?:\.so)|(?:\.avi)|(?:\.wav)|(?:\.mp3)|(?:\.wma)|(?:\.bin)|(?:\.exe)|(?:\.iso)|(?:\.tar)|(?:\.png))$
    09:55:53:801 INFO     main          URL exclusion rule = \?.*(.*\+)\1{3}
    09:55:53:801 INFO     main          Document read timeout threshold = 30 second(s)
    09:55:53:801 INFO     main          Crawler default character set is "8859_1"
    09:55:53:801 INFO     main          Crawler default language is "en"
    09:55:53:802 INFO     main          Auto language detection is on
    09:55:53:802 INFO     main          Auto character set detection is off
    09:55:53:802 INFO     main          Document service pipeline is "Default pipeline"
    09:55:53:802 INFO     main          Verbose mode is on
    09:55:53:848 INFO     main          Caching on: directory = /mnt/u08/SOADEVIL/ses/sesdata/DEVIL1/cache/I1DS3/, max size = 250, action = SES_TASK
    09:55:53:848 INFO     main          Filtering on: filter path = /mnt/u08/SOADEVIL/ses/seshome/ctx/bin/ctxhx, number of filters = 2
    09:55:53:849 INFO     main          MIME inclusions = text/plain text/html application/pdf application/x-msexcel application/vnd.ms-excel application/ms-excel application/x-mspowerpoint application/vnd.ms-powerpoint application/msword
    09:55:53:849 INFO     main          URL table attributes = url, depth, signature, last_modified, status, url_id, access_url, enqueue_status, TITLE, DESCRIPTION, AUTHOR, CRAWLED_DATE, CONTENT_LENGTH, CONTENT_TYPE, LANG, CACHE_FILE_PATH, DS_ID
    09:55:53:849 INFO     main          SQL callback statement is "begin eq_crw.crawler_callback(?,?,?,?); exception when eq_def.search_error then eq_err.raise; when others then eq_err.raise; end;"
    09:55:53:849 INFO     main          Cookie support is enabled
    09:55:53:850 INFO     main          Maximum number of cookies = 300
    09:55:53:850 INFO     main          Maximum number of cookies per host = 20
    09:55:53:850 INFO     main          Maximum size of cookie = 4096 bytes
    09:55:53:851 INFO     main          Cache file deletion is disabled
    09:55:53:851 INFO     main          Crawler plug-in manager class is "oracle.search.plugin.db.DBCrawlerManager"
    09:55:53:851 INFO     main          SQL hook ID is "3"
    09:55:53:851 INFO     main          SQL command hook statement is "begin ? := eq_crw.crawler_get_command(?,?,?,?); end;"
    09:55:53:851 INFO     main          SQL response hook statement is "begin ? := eq_crw.crawler_send_response (?,?,?,?,?,?,?,?,?,?,?,?,?); end;"
    09:55:53:851 INFO     main          Crawler launched by schedule "DatabaseSource_B"
    09:55:53:851 INFO     main          
    09:55:53:851 INFO     main          =================== Crawling status ===================
    09:55:53:852 INFO     main          Crawling started at 10/3/07 9:55 AM
    09:55:55:463 INFO     main          URL manager connecting to Oracle...
    09:55:55:524 INFO     main          connected
    09:55:56:712 INFO     main          Time of last crawl is Wed Oct 03 09:44:11 EDT 2007
    09:55:56:755 INFO     main          Queue manager connecting to Oracle...
    09:55:56:853 INFO     main          connected
    09:55:58:088 INFO     main          Invoking "oracle.search.plugin.db.DBCrawlerManager"
    09:55:58:092 INFO     main          URL manager connecting to Oracle...
    09:55:58:241 INFO     main          connected
    09:55:58:243 INFO     main          Initializing crawler plug-in manager "oracle.search.plugin.db.DBCrawlerManager"
    09:55:58:245 ERROR     main     EQP-80401: Cannot specify both view and query oracle.search.sdk.crawler.PluginException     oracle.search.plugin.appsjdbc.AppsJdbcPluginMgr:init:255     oracle.search.plugin.appsjdbc.SecureAppsJdbcPluginMgr:init:50     oracle.search.crawler.WebCrawler:begin:1076     ImtCrawler:run:1831     ImtCrawler:main:48009:55:58:484 INFO     Thread-1          Remote command "reportstatistics" received, argument = "quit"
    09:55:58:484 INFO     Thread-1          Executing remote command "reportstatistics"
    09:55:58:506 INFO     Thread-1          Send back remote command execution result
    09:55:58:852 INFO     main          Shutting down all crawling threads...
    09:55:58:855 INFO     main          
    09:55:58:855 INFO     main          =================== Crawling results ===================
    09:55:58:855 INFO     main          Crawling started at 10/3/07 9:55 AM
    09:55:58:856 INFO     main          Crawling stopped at 10/3/07 9:55 AM
    09:55:58:856 INFO     main          Total crawling time = 0:0:5
    09:55:58:856 INFO     main          
    09:55:58:877 INFO     main          Total number of documents fetched = 0
    09:55:58:879 INFO     main          Document fetch failures = 0
    09:55:58:880 INFO     main          Document conversion failures = 0
    09:55:58:880 INFO     main          Total number of unique documents indexed = 0
    09:55:58:880 INFO     main          Total data collected = 0 bytes
    09:55:58:880 INFO     main          Total number of non-indexable documents = 0
    09:55:58:880 INFO     main          
    09:55:58:880 INFO     main          Number of times disk cache is full = 0
    Are we specifying any wrong parameter values.
    Thanks
    parker.

    Hi raford,
    Thanks for your reply.
    We just provided the view name....and hence the DataBase source got created successfully.
    Now we have two scenarios here
    1)
    DataBase source in SES with parameter value for URL Prefix : http://<SES-Hostname>
    Now when we searched for content... The SES gets us the results....
    However when we clicked on the searched result(which is http://<SES-HostName>:<SES-port>/search/query/redirect.jsp?qid=161&did=2001&pos=1&idx=1&fid=)...it says cannot find server...but when i click on cached link(which is http://devilrays.appsassociates.com:7782/search/query/cache.jsp?id=2001&q=row3&fid=)... i could see the whole content.
    2)
    DataBase source in SES with parameter value for URL Prefix : http://<SES-Hostname>:<SES-Port>
    Now when we searched for content... The SES gets us the results....
    However when we clicked on the searched result(which is http://<SES-Hostname>:<SES-Port>/search/query/redirect.jsp?qid=151&did=1901&pos=1&idx=1&fid=)...it says HTTP 404 not found...but when i click on cached link(which is http://devilrays.appsassociates.com:7782/search/query/cache.jsp?id=1901&q=row3&fid=)... i[b] could see the whole content.
    Are there any changes i need to do so that when i click on search result... it gets me the content.
    Thanks
    parker.

  • What can be the cause of Web ADI error : Cannot execute SQL statement?

    I created a custom integrator in r12.2.3 and while loading I encountered an error, Cannot execute SQL statement.
    I checked my setup in Interface attribute , the RUN_ID column has a default type SQL QUERY with a default value SELECT  XXCONV_EAM_ASSET_NUM_S.NEXTVAL FROM DUAL.
    If I have a right setup here, what can be the cause of this error?

    Hi,
    The possibilities can be of various reasons, with the sql statements,
    xml descriptors, data sources, improper drivers anything. To crack down
    the solution, kindly let me know the error messages and what exactly are
    you trying to accomplish.
    Thanks & Regards
    Raj
    manimaran t wrote:
    what may be the cause of this error java.sql.SQLException: invalid sql
    type passed to callable statement in iplanet ussing JNDI
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • How do I convert an excel (2008) document to Numbers?  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid"

    How can I convert an Excel (2008) document to Numbers.  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid.

    That extension identifies the most current Excel file format, a format that can be opened by Numbers '09 (and by Numbers '08).
    A check with Numbers '09 shows it capable of opening .xlsx files when right-clicked (and Numbers chose as the application to open, when double-clicked (if Numbers has been set as the default application to open this type of file, or when dragged to the Numbers icon in the dock.
    I see two possibilities for Numbers inability to open it and the message you receive:
    1. The file is not actually an Excel file, and the sender has added the .xlsx extension to the filename manually.
    2. The file is an Excel file, but has somehow been corrupted.
    Have you tried opening the file with a different application? The open source Office suites, OpenOffice.org, LibreOffice and NeoOffice can also open .xlsx files. If they're unable to open this one, that would point toward the file itself being faulty. You can download these applications from their rspective websites, linked in the names above. All request a donation to support future development, but only Neo requires one to have been made recently, and that only for the current release (which won't be necessary to open .xlsx files).
    Regards,
    Barry

  • LSMW - Error BDC_INSERT, Transaction code .. is invalid XD01

    Dear all.
    I have done the following Steps:
    1 - Maintain Object Attributes. Chose the Object type Batch Recording, then created a Record using the name (CLI_PMR). And created the Batch record and then assign the fields name.
    2 - Maintain Source Structures – Created the Struture (CLI_PMR1)
    3 - Maintain Source Fields – Assign the fields name and length that I used in my program. (CLI_PMR1).
    4 - Maintain Structure Relations – Assign the Struture (CLI_PMR1 to CLI_PMR)
    5 - Maintain Field Mapping and Conversion Rules – The normal thing in this point.
    6 - Specify Files - Specified the Legacy Data, path for the file.
    7 - Generate Read Program – Generated the Program.
    8 – Read Data – Executed this Step and every thing is correct
    9 - Generate Conversion Program – Generated the program
    10 - Convert Data – Convert data
    11 - Display Converted Data – Every thing is fine, with no errors
    12 - Create Batch Input Session- At this the error message appears Error BDC_INSERT, Transaction code .. is invalid  time.
    At the time we have created other LSMW programs for this T-Code and every thing is OK.
    I'm using the T-CODE=XD01
    Best Regards
    Pedro Miguel Rodrigues

    Hi, I had the same problem in LSMW when generating a batch input for trx IE01. The cause was that there were tab/newline-characters in my text file (some descriptions contained tab-characters). Since I used a tab delimited file, these tabs/newlines in the fields messed up my file.
    The excel file contained multiple lines per cell in some description fields. When this was exported to tab delimited text, it contained additional tabs. After checking the contents and removing the tabs/newlines from Excel and performed a new export to txt-file, it was solved.
    Best regards,
    Jan-Peter Molenaar
    SAP EAM Consultant

  • Emulator error (type 3) CS5.5 android sdk

    Hello All.  Have done my best in trying to find the answer to this one but just can't get it to work.  System is win 7 home premium SP1 64-bit.  I do have the latest DW updates installed.
    Using DW CS5.5, installed Android SDK and can launch emulator just fine but when using Build & Emulate function, the .apk file does not load in the browser.  Dreamweaver prompts that the build was successful but after reviewing the "buildlog.log" file I notice at the bottom:
    Running app in Android emulator
    <DW>
    set ANT_HOME=C:\PROGRA~2\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\PROGRA~2\Android\ANDROI~1
    set JAVA_HOME=C:\PROGRA~2\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\PROGRA~2\Android\ANDROI~1\PLATFO~2
    C:\Windows\SysWOW64\cmd.exe /u /c C:\PROGRA~2\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\DWPHON~1\android\scripts\ANDROI~2.BAT com.vemergency.meriden_test C:\PROGRA~2\Android\ANDROI~1
    </DW>
    Starting: Intent { act=android.intent.action.MAIN cmp=com.testcompany.meriden_test/.DefaultActivity }
    Error type 3
    Error: Activity class {com.testcompany.meriden_test/com.testcompany.meriden_test.DefaultActivity} does not exist.
    <DW>
    set ANT_HOME=C:\PROGRA~2\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1
    set ANDROID_HOME=C:\PROGRA~2\Android\ANDROI~1
    set JAVA_HOME=C:\PROGRA~2\Adobe\ADOBED~2.5\JDK
    set PATH=%JAVA_HOME%\bin;%PATH%
    cd C:\PROGRA~2\Android\ANDROI~1\PLATFO~2
    C:\PROGRA~2\Android\ANDROI~1\PLATFO~2\adb.exe kill-server
    </DW>
    Any help would be most appreciated!!
    thanks,
    Keith

    Tried that and thought I had it but notice the last couple lines where it failed.  Any idea on why this happened?
    C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES>C:\Windows\SysWOW64\cmd.exe /u /c
    C:\PROGRA~2\Adobe\ADOBED~2.5\CONFIG~1\NATIVE~1\APACHE~1\bin\ant.bat debug insta
    ll
    Buildfile: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES\build.xml
    -set-mode-check:
    -set-debug-files:
    -set-debug-mode:
    -debug-obfuscation-check:
    -setup:
         [echo] Gathering info for test27oct...
        [setup] Android SDK Tools Revision 14
        [setup] Project Target: Google APIs
        [setup] Vendor: Google Inc.
        [setup] Platform Version: 4.0
        [setup] API level: 14
        [setup]
        [setup] ------------------
        [setup] Resolving library dependencies:
        [setup] No library dependencies.
        [setup]
        [setup] ------------------
        [setup]
        [setup] WARNING: Attribute minSdkVersion in AndroidManifest.xml (2) is lower
    than the project target API level (14)
    -build-setup:
         [echo] Creating output directories if needed...
    -pre-build:
    -code-gen:
         [echo] ----------
         [echo] Handling aidl files...
         [aidl] No aidl files to compile.
         [echo] ----------
         [echo] Handling RenderScript files...
    [renderscript] No renderscript files to compile.
         [echo] ----------
         [echo] Handling Resources...
         [aapt] Found Deleted Target File
         [aapt] Generating resource IDs...
    -pre-compile:
    -compile:
        [javac] C:\Android\android-sdk\tools\ant\build.xml:600: warning: 'includeant
    runtime' was not set, defaulting to build.sysclasspath=last; set to false for re
    peatable builds
        [javac] Compiling 1 source file to C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~
    1.TES\bin\classes
    -post-compile:
    -obfuscate:
    -dex:
          [dex] Found Deleted Target File
          [dex] Converting compiled files and external libraries into C:\VESLAP~1\HT
    ML5\DREAMW~1\output\COMVEM~1.TES\bin\classes.dex...
    -crunch:
       [crunch] Crunching PNG Files in source dir: C:\VESLAP~1\HTML5\DREAMW~1\output
    \COMVEM~1.TES\res
       [crunch] To destination dir: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES\b
    in\res
       [crunch] Crunched 0 PNG files to update cache
    -package-resources:
         [aapt] Found Deleted Target File
         [aapt] Creating full resource package...
         [aapt] Warning: AndroidManifest.xml already defines debuggable (in http://s
    chemas.android.com/apk/res/android); using existing value in manifest.
    -package:
    [apkbuilder] Found Deleted Target File
    [apkbuilder] Creating test27oct-debug-unaligned.apk and signing it with a debug
    key...
    -do-debug:
    [zipalign] Running zip align on final apk...
         [echo] Debug Package: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES\bin\te
    st27oct-debug.apk
    debug:
    [propertyfile] Updating property file: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~
    1.TES\bin\build.prop
    [propertyfile] Updating property file: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~
    1.TES\bin\build.prop
    [propertyfile] Updating property file: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~
    1.TES\bin\build.prop
    [propertyfile] Updating property file: C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~
    1.TES\bin\build.prop
    install:
         [echo] Installing C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES\bin\test27
    oct-debug.apk onto default emulator or device...
         [exec] error: protocol fault (no status)
    BUILD FAILED
    C:\Android\android-sdk\tools\ant\build.xml:1098: The following error occurred wh
    ile executing this line:
    C:\Android\android-sdk\tools\ant\build.xml:1112: exec returned: 1
    Total time: 7 seconds
    C:\VESLAP~1\HTML5\DREAMW~1\output\COMVEM~1.TES>

  • Error messages or information for the invalidation of those procedures

    Hello expert:
    I have a few procedure invalidated . in principle , those procedures should be validated automatically when they are called somewhere. but they don't, that means there are some error blocking them validated. please where I can find out corresponding error messages or information for the invalidation of those procedures.
    Many Thanks.

    CREATE TABLE t
    AS
       SELECT 1 id FROM DUAL;
    CREATE OR REPLACE PROCEDURE my_procedure
    AS
       v_id   t.id%TYPE;
    BEGIN
       SELECT id INTO v_id FROM t;
    END;
    CREATE OR REPLACE PROCEDURE my_proc2
    AS
    BEGIN
       my_procedure;
    END;
    exec my_proc2;
    DROP TABLE t;
    ALTER PROCEDURE   dsamstrc.my_proc2
       COMPILE;
    SELECT *
      FROM SYS.USER_ERRORS
    WHERE NAME = 'MY_PROC2'
           OR NAME IN (SELECT REFERENCED_NAME
                         FROM dba_dependencies
                        WHERE NAME = 'MY_PROC2');
    NAME     TYPE     SEQUENCE     LINE     POSITION     TEXT     ATTRIBUTE     MESSAGE_NUMBER
    MY_PROCEDURE     PROCEDURE     4     4     2     PL/SQL: SQL Statement ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     3     4     27     PL/SQL: ORA-00942: table or view does not exist     ERROR     0
    MY_PROCEDURE     PROCEDURE     2     2     10     PL/SQL: Item ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     1     2     10     PLS-00201: identifier 'T.ID' must be declared     ERROR     201
    MY_PROC2     PROCEDURE     2     3     5     PL/SQL: Statement ignored     ERROR     0
    MY_PROC2     PROCEDURE     1     3     5     PLS-00905: object DSAMSTRC.MY_PROCEDURE is invalid     ERROR     905wonder if something like this would work if the dependencies were more than 2 deep.
    SELECT distinct *
      FROM SYS.USER_ERRORS
    WHERE NAME in
           (SELECT name
            FROM dba_dependencies
    connect by nocycle  name =  prior  referenced_name
    start with NAME = 'MY_PROC2')
    order by name;Edited by: pollywog on Apr 4, 2011 2:49 PM

  • Kernal panic/ won't boot from hard drive or installation disc/ error type 1

    Friends PowerBook seems to be dying or is possibly dead.
    PowerBook G4 model A1138 or M9969LL/A:
    15 inch/ 1.67 ... http://support.apple.com/specs/powerbook/PowerBookG4_15-inch_Double-LayerSD.html
    K, so my friend's powerbook is in my possession... and not booting.
    A week ago, upon booting the laptop, he'd get the old OS9 looking folder flashing with THE happy face and then a question mark. Then, usually, it'd boot. It started taking longer and longer to boot, so he backed up all his stuff. It eventually stopped booting OSx (10.4.10) and came to me asking about how to reinstall Tiger.
    As of right now his machine will NOT boot from the hard drive, regularly or in safe mode.
    When we try the install CD, we get a kernal panic. It hangs, then tells us to restart. Every time.
    Holding down "alt" I tried the hardware diagnostic/ repair thingy from the install disc. It mentions a quick issue with finding Gineva fonts or something and then gives the following errors:
    type 1346978644 error 1
    type 1346978644 error 1
    Invalid memory access at %SRR0:00000000 %SRR1:00083030
    Thats about all we got. We are looking for a screw driver to try and remove a stick of ram and see if thats the problem. Any ideas? Hoping for a bad stick of ram or hard drive. Anyone know if for sure the logic board is dead or if there is a way to fix it? Appreciate any feedback. Happy to give more information if you need it!
    ~joel

    When you did the boot off the original system disk was anything non-Apple externally connected? If not, then you clearly have a hardware problem, and your idea of examining the RAM is not half a bad idea. The only thing you might want to do before that is zapping the PRAM. Sometimes that clears issues such as you describe:
    1. First determine if your machine is under 4 years old. If it is, then go ahead
    and do step 2. Otherwise do step 3.
    2. http://docs.info.apple.com/article.html?artnum=2238
    3. Take it to an authorized service center to have the clock battery replaced. That may cause the very issues you described.

Maybe you are looking for