Did you really release without coords working?

I have posted already two posts on the topic of SDO_COORD_REF_SYSTEM. For some reason, Oracle 10G R3 does not allow the ability to create an exact replica of a projection and specify param values.
I have tried numerous permutations of inserts on SDO_COORD_REF_SYSTEM and the OPS table with params. In all cases, looks as if this does not work with a custom copy of an existing. I am suprised that Oracle has released Spatial with these problems. Although, WKT is deprecated, there looks as if there are still dependencies in the latest release. No where is this documented except in random posts to the board. Also, the above is simple, copy an existing, specify a new coord ops with same method but different param, and viola, should work.
I challenge anyone to create a copy of an existing EPSG NAD83 to Lambert projection with specified param values per a chosen geographical area (not the EPSG one) and the correct parallels. Perhaps, I am wrong, or maybe there is an important step not documented. To this end, I look forward to SQL that does the above posted to the forum in 10G.
Much appreciated and thank you in advance for a working example.

Or, another example:
INSERT INTO SDO_COORD_OPS (
SELECT
2000000000,
'my op',
COORD_OP_TYPE,
SOURCE_SRID,
TARGET_SRID,
COORD_TFM_VERSION,
COORD_OP_VARIANT,
COORD_OP_METHOD_ID,
UOM_ID_SOURCE_OFFSETS,
UOM_ID_TARGET_OFFSETS,
INFORMATION_SOURCE,
DATA_SOURCE,
SHOW_OPERATION,
IS_LEGACY,
LEGACY_CODE,
REVERSE_OP,
IS_IMPLEMENTED_FORWARD,
IS_IMPLEMENTED_REVERSE
FROM
SDO_COORD_OPS
WHERE
COORD_OP_ID = 15031);
INSERT INTO SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID) (
SELECT
2000000000,
9812,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID
FROM
SDO_COORD_OP_PARAM_VALS
WHERE
COORD_OP_ID = 19958);
UPDATE
SDO_COORD_OP_PARAM_VALS
SET
PARAMETER_ID = 8806
WHERE
COORD_OP_ID = 2000000000
AND
PARAMETER_ID = 8816;
UPDATE
SDO_COORD_OP_PARAM_VALS
SET
PARAMETER_ID = 8807
WHERE
COORD_OP_ID = 2000000000
AND
PARAMETER_ID = 8817;
INSERT INTO SDO_COORD_REF_SYSTEM (
SRID,
COORD_REF_SYS_NAME,
COORD_REF_SYS_KIND,
COORD_SYS_ID,
DATUM_ID,
GEOG_CRS_DATUM_ID,
SOURCE_GEOG_SRID,
PROJECTION_CONV_ID,
CMPD_HORIZ_SRID,
CMPD_VERT_SRID,
INFORMATION_SOURCE,
DATA_SOURCE,
IS_LEGACY,
LEGACY_CODE,
LEGACY_WKTEXT,
LEGACY_CS_BOUNDS) (
SELECT
2000000000,
'my crs',
COORD_REF_SYS_KIND,
COORD_SYS_ID,
DATUM_ID,
GEOG_CRS_DATUM_ID,
SOURCE_GEOG_SRID,
2000000000,
CMPD_HORIZ_SRID,
CMPD_VERT_SRID,
INFORMATION_SOURCE,
DATA_SOURCE,
IS_LEGACY,
LEGACY_CODE,
LEGACY_WKTEXT,
LEGACY_CS_BOUNDS
FROM
SDO_COORD_REF_SYS
WHERE
SRID = 29873);
COMMIT;
CREATE TABLE source_geoms (
mkt_id NUMBER PRIMARY KEY,
name VARCHAR2(32),
GEOMETRY SDO_GEOMETRY);
INSERT INTO source_geoms VALUES(
1,
'reference geom',
SDO_GEOMETRY(
2001,
4298,
SDO_POINT_TYPE(
(115 + 48 / 60 + 19.8196 / 3600),
( 5 + 23 / 60 + 14.1129 / 3600),
NULL),
NULL,
NULL));
INSERT INTO USER_SDO_GEOM_METADATA VALUES (
'source_geoms',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('Longitude', -180, 180, 10),
SDO_DIM_ELEMENT('Latitude', -90, 90, 10)),
4298);
commit;
SELECT GEOMETRY "Source" FROM source_geoms;
CALL SDO_CS.TRANSFORM_LAYER(
'source_geoms',
'GEOMETRY',
'GEO_CS_2000000000',
2000000000);
INSERT INTO USER_SDO_GEOM_METADATA VALUES (
'GEO_CS_2000000000',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT(
'E',
-100000000,
100000000,
10),
SDO_DIM_ELEMENT(
'N',
-100000000,
100000000,
10)),
2000000000);
set lines 210;
SELECT GEOMETRY "Target" FROM GEO_CS_2000000000;
CALL SDO_CS.TRANSFORM_LAYER(
'GEO_CS_2000000000',
'GEOMETRY',
'source_geoms2',
4298);
INSERT INTO USER_SDO_GEOM_METADATA VALUES (
'source_geoms2',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('Longitude', -180, 180, 10),
SDO_DIM_ELEMENT('Latitude', -90, 90, 10)),
4298);
SELECT GEOMETRY "Source2" FROM source_geoms2;
DELETE FROM USER_SDO_GEOM_METADATA WHERE table_name = 'GEO_CS_2000000000';
DELETE FROM USER_SDO_GEOM_METADATA WHERE table_name = 'SOURCE_GEOMS';
DELETE FROM USER_SDO_GEOM_METADATA WHERE table_name = 'SOURCE_GEOMS2';
drop table GEO_CS_2000000000;
drop table source_geoms;
drop table source_geoms2;
DELETE FROM SDO_COORD_REF_SYSTEM WHERE SRID = 2000000000;
DELETE FROM SDO_COORD_OP_PARAM_VALS WHERE COORD_OP_ID = 2000000000;

