Converting shapefile to sdo SRID problem

when i converted shape file had [ PROJCS = "WGS_1984_UTM_Zone_36N" ] to sdo and choose SRID=8307 when i created theme has the result by MapBuilder the result was different from the shapeFile.
can anyone tell me why ? and how to fix this ?
....Thanks for any assistance.

Hi,
The proper SRID for "WGS_1984_UTM_Zone_36N" is 32636 and not 8307.
Regards.

Similar Messages

  • Problem in Converting Shapefile to SDO Layer

    Hi all,
    I am new to the Oracle Spatial database 10g (10.2.0.1.0). I got problem in Converting shapefile to sdo.
    My ESRI Shapefile (Tempshp.shp,Tempshp.shx,Tempshp.dbf) contain field name as "LEVEL".
    I can able to run the shp2sdo and "Tempshp.sql" and "Tempshp.ctl" files are all created without any problem.
    when i try to run the following command in SQLPlus
    @Tempshp.sql
    The following error message were generated
    LEVEL NUMBER,
    ERROR at line 4:
    ORA-00904: : invalid identifier
    May i know whats the actual problem, Is there any Reserved word/ keyword like LEVEL is present in oracle/ Spatial.
    Regards,
    Prema Selvam.
    Message was edited by:
    Prema Selvam
    Message was edited by:
    Prema Selvam

    Hello Ro,
    Thanks,
    If we are changing the field name LEVEL to Something like LEVELX, then whether we need to change the the LEVEL as LEVELX in .ctl also.
    If i am changing the Field name whether it will affect the spatial function such as join, etc..,
    Thanks & Regards,
    Prema Selvam.

  • Converting bytes to character array problem

    I am trying to convert a byte array into a character array, however no matter which Character Set i choose i am always getting the '?' character for some of the bytes which means that it was unable to convert the byte to a character.
    What i want is very simple. i.e. map the byte array to its Extended ASCII format which actually is no change in the bit represtation of the actual byte. But i cannot seem to do this in java.
    Does anyone have any idea how to get around this problem?

    Thanks for responding.
    I have however arrived at a solution. A little un-elegant but it seems to do the job.
    I am converting each byte into char manually by this algorithm:
              for (int i=0;i<compressedDataLength;i++)
                   if (((int) output)<0)
                        k=(127-((int) output[i]));
                        outputChr[i]=((char) k);
                   else
                        k=((int) output[i]);
                        outputChr[i]=((char) k);
                   System.out.println(k);
    where output is the byte array and outputChr is the character array

  • Not Converted : Free-hand SQL connection problem

    While converting a Free Hand SQL report from Desktop Intelligence to Web Intelligence report in BI XI 3.1, I am faced with the problem
    Not Converted : <REPNAME> - Free-hand SQL connection problem
    It is be noted that there are some other Free Hand SQL Reports, that go converted and published without any error. The subject report has two Data Providers; one referring to the Universe and other from the Free Hand SQL tagged to a DB Connection

    Ajay,
    Some more points that can be of consideration to you to help understand my problems.
    The conversion from DeskI to WebI is in the same version BI XI 3.1 and not to BI 4.0 in which Free Hand SQLs is not supported.
    I have converted one other Free Hand SQL Report with an error "Partially Converted : <REPNAME2> - Conditional or permanent Hide Header not available in Web Intelligence", for which I had to edit the report in InfoView and un-tick the "Show When Empty" property of the table ( http://www.forumtopics.com/busobj/viewtopic.php?t=197157&view=next&sid=e6840aafa2d1267c66dae164d1dbf9db ). I think the solution mentioned in this link does not meet the purpose as the table is not displayed in the design time after the above untick.
    Coming back to our issue, further probing into this aspect I stumbled upon this link meant for RCT for BI 4.0 version
    https://csdwportal.dhhs.state.nc.us/downloads/Business%20Objects%20XI%20R4.0%20Docs/SAP%20BusinessObjects%20Report%20Con…
    where in Section 3.4.9, there is a mention of the limitation in conversion as under
    "Conversion of reports with free-hand SQL or stored procedures is only possible in Connected mode, since the Report Conversion Tool needs to use the secured connection to the database that is saved in the CMS."
    I want to how the secured connection to the database in REPNAME2 is different from the subject report REPNAME1 as REPNAME2 got partially converted. The error reported for Subject report is "Free Hand SQL Connection Problem" and not conversion problem which can occur after the connection is established.
    I did check the security properties of various FHSQL connections in the CMC and all of them are identical in nature.
    Please advise

  • Converter sample from J2EE Tutorial problem

    Hello all,
    I have built the ConvertApp using the J2EE as shown in the J2EE (which I highly recommend by the way --on-line or book version), but am getting the following error:
    (from Verifier log file):
         FAILED TESTS :
         Test Name : tests.web.elements.WebEjbReferencesElement
         Test Assertion : Web archive references to other beans homes test
         Test Description : Error: Class [ ConverterHome ] not found in WEB-INF/classes or WEB-INF/lib.
    For [ /ConverterWAR ]
    Error: class [ ConverterHome ] cannot be found within this jar [ ConverterWAR ].
    Error: Class [ Converter ] not found in WEB-INF/classes or WEB-INF/lib.
    For [ /ConverterWAR ]
    Error: class [ Converter ] cannot be found within this jar [ ConverterWAR ].
    ======
    I'm running Windows 2K (I did see a similar problem someone was having under '98) and I know this tutorial works under W2K. I also have confirmed all my environmental variables are correct.
    I am noticing that under the \j2eetutorial\examples\src\ejb\converter directory that I have a number of temp files (intermediate?). Specifically, if I use the Deploytool and select the ConverterApp in the tree view, I see three filenames that appear in the Contents window under the META-INF section:
    app-client-ic.jar
    ejb-jar-ic.jar
    war-ic.war
    Well, the temp files look like this (for example):
    app-client-temp21282.jar
    ejb_temp21276.jar
    web_temp21293.war
    I don't know if this means anything or not, as I seem to be getting the .ear, .war and .jar files when I deploy the ConverterApp without a problem.
    If I try to run the Client from the \j2eetutorial\examples\src\ejb\converter directory using the runclient command, I get the following:
    Application threw an exception:java.lang.NoClassDefFoundError: ConverterHome
    The tutorial has a specific reference to this (p.43 in book) indicating a problem in the ConverterApp.jar file. I've undeployed, deleted ear, war, jar and temp files, and recompiled with ant (twice), thinking I must have skipped a step somewhere, but to no avail.
    Both these problems look suspiciously like environment or path issues, but I cannot see anything obviously wrong. I confirmed that I do have a ConverterHome.class file in the C:\j2eetutorial\examples\build\ejb\converter directory too.
    Has anyone seen this before who can share how to fix the issue?
    Thanks for the help!
    Jon

    I have the same problem when trying to run 'Converter' example on Sun Deployment tool.
    When I tried to use verifier for the ConverterApp I got the following message
    "Error: Class [ ConverterHome ] not found in WEB-INF/classes or WEB-INF/lib.
    For [ /ConverterWAR ]
    Error: class [ ConverterHome ] cannot be found within this jar [ ConverterWAR ].
    Error: Class [ Converter ] not found in WEB-INF/classes or WEB-INF/lib.
    For [ /ConverterWAR ]
    Error: class [ Converter ] cannot be found within this jar [ ConverterWAR ]."
    When I tried to run the client app using the runclient command I got the
    following message
    "C:\j2eeDeployPractice\src\ejb\converter\runclient -client converter.ear -name converterClient -testauth
    No application client desriptors defined for: converterClient"
    Note: I was able to run the web client successfully when
    using this URL: "http://localhost:8000/converter/index.jsp"
    Any idea how to fix those error message is grealy appreciated.
    KH

  • Convert Selection For iPod--Video Problems

    I've got video in iTunes, that's not the problem. I've checked, iTunes and QuickTime are both up-to-date. When I try and sync the videos to my 80gig iPod, it tells me that they can not be synced because they are not the right format. They're all .mp4 format and Apple lists that as compatible for an iPod. When I right click on the video and click on 'Convert Selection for iPod', it converts it, but I only get the audio with a blank white screen and no video. I've followed the Apple tutorial and they're video clip works when I convert it. I went to the DivX website and downloaded the newest version of it and installed everything but the DivX player. It still won't work. What should I do?

    I think I was able to resolve this myself after some trial and error. It looks like it is all in the name of the file. I've gotten some files to transfer after going into the Get Info section and updating the name (usually shorten the name or take out non-letter/number/# characters and then get the filename on disk to match.

  • Converting .NEF to .JPG color problem

    When I convert a .NEF picture to .JPG the color is significantly desaturated.  I know JPG is highly compressed from NEF and figured the color loss was a result of the compression, but then I found out I can open the JPG back into Photoshop and the normal color is back.
    Alos, I can convert .NEF to .PNG and the color stays normal.
    I am trying to get into taking pictures in the Raw format, but this issue is frustrating me.
    I would really appreciate any information about this problem.

    One last hing to add, since you did not mention how you determined there is a difference between png and jpg. I am going to assume you saw the differences using a web browser, since those formats are common for that app.
    Not all browsers treat those file formats the same. Some recognize the color profile and others don't. some may reconize for one format and not the other as well. So to verify it would be best to load them back into photoshop to see if there is a diffence. Also it can make a difference if you use the normal save or save for web as save for web does strip the meta data. I am assuming it strips the color profile as well, but I did not test this so I could easily be wrong. Seams to me I recall CS4 adding an option to specify the color profile, but again I could be wrong.
    But if you need the color profile to be correct these are things you will need to verify.

  • MD04 calling CO40 to convert PLOR to Prod Order Problem

    Hi,
    I have the following Problem,
    When converting Planned Orders to Production Orders in MD04 and calling C040 this does not take account of my BOM status which is set to block, but if I create a Production Order directly in CO01 the BOM status is referenced and the creation of the Production order is denied but this does not happen with MD04 calling CO01.
    I have searched OSS and found Note 453755 which is the exact problem I am having, but the note only refers to version 4.6c however we are on 4.7.
    Anyone have similar problems please let me know how you resolved it.
    Thanks

    Pls. check whether same Alternative BOM is used
    1) While Directly using CO01 &
    2) While calling CO40 from MD04
    It might possible that one Alternate BOM have 'Deletion Flag' and another doesn't have.

  • Converting .avi to .m4v iPod problems

    Everytime I convert a .avi file to .m4v ready for iPod format using Quicktime Pro, if the clip is longer than 30 mins, the video starts lagging and ends up slower than the audio.
    Has anyone also encountered this problem?

    Everytime I convert a .avi file to .m4v ready for iPod format using Quicktime Pro, if the clip is longer than 30 mins, the video starts lagging and ends up slower than the audio.
    Most people use one of two options here:
    1) Segment the files before conversion and reassemble following.
    2) Use an alternative application like MPEG Streamclip (free) for your conversions.

  • Converting Word to pdf. Problem with page breaks

    I have Office 2007 and I am trying to convert a 100 page word document into pdf.  However, the pages are breaking different and I end up with more pages in the pdf document which causes problems with my table of contents and index.  Any advice on how to convert the Word doc exactly into pdf?  Thanks

    Michael's reponse is correct. However, as far as I knew, OFFICE 2007 came with printer metrics turned off, meaning it is not supposed to be sensitive to the printer selection. The setting is buried in the options list for compatibility. If it is turned off and a change in printer does affect the result, it would appear just one more of the many things in OFFICE 2007 that MS messed up. The latest one for me has been helping students with the messed up equation editor when you want to add equation numbers in a "standard" way. One of the MS employees even wrote a workaround macro for that problem.

  • PDF Converter for Acrobat Pro 8 problem in windows 7 (64)

    Hi,
    I just recently upgraded to Windows 7 - 64 bit and I am getting the following error message when I try to print to the Adobe PDF printer:
    %%[ Error: undefined; OffendingCommand: setdistillerparams; ErrorInfo: CalCMYKProfile U.S. Web Coated (SWOP) v2 ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    Error accessing color profile: U.S. Web Coated (SWOP) v2
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    I am using Adobe Acrobat 8 professional version 8.1.4 that came with CS3 Design Premium and have installed all current updates. Regardless of the chosen program (Word, Excel, Photoshop) when I attempt to print to the Adobe PDF printer, the print job stops at about 10% completion with the above error message.
    Any suggestions?
    Thanks,
    Kyle

    Thanks everyone for the helpful hints.
    In the end I unstalled and then re-installed the entire Adobe Premium CS3 in Windows 7 (64 bit). The big difference was loading the adobepdf.dll_64 file at the proper point during the installation process.
    Adobe has published a full explanation of this issue at the following URL:
    http://kb2.adobe.com/cps/401/kb401731.html
    Once installed, it's also important to update Acrobat 8 to the latest revision to get the PDF Converter working again.
    Thanks again,
    Kyle

  • PDF convert to PDF/A-1b problems

    I would like to convert my existing archive pdf files into PDF/A. I read on the forum that PDF/A-1b is less critical than 1a so I went with that. Using Acrobat Pro 9 and starting from "clean" (generated by Abbyy Finereader 8) pdfs, the conversion (using Preflight Conversion to PDF/A-1b) generally fails with the following errors:
    Preflight profile 'Convert to PDF/A-lb (sRGB)" found the following errors:
    xConvert to PDF/A-lb {1 object)
    xFlatten transparency {high resolution) {1 object)
    xRemove all alternate images {1 object)
           xDiscard hidden layer content and flatten visible layers (1 object)
           xDiscard hidden layer content and flatten visible layers (1 object)
           xRecompress LZW as ZIP (1 object)
           xPDF document is not compliant with PDF/A-1b (2005)
             xAnnotation has no Flag entry (42 matches on 33 pages)
             xAnnotation not set to print (42 matches on 33 pages)
    I have no idea what this is all about. Besides, I thought I was running a conversion, so why doesn't it convert? Is there anything I can do?
    PS. When I save a fresh scan using Finereader 9 set to generate a PDF/A file and I try to verify it with Acrobat Pro 9 (Verify Conformance..) I invariably am told the verification failed.
    Luuk

    I suppose it is more likely that Abbyy got it wrong than that Adobe did not implement the standard as they should have in Acrobat Pro 9? I did some further testing and put together a PDF file on the basis of tifs. I let Acrobat 9 OCR this file and subsequently converted it once to PDF/A-1a and once to PDF/A-1b. Only the last passed the verification by Acrobat; the former failed with a bunch of errors again (see enclosed screen shot). Am I expecting too much when I assume Acrobat can generate proper PDF/A-1a files on the basis of clean tiff files?
    Luuk

  • Converting Word 2007 to PDF problem

    I have Word 2007 and Adobe Acrobat 9. When I try to save my word file to PDF the PDF font looks distorted throuhout the document. I'm using standard fonts and I have done this many times before without a problem. This just started today.

    Try printing to the Adobe PDF printer and see what you get. If that works, then let's go from there.
    I think you used the MS conversion to PDF, not the Acrobat conversion and if that is the case, it is a MS issue.

  • Converting from Blob to pdf problem

    Dear all
    I have a small problem i hope someone can help me with. I wrote a code that saves a pdf in a database as blob, but when trying to retrieve this blob back and show it as a pdf i had a problem.
    When i tried to show the pdf it appeared as a long stream like the following
    %PDF-1.6 %âãÏÓ 27 0 obj <> endobj xref 27 21 0000000016 0000 ...............etc.
    so it has the same structure of my original pdf except that it's a long stream in only one line . The original pdf looks like the following
    %PDF-1.6
    %âãÏÓ
    27 0 obj
    <</Linearized 1/L 82015/O 38/E 6717/N 1/T 81428/H [ 716 197]>>
    endobj
    xref
    27 21
    ............etc.
    So if anyone can help to change that stream into a pdf again, i will really appreciate it. I attached the 2 files (the stream and the pdf).
    Thanks in advance

    You should save the PDF data to a file and loading that into your HTML content.
    This forum post may help:
    http://forums.adobe.com/thread/430491

  • Convert shapefile to oracle spatial

    Hi All,
    I have a road network which is shapefile format and i want to export it to oracle spatial format using any free tool, any suggestion or guidance would be highy appretiated. I am using arcgis 9.3.1 and Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bi,
    Best Regards,
    Mich

    Hi Mich,
    That must be one of the most commonly asked questions on this forum, so have a search for "shape" and you won't be short of ideas.
    A Google search will also give you countless suggestions. https://www.google.com/search?q=oracle+spatial+shape+file
    For a GUI driven tool, I would recommend using the GeoRaptor plugin for SQLDeveloper which has an excellent shape file importer/exporter (http://sourceforge.net/projects/georaptor/).
    John

Maybe you are looking for

  • How can i sync my outlook calendar with my Iphone

    I was trying to import my contact list from my iphone to outlook 2003. There were no entries on  outlook and over 800 on my iphone and it erase them all.  How do I set up my itunes to sync and merge records in both directions without creating duplica

  • Closed Fiscal Year in Financial Accounting

    Hi! I need create a used asset in 2009. It is a asset that was not uploaded in go-live. I tryed transation AS91 but show me the message AA669 (Fiscal year 2009 is already closed in Financial Accounting). How I can upload this asset in AA without chan

  • Client_ole2 EXCEL.EXE process not killed

    Hi, In a webForm, using webutil I open an Excel file with Client_ole2. When I close Excel the underlying process is not killed; I can still see an EXCEL.EXE process in my task manager. The consequence is that I can’t open an Excel file while the abov

  • Help replacing D-Link DI-604

    Hi everybody, I was looking into replacing my DI-604 with a newer more robust router. I only have fios Internet (no tv), and have had service for about 5 years. Can I just take the d-link out and put a new router in? Do I need to transfer any setting

  • How to prevent PS from skipping steps in action sequence after encountering an error while batching

    Hi guys, Would really appreciate help. I've spent several days working on this. What I am trying to do is a long story, but the latest problem I've encountered is that when batch running an action sequence, and when PS encounters an error in a step i