Help in calculating correct ofset for SQL

Hello Everyone
Please help me in formulating sql query
Basically what I want is that I need to get desired result in such a way that, whenever Transaction type is Sales Order Issue, I want last TRANSACTION_COSTED_DATE of 'Intransit Shipment'
INVENTORY_ITEM_ID     TRANSACTION_COSTED_DATE     TRANSACTION_TYPE     R
123     28-06-2012 21:36     Intransit Shipment     
123     23-07-2012 01:25     Sales order issue     28-06-2012 21:36
123     30-07-2012 05:20     Sales order issue     28-06-2012 21:36
123     08-08-2012 20:03     Intransit Shipment     
123     23-08-2012 11:15     Intransit Shipment     
123     27-08-2012 16:19     Intransit Shipment     
123     27-08-2012 16:19     Intransit Shipment     
123     05-09-2012 04:22     Sales order issue     27-08-2012 16:19
123     05-09-2012 04:22     Sales order issue     27-08-2012 16:19
123     17-09-2012 01:42     Sales order issue     27-08-2012 16:19
123     17-10-2012 22:25     Sales order issue     27-08-2012 16:19
123     13-11-2012 21:12     Intransit Shipment     
Lag with offset 1 doesn’t work as it will only go to previous row,
What I want is that it should go to row above where transaction type is Intransit Shipment
Sample data and query I tried
with sampl_rownum_reset as
(select '123' inventory_item_id,
to_date ('28-Jun-2012 9:36:23 PM ', 'DD-MON-RRRR HH:MI:SS AM')
transaction_costed_date,
to_date ('28-Jun-2012 9:35:23 PM ', 'DD-MON-RRRR HH:MI:SS AM')
transaction_date,
'Intransit Shipment' transaction_type
from dual
union all
select '123',
to_date ('23-Jul-2012 1:25:44 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('23-Jul-2012 9:40:08 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('30-Jul-2012 5:20:38 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('01-Aug-2012 9:37:17 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('08-Aug-2012 8:03:04 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('08-Aug-2012 7:59:33 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Intransit Shipment'
from dual
union all
select '123',
to_date ('23-Aug-2012 11:15:40 AM', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('23-Aug-2012 11:12:24 AM', 'DD-MON-RRRR HH:MI:SS AM'),
'Intransit Shipment'
from dual
union all
select '123',
to_date ('27-Aug-2012 4:19:46 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('27-Aug-2012 4:11:55 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Intransit Shipment'
from dual
union all
select '123',
to_date ('27-Aug-2012 4:19:46 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('27-Aug-2012 4:11:55 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Intransit Shipment'
from dual
union all
select '123',
to_date ('05-Sep-2012 4:22:16 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('18-Sep-2012 9:44:14 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('05-Sep-2012 4:22:16 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('18-Sep-2012 9:44:15 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('17-Sep-2012 1:42:43 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('17-Sep-2012 9:35:35 AM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('17-Oct-2012 10:25:12 PM', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('17-Oct-2012 10:22:28 PM', 'DD-MON-RRRR HH:MI:SS AM'),
'Sales order issue '
from dual
union all
select '123',
to_date ('13-Nov-2012 9:12:43 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
to_date ('13-Nov-2012 9:07:48 PM ', 'DD-MON-RRRR HH:MI:SS AM'),
'Intransit Shipment'
from dual)
select inventory_item_id,
transaction_costed_date,
transaction_date,
transaction_type,
case
when transaction_type = 'Intransit Shipment' then null
else lag (transaction_costed_date, 1) over (order by inventory_item_id,
transaction_costed_date, transaction_date)
end r
from sampl_rownum_reset
order by inventory_item_id, transaction_costed_date, transaction_date
Thanks
Sachin

Hi,
when you put some code please enclose it between two lines starting with {noformat}{noformat}
i.e.:
{noformat}{noformat}
SELECT ...
{noformat}{noformat}
Is this fitting your needs?SELECT inventory_item_id
, transaction_costed_date
, transaction_date
, transaction_type
, CASE transaction_type
WHEN 'Sales order issue ' THEN
LAST_VALUE (CASE transaction_type
WHEN 'Intransit Shipment' THEN
transaction_costed_date
END IGNORE NULLS)
OVER (ORDER BY inventory_item_id, transaction_costed_date, transaction_date)
END r
FROM sampl_rownum_reset
ORDER BY inventory_item_id, transaction_costed_date, transaction_date;
INVENTORY_ITEM_ID TRANSACTION_COSTED_DATE TRANSACTION_DATE TRANSACTION_TYPE R
123 28-06-2012 21:36:23 28-06-2012 21:35:23 Intransit Shipment
123 23-07-2012 01:25:44 23-07-2012 09:40:08 Sales order issue 28-06-2012 21:36:23
123 30-07-2012 05:20:38 01-08-2012 09:37:17 Sales order issue 28-06-2012 21:36:23
123 08-08-2012 20:03:04 08-08-2012 19:59:33 Intransit Shipment
123 23-08-2012 11:15:40 23-08-2012 11:12:24 Intransit Shipment
123 27-08-2012 16:19:46 27-08-2012 16:11:55 Intransit Shipment
123 27-08-2012 16:19:46 27-08-2012 16:11:55 Intransit Shipment
123 05-09-2012 04:22:16 18-09-2012 09:44:14 Sales order issue 27-08-2012 16:19:46
123 05-09-2012 04:22:16 18-09-2012 09:44:15 Sales order issue 27-08-2012 16:19:46
123 17-09-2012 01:42:43 17-09-2012 09:35:35 Sales order issue 27-08-2012 16:19:46
123 17-10-2012 22:25:12 17-10-2012 22:22:28 Sales order issue 27-08-2012 16:19:46
123 13-11-2012 21:12:43 13-11-2012 21:07:48 Intransit Shipment
Regards.
Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Help to find correct patchset for upgrade on Metalink

    I am new to Metalink and need help to find correct patchset to upgrade base database version from 10.2.0 to 10.2.0.2 on Sun Solaric (SPARC 64)
    What selections should I pick to get correct download link?

    1) Click on the 'Patches and Updates' tab
    2) Click on the 'Quick Links to the Latest Patchsets, Mini Packs, and Maintenance Packs' link
    3) Hover over the 'Oracle Database' link, hover over the operating system, click on the target version to which you want to upgrade
    On the resulting page you click on 'Download' icon.

  • Laptop says 'This version of iTunes has not been correctly localised for this language. Please run the English Version'. Can anyone help please, have no idea what to do and haven't used laptop in over a year. iPad/iPhone have lost tunes from laptop too.

    my laptop will not open iTunes, as it just says 'This version of iTunes has not been correctly localised for this language. Please run the English version'. I have not synconised my iPhone 5S or iPad 2 with iTunes for well over a year. I noticed the music which had previously been put into iTunes has dissappeared from my phone and iPad. I also want to remove some movies from my iPad and iPhone and there is no way I can do this without being able to manually sync with the Laptop which is running windows 7. Has anyone else come across this and please can you help? I am no expert in fact I know very little about the Laptop, it is my Husbands baby but he doesn't understand anything to do with Apple including iTunes. I will need any advise explained step by step please.

    Hi Shelady,
    Try downloading and reinstalling the latest version of iTunes from the first link below. If that doesn't do it, the suggestions in the second article should resolve the installation issue.
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    -Jason

  • Adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem

    Hi,
      I got this message after importing about ten or so H.264 files that I encoded from Adobe media encoder.  "adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem."
    The files we're shot with HD cameras.  Edited in Premiere Pro CS3.  I installed the update 3.0.1 with still the same error.
    I also tried a brand new project and after about ten or so files being imported into a timeline, the system crash.  I tried this twice....
        Thanks in Advance

    Hi Hunt,
           Here is the skinny.  A window base PC.  footage shot with HD sony HD cameras,  Project imported to Premiere CS3.  Once completed sent file to Adobe media encoder and render them as H.264 widescreen high Quality.  Imported them to Adobe Encore CS3.  After about ten files or so.  I got the error message.  Did all the basic trouble shoot like restarting the computer, got latest patch.  Even build a new test project with the same problem.
        Something else I read in the forums, is the encore will transcoded the project to Mpeg 2 anyway, after looking at my project I realized those few files were indeed untranscoded.  So it will be a double compression and I dont want that.  So, my new question is, what is H.264 good for ?????????? I was research that Mpeg 2 is a faster render but H.264 is a slower render but better quality.....
       what do you think ????
       Peter

  • TS3212 im trying to reinstall but will not allow, due to an error 7,  itunes helper not installed correctly,i have tried several times, but will not allow me to install, i have used itunes for years but now cant use it, can you help

    i have tried to reinstall itunes because it is saying i cant use my itunes due to an error 7, itunes helper not installed correctly, please reinstall, i have tried several times but still not allowing me to use, ive never had this problem before in all the years i have used itunes, i have gone through all the troubleshooting but still no access, can you help

    Many thanks.
    That suggests that another application has stashed old QuickTime componentry in your system files.
    So just in case we'll go looking for older QuickTime componentry in the most common locations for it to be stashed.
    First we'll need to change some view settings.
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Now in Computer, open your C:\ drive (or whichever drive you have your operating system installed on).
    Open the "Windows" folder.
    If you have a 32-bit version of Windows, open the "System32" folder.
    If you have a 64-bit version of Windows, open the "SysWOW64" folder.
    What files and folders can you see in there with QuickTime in the title? (In a standard installation of Quicktime you should be seeing precisely two files... QuickTime.qts and QuickTimeVR.qtx ... and no QuickTime folders whatsoever.)

  • Wrong planned cost calculation while actual is calculating correct for internal activities

    Dear all,
    I am facing an issue in which when i am doing network costing with work center, activity type, cost center and giving per hour rate in KP26. System is calculating correct actual cost but every time its calculating wrong planned cost. For example: If i have given per hour rate 60 usd when planning for 100 hrs in cj20n its showing 2500 while confirmation is working correct and for 10 hrs its showing actual cost of 600.
    I have checked work kp26 also report KBST to make sure about rate. Also i have checked configuration related costing variant planned and actual and its standard PS02 and PS03.
    I will really appreciate suggestions or some one face similar issue and got it resoved.
    Thanks.

    Dear All, this issue is resloved. I didnt give quantity in KP26. However i am more curious that most of the time i dont give any quantity in kp26 and always system works fine and calculate correct cost than why this time its calculating wrong planned cost.
    Thanks all.

  • HT1222 Everytime i try to open my itunes icon it says "This version of itunes has not been correctly localized for this language.  Please run the English version".  Then there is no option and i dont know to do this.  Please help.

    Everytime i try to open my itunes icon it says "This version of itunes has not been correctly localized for this language.  Please run the English version".  Then there is no option and i dont know to do this.  Please help.

    "This version of itunes has not been correctly localized for this language.  Please run the English version".
    Let's try a repair install of iTunes.
    Restart the PC first.
    If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair".
    If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", and click "Change". Select "Repair" and click "Next" as per the following screenshot:
    Can you launch your iTunes now?

  • Trying to open itunes but a window opens and says  . this version of itunes has not been correctly localised for this language. please run. the English version. i have never had this before. please help

    Trying to open itunes but a window opens and says , this version of itunes has not been correctly localised for this language. Please run the English version. Please help.

    Hey mcooper156,
    I would try the troubleshooting steps in this first article:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717
    If that doesn't resolve the issue, then I would try and remove iTunes (and its related software) then reinstall:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Regards,
    Delgadoh

  • Need help picking the correct hard drive upgrade for my MBP

    I need help picking the correct/best hard drive upgrade for my MBP. It is the 15" 2GHz Core Duo. Came with a spacious 90GB drive.
    Suggestions and recommendations very appreciated.

    It will take almost any 2.5 inch sata drive.
    Take a look at www.newegg.com and www.macsales.com to see what's out there and how much it costs.
    Toshiba have a 320gb 2,.5 inch drive in the works, but it's not quite out yet and will be expensive.
    I'll start you off..
    http://www.newegg.com/Store/SubCategory.aspx?SubCategory=380&name=Laptop-Hard-Dr ives

  • TS1292 ive typed in the correct code for a £15 itunes voucher and still says its invalid please help as i have another 3!

    ive typed in the correct code for a £15 itunes voucher over and over but still says its invalid please help ive got 4 in total!

    Try Here  >  http://support.apple.com/kb/TS1292
    If no joy... Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

  • Help i have an old ipod touch today the wifi seems to be not working... I've been typing the correct password for my network but it doesnt work!

    Help i have an old ipod touch today the wifi seems to be not working... I've been typing the correct password for my network but it doesnt work!

    If you are sure that your password is correct try restarting your router by removing power to it for 30 seconds and restarting. On your iPod go to Settings > General > Reset > Reset network settings. Now try to connect.

  • Ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " help me

    ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " what does this mean and how can i fix it??

    - See:
    ]iTunes Store: My credit card's security code or zip code does not match my bank's records
    - If still problem contact iTunes by:
    Contact iTunes

  • When i type in the correct answer for my security question it always comes up as incorrect I have the answer written down but there not working can someone help

    hello
    when i type in the correct answer for my security question it always comes up as incorrect I have the answer written down but there not working can someone help

    Hi, Corinneact. 
    Thank you for visiting Apple Support Communities. 
    The usual cause for errors is that the security question responses are case sensitive.  If case sensitivity is not an issue with your answers, see the last step in the attached section of the article below. 
    Navigate to My Apple ID using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so. 
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Cheers,
    Jason H. 

  • Help! Licence for SQL Server 2008 VM on Windows 2012

    I am confused by latest Microsoft Virtual server licence for SQL Server 2008. 
    We have a Hyper-V host running Windows Server 2012 R2 Datacenter. Displayed in its Task Manager, it has 16 cores and 32 logical processors (with hyper-threading turned on). A SQL Server VM is running on this host with 10 Virtual processors (showing from Hper-V
    Manager). The SQL Server edition is SQL Server 2008 Standard. 
    We are using "Per Core Licensing Model". Now, the question is how many licences we need to purchase for the above SQL Server?
    There are "SQL Server 2008 Licensing Guide", "Microsoft SQL Server 2012 Virtualization Licensing Guide" and "Microsoft SQL Server 2014 Licensing Guide". But none of them covers this scenario, which is running SQL Server 2008 on
    Windows 2012 Hyper-V host Server.
    Could you please provide me your opinion: Should I license 10 cores for the SQL Server VM or license 5 cores (because the hyper-threading on physical server) ? Thank you very much in advance! 

    I am confused by latest Microsoft Virtual server licence for SQL Server 2008. 
    We have a Hyper-V host running Windows Server 2012 R2 Datacenter. Displayed in its Task Manager, it has 16 cores and 32 logical processors (with hyper-threading turned on). A SQL Server VM is running on this host with 10 Virtual processors (showing from Hper-V
    Manager). The SQL Server edition is SQL Server 2008 Standard. 
    We are using "Per Core Licensing Model". Now, the question is how many licences we need to purchase for the above SQL Server?
    There are "SQL Server 2008 Licensing Guide", "Microsoft SQL Server 2012 Virtualization Licensing Guide" and "Microsoft SQL Server 2014 Licensing Guide". But none of them covers this scenario, which is running SQL Server 2008 on
    Windows 2012 Hyper-V host Server.
    Could you please provide me your opinion: Should I license 10 cores for the SQL Server VM or license 5 cores (because the hyper-threading on physical server) ? Thank you very much in advance!

  • GeoRaptor 3.2.1 Released for SQL Developer 3.x

    Spatialites!
    After 6 months of development and testing, GeoRaptor 3.2.1 has been released for SQL Developer 3.x (tested on 3.0, 3.1 and 3.2). This release no longer supports SQL Developer 1.x or 2.x releases due to internal changes to the SQL Developer APIs.
    GeoRaptor can be downloaded from the GeoRaptor project's sourceforge page: http://sourceforge.net/projects/georaptor and installed via Help>Check for Updates>Install from Local File. Installation via SQL Developer's update mechanism should be available soon.
    The release notes for this release are:
    * Fixed issues with validate geometry functionality in particular the update dialog box.
    * Revamped "About GeoRaptor" form. Includes clickable URLs, links to mailing lists, version number listing, thanks to testers etc.
    * Placed "About GeoRaptor" icon on GeoRaptor's map toolbar.
    * SQL Developer NLS settings accessed: improvements in the display and entry and numeric data.
      -- Tolerances in Spatial Layer properties will display with the NLS decimal separator eg 0,05.
         Some parts of GeoRaptor such as Validation that show and accept numbers have not been changed from when someone else modified the code.
         If you double click on the left MBR/right MBR icon in the map at the bottom, the current centre position will display according to the NLS settings.
         Editing the value to jump the map to that point works even with grouping separators and decimal separators being commas!
    * Spatial Layer Draw has been modified to use NLS based decimal formatting.
    * New geometry marking/labelling options have been added. In particular you can now label the vertices of a linestring/polygon with the following additional elements:
      -- Cumulative length
      -- Measure (M)
      -- Z value
      -- Labelling of vertices with <id>{X,Y} now also honours 3/4D geometries. If geometry has XYY then it will be labelled as {X,Y,Z} etc.
    * You can also label each vector/segment of a linestring/polygon with:
      -- Length
      -- Cumulative Length
      -- Bearing (approximate for geodetic/geographic data)
      -- Distance (approximate for geodetic/geographic data)
      -- Bearing and Distance (approximate for geodetic/geographic data)
    * The font properties of the mark text can be changed independently of the feature label. This includes the offset and label position (CC, LL, UR etc).
    * New feature labelling options have been provided:
      -- First/middle/last vertex,
      -- Any supplied sdo_point within a line/polygon's sdo_geometry object, or
      -- Calculated by GeoRaptor on the client side using Java Topology Suite.
    * Result sets now have the ability to:
      -- Copy to clipboard all geometries across many rows and columns.
      -- Display one or more (selected) geometries in a popup image window. This functionality is also available in the result set generated by an Identify command.
    * New GeoRaptor Preferences:
      -- Width and height in pixels of the new popup image window (displaying one or more geometry objects) can be set;
      -- Colours of orphan, missing and correct metadata entries for Metadata Manager;
      -- Prefixing with MDSYS for all currently supported spatial objects - sdo_geometry, sdo_point, sdo_elem_info, sdo_ordinates, sdo_dim_info - has been made an option.
      -- There is now a new property called "Show Number Grouping Separator" in Tools>GeoRaptor>Visualisation.
         If it is ticked a number will be formatted with the thousands separator in Tools>Database>NLS eg 10000.000 will display as 10,000.000.
    * Sdo_Geometry display of all spaces in text between elements of the sdo_geometry array have been removed.
       This was done mainly to compact the sdo_geometry strings so that they are as small as possible when displaying or copying to clipboard.
    * Help pages added to the following dialogs with more to follow:
      -- Metadata Manager,
      -- Shapefile Importer and
      -- Layer Properties dialogs.
    * GeoRaptor menu entries renamed. New "Manage All Metadata" entry added to View>GeoRaptor menu.
    * Spatial Index creation dialog now supports additional index parameters and parallel build settings.
    * Metadata Manager overhauled:
      a. Shows:
         1. Metadata entries which have no underlying oracle object (orphan)
         2. Metadata entries for existing underlying objects (existing case)
         3. Database objects with sdo_geometry for which no metadata entry exists (new)
      b. All orphan/existing/missing colours for (a) can be set via Preferences>GeoRaptor>Visualisation
      c. All actions for main (bottom) metadata table are in a single right mouse click menu.
         Some entries will only appear if a single row is selection (metadata copy), others (delete and copy to clipboard) will appear for one or more.
      d. Can now switch between open connections to modify metadata of other objects in schemas other than the starting object.
      e. Buttons revamped.
    * Tab/Shapefile export:
      a. Export now supports NULL valued columns. Can be exported as an empty string (if DBase override in GeoRaptor Preferences is ticked) or
         as a predefined value eg NULL date => 1900-01-01 (set in new GeoRatptor Import/Export Preferences).
      b. Some work attempted on export of NLS strings (still not corrected).
      c. Objects with no rows now correctly processed.
    * Shapefile Import
      -- Bug relating to Linux file names corrected.
    * Fixed issue (identified by John O'Toole) with spatial index underlying a view not being used in map display.
    * Reinstated sdo_nn as the principal method for Identify (requested by John O'Toole).
    * Fixed problem with handling single click zoom in and out in GeoRaptor map etc.
    * Fixed problem with rendering lines from database item (identified by Vladimir Pek).The new "About GeoRaptor" should be read by all people installing GeoRaptor.
    Please, please consider registering your email address with our private email list so that we can get a feel for the sorts of people downloading and installing GeoRaptor.
    Please consider helping us with documentation or the internationalisation via translating properties files from English to your native language.
    GeoRaptor is written and maintained by people who use SQL Developer and Spatial every day but we don't pretend we know everything that users want: please let us know via our feature request page at SourceForge.
    We don't get paid for what we do so are always looking for additional help.
    Here are some of the requests we have had for improvements:
    1. MySQL access
    2. WMS access;
    3. Ability to import shapefile data into an existing table;
    4. Ability to processing multiple shapefiles into separate tables (current version can import one or more into a single target table);
    5. Ability to export/import layer definitions to give to others;
    6. Support for non-English character sets for varchar exports to shapefiles.Some are relatively simply, some require a lot of engineering work. For the latter, we are considering alternative funding methods to the currently completely free development approach.
    Thanks to the following for their invaluable assistance:
    Holger Labe, Germany
    John O'Toole, Ireland
    Vladimir Pek, Czech Republic
    Pieter Minnaar, Holland
    Olaf Iseeger, Germany
    Sandro Costa, Brazil;
    Marco Giana, Australia.regards
    Simon Greener
    Principal GeoRaptor Developer
    Edited by: Simon Greener on Sep 10, 2012 2:43 PM

    Simon,
    I will admit, I almost never use SQL Developer. I have been a long time Toad user, but for this tool, I fumbled around a bit and got everything up and running quickly.
    That said, I tried the new GeoRaptor tool using this tutorial (which is I think is close enough to get the jist). http://sourceforge.net/apps/mediawiki/georaptor/index.php?title=A_Gentle_Introduction:_Create_Table,_Metadata_Registration,_Indexing_and_Mapping
    As I stumble around it, I'll try and leave some feedback, and probably ask some rather stupid questions.
    Thanks for the effort,
    Bryan

Maybe you are looking for

  • Need help here! I'm out of options. Computer can't see the wireless network

    Sorry for the novel, but I have to tell you what is going on with my computer.  I also need to vent because I’m extremely frustrated.  I want to make sure I give as much info as I can we can get this fixed.  I’m done with trying to figure this out on

  • How to fix iframe issue that displays XML values instead of formatted XML in IE11

    The following sub.jsp file shows the formatted XML properly as expected when is opened directly: <% response.setContentType("text/xml"); %> <book> <chapter1>chapter 1</chapter1> <chapter2>chapter 2</chapter2> </book> IE11 shows the result as below wh

  • Incorrect daylight saving change for Brazil, 2008

    Leopard is still using outdated (2007) timezone rules for Brazil, where DST starts Oct 14 and ends on Feb 17. This is wrong for 2008. On Sep 8 this year a new decree was passed regarding DST changes. It should start on every third sunday in October,

  • Convert '000' char to '00' char

    Hi all, in my BDC Program, I have problem with WRBTR field, im my file has amout field(WRBTR) 3 decimal like '8567.000' but i want to convert '8567.00' in my BDC program. i have tried with it_item-WRBTR type decimals 2, but does not work.... is there

  • Add -5:30 (VET) to forums

    Wiki has it, why not forums?