Similar Messages

  • SharePoint 2010 Search "Did You Mean" | How does it work?

    My customer has raised a concern that "Did you mean" functionality works inconsistently and issue is explained as below:
    1. When I search for misspelled word such as "Maketting" , search page displays the option "Did you mean ""Marketting"?
    2. When I search for another misspelled word "Marktng", I get no result and no "Did you mean" option.
    I believe there is a dictionary which maintains the mapping between misspelled word and the correct words but I was unable to track the location whether it is in database or a file system. Has anyone faced this issue and know the solution? Below article
    talks about a "Dictionary lexicon" but not sure about the location in SharePoint 2010 farm.
    http://www.petestilgoe.com/2009/10/sharepoint-search-how-features-work-part-1/
    Thanks and Regards
    -DB
    DB

    Hi Deepak,
    “Do you mean” functionality is enabled by selecting Query Suggestions in Search Box web part.
    Suggestions are automatically built based on what search results are actually clicked on. It takes 6 clicks within a year for SharePoint to add a suggestion.
    However, if an administrator needs to add a suggestion manually this can be done using the SharePoint 2010 Management Shell (PowerShell).
    I recommend to use PowerShell to check all the suggestions in the Search Service Application, and then remove the one that you do not need.
    $ssa=Get-SPEnterpriseSearchServiceApplication
    Get-SPEnterpriseSearchQuerySuggestionCandidates -SearchApp $ssa
    Remove a suggestion, such as “Marketting”:
    $ssa=Get-SPEnterpriseSearchServiceApplication
    Remove-SPEnterpriseSearchLanguageResourcePhrase -SearchApplication $ssa -Language En-Us -Type QuerySuggestionAlwaysSuggest -Identity "
    Marketting "
    More references about the query suggestion:
    http://blogs.technet.com/b/chad/archive/2010/06/24/tip-34-adding-a-sharepoint-2010-search-suggestion.aspx
    http://sharepointfieldnotes.blogspot.jp/2011/09/sharepoint-2010-search-query.html
    Thanks,
    Victoria
    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]
    Victoria Xia
    TechNet Community Support

  • Did you really ever purchase Ringtones?

    Great that iOS 8.1.2 fixes the Ringtones issue; but, did anyone every really buy into purchasing Ringtones vs. making them yourself with the myriad of freeware/shareware apps out there?  It seems strange but at least Apple is doing the "right" thing by fixing it.  I for one certainly was not affected by this because I for one never felt a snippet of a song that I liked to use as a ringtone was any different than owning already the entire song.  Obviously Apple thought so too after a brief period of trying to sell Ringtones separately.  Good luck with the restore for those of you affected.  I hope the iOS update works for you.

    I've seen it happen before. Indeed, previously there was an announcement for the previous update which I (I'm sure amongst others) asked the Hosts to remove since it was out of date and unspecific. I suspect that the removal of that notice indicates iPhones with the 1.1.1 firmware are now well and truly in the distribution chain.
    If it were me, I'd remove such announcements purely because after a while, the more often they are seen, the less people notice them or the ones that perhaps replace them!

  • Why did you break my phone w/ kitkat?

    Last week I loved my phone.  Since 4.4.2 update I'm about ready to throw it away.
    There are so many backward steps in the kit kat update I don't know where to begin...
    Someone decided customers would accept Swype substitutes.  I disagree.  Google keyboard isn't the same.  But at least I understand that one as a financial decision... others just seem dumb.
    A Google engineer changes signal strength indicators from blue to white "primarily because most users didn't know what the colors meant"?  Did you really have that many people asking "why is that blue? White is harder to read at a glance.
    Another color choice - on my MAXX HD you have a nice multi-color LED for notifications that was working perfectly well but you switch it to all white? What do you have against green and blue? (Yes LightFlow is a workaround, but it's a pain and shouldn't have been necessary)
    I had to reset/re-init all my bluetooth devices.  I'm still not convinced they're working reliably, especially when used w/ WiFi.
    Ringtones had to be reset from scratch.
    Waze voice prompts are broken.  Other apps are erratic but hard to pinpoint the symptoms... but the unreliability started with the update.
    Text message background color of all white for what reason? What was wrong with the old format?
    Message notifications in widgets don't clear as before, requiring extra steps. In general SMS navigation has changed.  Why?
    Battery life is noticeably less.
    Who approved this rollout?
    If this is an indication of where Verizon quality is headed I'm looking elsewhere for my next phone.

    Swype going away has NOTHING to do with Verizon. That has to do with Nuance licensing beta software to manufacturers and then that licensing expiring. It's not up to Verizon on that deal and all dependent on Nuance and manufacturers.
    If you want Swype you have to purchase a license from Nuance(play store). Don't worry about the "warning" all keyboards give that warning even preinstalled ones.

  • Western iso 8859-1 character set is gone, "other (including Western" does not work. Why did you take it out?

    Some websites need Western ISO 8859-1 character set to run properly and you have taken it away in favour of "other(including Western)", now the site does not work properly. Why did you take it out and can you please put it back.

    ISO-8859-1 and Windows-1252 should be equivalent. Can you provide an example of a page that doesn't display properly?
    If you have to manually select a character encoding to view the page correctly, then the site is broken and you should notify its owner that it needs be fixed. Websites specify the character encoding in one of two ways:
    * [http://www.w3.org/International/tutorials/tutorial-char-enc/ Handling character encodings in HTML and CSS | W3C]
    # The ''Content-Type'' response header.
    # The ''meta'' tag in the page source.
    ''Henri Sivonen (:hsivonen) wrote:''
    <blockquote>We are in the process of implementing http://encoding.spec.whatwg.org/ . The process involves removing support for legacy character decoders that aren’t really necessary for supporting existing Web content.</blockquote>

  • Hello! I'm using Aperture with Efex plugins and notice, what when I saving result in plugin and go back to aperture, preview mode is going to grey color and not working until I reboot Aperture. Did you saw this problem?

    Hello! I'm using Aperture with Efex plugins and notice, what when I saving result in plugin and go back to aperture, preview mode is going to grey color and not working until I reboot Aperture. What is intresting - in full screen mode everything works fine. Did you saw this problem?

    It seems there's a workaround here:
    https://discussions.apple.com/thread/5566037?tstart=0

  • When you will release a new java update ? With the last it doesn't work correctly ( java 3d )

    I use java 3d, but with the last update it doesn't works with any browser

    "When you will release a new java update ?"
    "We" don't release anything; we're not Apple, we're just users like you.
    Use the feedback form to send queries to Apple.
    http://www.apple.com/feedback/macosx.html

  • I connect my iphone5s to my 2015 Terrain using Bluetooth, when I make a call I can hear the caller but they can't hear me. Anyone else have this problem? How did you resolve it? Other phones connect and work perfectly.

    NNeed help I connect my iPhone 5s to Bluetooth in my 2015 GMC Terrain. When I make a call i can hear them but they can't hear me. Anyone else have this issue? How did you resolve it. Other phones work fine, just not my phone.

    Hello Sandylynn,
    After reviewing your post, it sounds like you can connect the device with Bluetooth and make and receive calls but they dont hear you. I would recommend that you read this article, it may be able to help the issue.
    If your voice is too faint or sounds unclear using iPhone, or iPod touch - Apple Support
    People can't hear you during a phone
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • HT2518 I'm in the process of transferring files fm pc to mac, all connections verified and migration asst is working. HW, my outlook contacts nor email are listed as an option for transfer.  Any1 else have such a plm?  If so, how did you resolve?

    I'm in the process of transferring files fm pc to mac, all connections verified and migration asst is working. HW, my outlook contacts nor email are listed as an option for transfer.  Any1 else have such a plm?  If so, how did you resolve?

    I used O2M from http://www.littlemachines.com to move from Outlook to Apple Mail.
    Richard

  • Do you really need the shoes to make this product work?

    I just saw some information on the TV about this. My question; if anyone can help with it, is do you REALLY need the shoes to make this work. I mean all it is is a little disk and a wireless plug-in for the Nano. It would really help me out if someone can tell me.

    You do not need the shoes to make it work. Check out this thread for ways people have gotten the sensor to work with non-nike+ shoes: http://discussions.apple.com/thread.jspa?threadID=559827&tstart=75

  • Both Firefox 12 & 13 take forever to load all websites. Firefox 11 works great. What did you change to cause this problem starting with 12?

    I keep having to go back to 11. Supposedly 12 was to be faster. Instead it takes minuets to load every website. I have tried several betas of 13 with the same problem.

    Did you try a new profile for the Firefox 13 version?
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    You can try the portable Firefox version that comes with its own profile folder.
    *http://portableapps.com/apps/internet/firefox_portable
    You can install multiple Firefox versions via a custom install in different installation folders.<br />
    Do a custom install and install each version in its own program folder to use multiple Firefox versions.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    Make sure not to start Firefox after the installation has finished.
    Create a new profile exclusively for each Firefox version.
    Create a desktop shortcut with -P "profile" appended to the target to launch each Firefox version with its own profile.
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • MAC OSX 10.5.8 and 2TB Time Machine would not back up. Saw discussion  that suggested you change name without apostrophes etc. Went into Time Machine and did a manula backup without a name and it appears to be backing up now. Does this remove delete the o

    MAC OSX 10.5.8 and 2TB Time Machine would not back up. Saw discussion  that suggested you change name without apostrophes etc. Went into Time Machine and did a manula backup without a name and it appears to be backing up now. Does this remove delete the old backup's ?

    Does this remove delete the old backup's ?
    No, they are all just fine.

  • Ctl-T nor the File-Open Tab are working any more. Did you kill this?

    I am a heavy user of the Ctl-T function, which opens a new tab on my existing Firefox screen. It is no longer working. Also, when I select File - New Tab, that doesn't open a new tab either.
    The File - New Window option works, but I don't want to have multiple Firefoxes open on my system.
    I've used this feature forever, and in the last couple of weeks (didn't notice the exact time), it stopped working. Did you change something?

    Try uninstalling the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and the current version of Firefox.

  • I recently switched from an iPhone to an Android phone. I cannot receive text messages because Apple will not "release" my number from iMessage. I see others have had the same issue. How did you solve the problem, if you did?

    I recently switched from an iPhone to an Android phone. I cannot receive text messages because Apple will not "release" my number from iMessage. I see others have had the same issue. How did you solve the problem, if you did?

    This tech note addresses your problem: iOS: Deactivating iMessage

  • None of the quicktime videos from websites play anymore. This started yesterday. Before that I could play them all. Now none of them work. Has anyone had this problem? How did you fix it? Thanks in advance for the help!

    None of the quicktime videos from websites play anymore. This started yesterday. Before that I could play them all. Now none of them work. Has anyone had this problem? How did you fix it? Thanks in advance for the help!

    Did you try
    1, resetting the device
    2, deleting all cookies / history items of Safari?

Maybe you are looking for

  • XSLT mapping - getting node count

    I'm mapping a flat file to an 835, and on the advice of Boatseller I've dove into XSLT in order to finish the map and it has been the best thing I've ever done. However, not being a real pro at XSLT I am stuck on one thing I hope you guys can help me

  • Mail crashing hard - crash log details, what to do next

    Hello all. I've just started having Mail app crash moments after starting, apparently as it's trying to download new email from certain accounts. I've seen references to similar problems here lately; the advice usually has been to trash the "com.appl

  • Problem with manual sync of ringtones

    If I manually copy a ringtone(I have 3 in iTunes) from my library to my iPhone everything looks great in iTunes (3 ringtones, 3 different songs). However, if I open settings\sounds\ringtones on my iPhone, only the last ringtone shows, albeit multiple

  • How to import ear files into nwds

    Hi, i have some  ear files how can i import then into NWDS. Thanks shikore Edited by: kishore shikore on Feb 10, 2010 5:18 AM

  • Where is the default OS X planet desktop image?

    When OS X boots up there is a default planet image behind the login box. Can someone please tell me where this image is located? Thanks, James