Oracle DB View - MS SQL Database

Hello XI Experts,
I have a scenario where I should deliver data from 10 views in Oracle data warehouse into corresponding MS SQL database tables. The problem is that I can't update the view so therefore I don't know which data was already processed because I can't flag them or delete them. Some of the views are really huge so to fetch them all in once is impossible. (I already crashed the system trying to do so). I need to fetch them in sequences but don't have any idea how. Has anybody have similar experience or any idea?
Thanks and regards,
Pavol Suba

It would be good to know which product you're going to use as both gateway products that can connect to the SQL Server are based on ODBC. I assume you're talking about DG4ODBC but will also comment on Dg4MSQL.
When you're going to use DG4ODBC it is the ODBC driver that needs to be SSL capable. When you have a SSL capable driver you can either use 11.2 or 12.1 release of DG4ODBC.
Regarding DG4MSQl up to 11.2.0.4 the SSL libs have been releases for several platforms and support can ask for a backport of the libs to 11.2.0.4 if they do not exist. So just file a service request if they are missing.
12c by default comes with the SSL libs and you only need to configure it.
- Klaus
Message was edited by: kgronau

Similar Messages

  • Merge to Insert or update records in SQL Database

    Hello ,
    I am having hard time with creating a Stored Procedure to insert/update the selected records from Oracle data base to SQL database using BizTalk.
    ALTER PROCEDURE [dbo].[uspInsertorUpdateINF]
    @dp_id char(32),
    @dv_id char(32),
    @em_number char(12),
    @email varchar(50),
    @emergency_relation char(32),
    @option1 char(16),
    @status char(20),
    @em_id char(35),
    @em_title varchar(64),
    @date_hired datetime
    AS
    BEGIN
    SET NOCOUNT ON;
    MERGE [dbo].[em] AS [Targ]
    USING (VALUES (@dp_id, @dv_id , @em_number, @email, @emergency_relation, @option1, @status, @em_id, @em_title, @date_hired))
    AS [Sourc] (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title, date_hired)
    ON [Targ].em_id = [Sourc].em_id
    WHEN MATCHED THEN
    UPDATE SET dp_id = [Sourc].dp_id,
    dv_id = [Sourc].dv_id,
    em_number = [Sourc].em_number,
    email = [Sourc].email,
    emergency_relation = [Sourc].emergency_relation,
    option1 = [Sourc].option1,
    status = [Sourc].status,
    em_title = [Sourc].em_title,
    date_hired = [Sourc].date_hired
    WHEN NOT MATCHED BY TARGET THEN
    INSERT (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title,date_hired)
    VALUES ([Sourc].dp_id, [Sourc].dv_id, [Sourc].em_number, [Sourc].email, [Sourc].emergency_relation, [Sourc].option1, [Sourc].status, [Sourc].em_id, [Sourc].em_title, [Sourc].date_hired);
    END;
    I am getting an error like
    WcfSendPort_SqlAdapterBinding_
    TypedProcedures_dbo_Custom" with URL "mssql://abc//def?". It will be retransmitted after the retry interval specified for this Send Port. Details:"System.Data.SqlClient.SqlException (0x80131904): Procedure or function 'uspInsertorUpdateINF'
    expects parameter '@dp_id', which was not supplied
    I cannot give the Oracle Database name directly in the stored Procedure
    I am stuck with this, and cannot figure out since I am new to SQL Queries and Stored Procedures. Any help is greatly appreciated.
    Thanks

    Hi sid_siv,
    Only the first record is inserted because of the scalar variables of the stored procedure(SP), when you call the SP, only one row is passed. To get all rows inserted, you can either declare a
    table-valued parameter
    (TVP) for the SP or using an Oracle linked server in the SP.
    Create a stored procedure with a table-valued parameter
    As you mentioned linked server is not good in your case, then TVP SP can be the only option. Regarding how to call a SP with TVP parameter in BizTalk, that's a typically BizTalk question then. I would suggest you post your question in a dedicated
    BizTalk Server forum. It is more appropriate and more experts will assist you.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Insuffiecient SQL database Permission for User

    Hi All,
    The following error is coming in the Event Viewer:
    Insufficient SQL database permissions for user 'Name: NNOK\SPPEAPO_SVC001_ES SID: S-1-5-21-2610070952-2089559051-1579118431-1720 ImpersonationLevel: Impersonation' in database 'SharePoint_AdminContent_6fa0b459-ed7c-481f-85c4-b81753e39346' on SQL Server instance
    'NOKWDCFISP'. 
    The EXECUTE permission was denied on the object 'proc_GetTimerRunningJobs', database 'SharePoint_Config', schema 'dbo'.
    Kindly reply if you know the solution for this.
    Thanks in Advance.
    Pravin Dhulap

    Hi Pravin,
    You can grant "WSS_Content_Application_Pools" execute permission to the procedure "proc_GetTimerRunningJobs"
     under SharePoint _Config database, then check results again. 
    Here is another post you can take a look.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/a0d08e98-1fd6-42cf-b738-6ba3df082210/search-account-got-insufficient-sql-database-permissions-for-user-execute-permission-was-denied?forum=sharepointadmin
    http://sharepointpaul.blogspot.jp/2013/09/resolution-of-sharepoint-event-id-5214.html
    Thanks
    Daniel Yang
    TechNet Community Support

  • Is it possible to migrate WebCenter Portal data from a SQL database to an Oracle database?

    We have our WebCenter Portal applications set up using a SQL database. Now we're wanting to migrate to an Oracle database and I'm wondering if that is possible.

    Yes it should be possible though i have not tried it myself. You basically export a file from mds ( xml) and import it into oracle db.
    Thanks
    manish

  • Steps to migrate SQL Database to Windows/Oracle

    hi
    We have an SQL database in our client network and client wants to migrate it to Windows/Oracle. Currently they have multiple databases on the same SQL server.
    So I am curious to know if oracle also allows the same in Windows.
    I read that we can indeed install one oracle home and use DBCA to create multiple oracle databases on the same host. Any pointers to any documents relevant? I also want to understood this setup and what it means for performance, backup/restore/recovery, patching/upgrade etc.
    Request your valuable inputs on this topic please.
    Regards,
    Raja

    936639 wrote:
    Basically i'm an oracle DBA and never worked in SQL Server. So could you please explain me in detail the below points alone
    " Currently they have multiple databases on the same SQL server (SQL allows it) . So I am curious to know if oracle also allows the same in Windows. I read that we can indeed install one oracle home and use DBCA to create multiple oracle databases on the same host"
    As you said you are an Oracle dba so you should know that within one Oracle home, we can create as many database as we want based on the hardware specs of that machine, though its not a good idea. You can create multiple database definitely under one home on Windows as well.
    Aman....

  • Error while migrate my primavera sql database to oracle database

    I have used the migrate batch file to migrate my old database "Primavera V 6.0 SQL" to new database "Primavera V 8.2 Oracle"
    the process in my labtop is OK
    but in my PC the process hanged on "Creat remaining database objects (e.g. constraints and indexes) " Step
    with this error
    "Error in Run SQL Script orppm_ins_aux.sql: DatabaseToolException (ORA-02298: cannot validate (ADMUSER.FK_RSRCRATE_RSRC) - Perant keys not found ) "
    any help fixing this error

    user11108903 wrote:
    Hi,
    I used the migration tool to migrate a Primavera 6.2 SQL database to Oracle 11G DB. The migration tool runned successfully and I am able to login to the database using P6.2 client with no problem; however when attemptiong to update the license on the now Oracle database using the privuser account I get the following error "License could not be loaded because of error: List index out of bounds (247). Please make sure that you are using a privileged database login" the error comes up before I can browse to the location of licesne.txt file. Same procedure on a "native" Oracle P6.2 database works perfectly with no problem. Has any one run into this problem before? any help will be appreciated.
    Best Reagrds,I have not seen that specifically but it appears that not all of the grants were correctly applied.
    I would suggest running the schema validation tool which can be found on the knowledgebase as Solution ID: prim75459 as this will tell you what is missing/invalid.
    Once you know that, you can pull the neccesary grants from the create scripts located in the cd1\install\database\scripts folder.

  • Problems with "seeing" VIEWS in one database (SQL 2008 and 2012)

    I have  database where I cannot see any views other than system views in SQL Management Studio.
    I can list them, I can modify them and the application which uses the database can access them.
    SELECT SCHEMA_NAME(schema_id) AS schema_name
    ,name AS view_name
    FROM sys.views;
    GO
    I can create new views, but these are also "invisible" in Management Studio
    Tested as dbo, sa etc.
    I don't know how to list the permissions or to change them.
    Can someone help please?
    CarolChi

    Date,Source,Severity,Message
    01/24/2015 18:51:47,Server,Unknown,A user request from the session with SPID 56 generated a fatal exception. SQL Server is terminating this session. Contact Product Support Services with the dump produced in the log directory.
    01/24/2015 18:51:47,Server,Unknown,Error: 17310<c/> Severity: 20<c/> State: 1.
    01/24/2015 18:51:47,spid56,Unknown,External dump process return code 0x20000001.<nl/>External dump process returned no errors.
    01/24/2015 18:51:47,spid56,Unknown,Stack Signature for the dump is 0x00000001015B2AD5
    01/24/2015 18:51:47,spid56,Unknown,00007FFA9AFA03C4 Module(ntdll+00000000000703C4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA9A5413D2 Module(KERNEL32+00000000000013D2)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D64C8D1 Module(sqldk+000000000003C8D1)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D64C502 Module(sqldk+000000000003C502)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D64CBA0 Module(sqldk+000000000003CBA0)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D64CA9F Module(sqldk+000000000003CA9F)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D61F997 Module(sqldk+000000000000F997)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D61FCB4 Module(sqldk+000000000000FCB4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8D61FED0 Module(sqldk+000000000000FED0)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E378B97 Module(sqllang+0000000000048B97)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E381A4C Module(sqllang+0000000000051A4C)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8F1C0911 Module(sqllang+0000000000E90911)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8F1C0542 Module(sqllang+0000000000E90542)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8F1B8343 Module(sqllang+0000000000E88343)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E357EB4 Module(sqllang+0000000000027EB4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E35877B Module(sqllang+000000000002877B)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E358CD1 Module(sqllang+0000000000028CD1)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E35F68A Module(sqllang+000000000002F68A)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E35EC84 Module(sqllang+000000000002EC84)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E35E244 Module(sqllang+000000000002E244)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8E391E4A Module(sqllang+0000000000061E4A)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA90473C23 Module(sqlmin+00000000000A3C23)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA904205F4 Module(sqlmin+00000000000505F4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA904205F4 Module(sqlmin+00000000000505F4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA904205F4 Module(sqlmin+00000000000505F4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA904205F4 Module(sqlmin+00000000000505F4)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA9043291C Module(sqlmin+000000000006291C)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA9043285F Module(sqlmin+000000000006285F)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA9042BC74 Module(sqlmin+000000000005BC74)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA8DAA8987 Module(sqlTsEs+0000000000008987)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA90B15561 Module(sqlmin+0000000000745561)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA90B8F131 Module(sqlmin+00000000007BF131)
    01/24/2015 18:51:47,spid56,Unknown,00007FFA91AEB954 Module(sqlmin+000000000171B954)
    There is a crash dump file but I guess its not appropriate to post it here.
    CarolChi

  • Count number of rows from oracle and sql database and generate a report

    Hi All,
    Can someone help me in writing a java program for the following scenario?
    1. Read the number of rows available from oracle table and print the total row count in a Report.txt text file.
    2. Read the number of rows inserted in a sql database (after a specific process-just an information) and print the total row count in the same text file Report.txt .
    3. Read the Error Log file (which is generated after a specific process say it has success and failed report for each iterations) and print the number of success and number of failure in the same text file Report.txt .
    I need the final Report.txt file in the following format:
    1. Oracle table <table name> has 500000 rows.
    2. After completion of the specific process 300000 rows were added to SQL table <table name>
    Error Log Report:
    300000 successfull entries and 200000 failed entries were found from the Error Log file.

    Thanks for your immediate reply.
    I'm just a beginner in java so if i make any mistake please correct and excuse me. :)
    This is the code i have for connecting to two different database.
    package connectDatabase;
    * @author
    import java.sql.*;
    public class ConnectTo
         public void OracleDB()
              Connection dbconn;
              try {
                DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                String connString="jdbc:oracle:thin:@SYS_IP:1521:oracl";
                dbconn = DriverManager.getConnection(connString, "uname","pwd" );
            catch(SQLException sqlex)
                 sqlex.printStackTrace();
            catch(Exception excp)
                excp.printStackTrace();
         public void SqlDB()
              Connection conn;
              try { 
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 
                String url = "jdbc:odbc:connectDB"; 
                conn = DriverManager.getConnection(url,"uname","pwd");  
              catch (Exception e)
                System.err.println("An Exception occured! " +e.getMessage()); 
    }I'm just codding the second half which is for connecting to oracle databse and calculates the row count and displayes in the command prompt.
    then connects to SQL database and counts successfull insert in the table.(row count) and displayes on the command prompt.
    can you simplify the above code so that i can call the oracleDB() method and SqlDB() method seperately from another calss file using the object of this class?
    I'm ok if the report can be seen in a command prompt. FInally i need to calculate the success and failure count from the log file. will let you know once i'm done with codding.

  • Primavera 6.2 SQL Database to Oracle 11g migration

    Hi,
    I used the migration tool to migrate a Primavera 6.2 SQL database to Oracle 11G DB. The migration tool runned successfully and I am able to login to the database using P6.2 client with no problem; however when attemptiong to update the license on the now Oracle database using the privuser account I get the following error "License could not be loaded because of error: List index out of bounds (247). Please make sure that you are using a privileged database login" the error comes up before I can browse to the location of licesne.txt file. Same procedure on a "native" Oracle P6.2 database works perfectly with no problem. Has any one run into this problem before? any help will be appreciated.
    Best Reagrds,

    user11108903 wrote:
    Hi,
    I used the migration tool to migrate a Primavera 6.2 SQL database to Oracle 11G DB. The migration tool runned successfully and I am able to login to the database using P6.2 client with no problem; however when attemptiong to update the license on the now Oracle database using the privuser account I get the following error "License could not be loaded because of error: List index out of bounds (247). Please make sure that you are using a privileged database login" the error comes up before I can browse to the location of licesne.txt file. Same procedure on a "native" Oracle P6.2 database works perfectly with no problem. Has any one run into this problem before? any help will be appreciated.
    Best Reagrds,I have not seen that specifically but it appears that not all of the grants were correctly applied.
    I would suggest running the schema validation tool which can be found on the knowledgebase as Solution ID: prim75459 as this will tell you what is missing/invalid.
    Once you know that, you can pull the neccesary grants from the create scripts located in the cd1\install\database\scripts folder.

  • Database link between Oracle 11g and MS Sql Server 2005 EE

    Hi everybody,
    I trying to create database link from Oracle 11g to MS Sql and I'm not succesful.
    I found tutorial for Oracle 10g, but it does't work.
    I created odbc data source, then I modified tnsnames.ora and listener.ora, then I created initkw.ora in HS directory and then I created dabase link, but it does't work.
    Can you help me please? Thanks for help ... ondra
    Tnsnames.ora:
    KW =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = tcp)(HOST = oracle_ip)(PORT = 1521))
    (CONNECT_DATA =
    (SID = KW)
    (HS = OK)
    listener.ora:
    (SID_DESC =
    (SID_NAME = KW)
    (ORACLE_HOME = C:\oracle\product\11.1.0\db_1)
    (PROGRAM = hsodbc)
    initkw.ora
    HS_FDS_CONNECT_INFO = kw
    HS_FDS_TRACE_LEVEL = 0
    HS_FDS_TRACE_FILE_NAME = kw.trc
    create public database link KW connect to "user" identified by "pass" using 'KW';
    Message was edited by:
    user598176

    Hi, I get two errors.
    ORA-28545 - NET8 mistake Unable to restrieve textof NEWTWORK/NCR message 65535
    and then ORA-02063
    zenda
    I resolved one of error, I have wrong ip.
    But now I have another error:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC Driver Manager] Data source name
    not found and no default driver specified (SQL State: IM002; SQL Code: 0)
    I have ODBC data source in system DSN
    PS: Our Oracle 11g database is 64 bit version
    Message was edited by:
    user598176

  • Oracle DB view to insert/update into SQL DB using BizTalk

    The  requirement is to select set of records from the Oracle Database and depending on the em_id it has to be inserted or updated in to the Sql Database table using BizTalk. Thought I would require a stored procedure to insert or update records depending
    on a field.I am new to stored procedure and managed to google, to create a stored procedure for inserting or updating the database.
    CREATE PROCEDURE [dbo].[usp_InsertorUpdateDB]
    @dp_id char(32),
    @dv_id char(32),
    @em_number char(12),
    @email varchar(50),
    @emergency_relation char(32),
    @option1 char(16),
    @status char(20),
    @em_id char(35),
    @em_title varchar(64),
    @date_hired datetime
    AS
    MERGE [dbo].[em] AS [Target]
    USING (SELECT @dp_id, @dv_id , @em_number, @email, @emergency_relation, @option1, @status, @em_id, @em_title, @date_hired)
    AS [Source] ([dp_id], [dv_id], [em_number], [email], [emergency_relation], [option1], [status], [em_id], [em_title], [date_hired])
    ON [Target].[em_id] = [Source].[em_id]
    WHEN MATCHED THEN
    UPDATE SET [dp_id] = [Source].[dp_id],
    [dv_id] = [Source].[dv_id],
    [em_number] = [Source].[em_number],
    [email] = [Source].[email],
    [emergency_relation] = [Source].[emergency_relation],
    [option1] = [Source].[option1],
    [status] = [Source].[status],
    [em_id] = [Source].[em_id],
    [em_title] = [Source].[em_title],
    [date_hired] = [Source].[date_hired]
    WHEN NOT MATCHED THEN
    INSERT ([dp_id], [dv_id], [em_number], [email], [emergency_relation], [option1], [status], [em_id], [em_title],[date_hired])
    VALUES ([Source].[dp_id], [Source].[dv_id], [Source].[em_number], [Source].[email], [Source].[emergency_relation], [Source].[option1], [Source].[status], [Source].[em_id], [Source].[em_title], [Source].[date_hired]);
    GO
    I asked a question two days before because it was showing
    Incorrect syntax near the keyword 'WHEN'.
    There was a comment showing the code is prone deadlock.Any body did this kind of scenario please help me out with this.How can I approach this. I am stuck. Thanks

    Hi,
    The scenario is been handled over  here.
    Compare and check the stored procedures to find  out out what are you missing.
    Thanks, Girish R. Patil.

  • View All SQL That HAs Been Run On A Database

    Hi,
    Is there any way to view all SQL that has been run on a database? Im looking for some sort of history if such thing exists.
    Cheers
    Paul

    user12086523 wrote:
    Hi,
    Is there any way to view all SQL that has been run on a database? Im looking for some sort of history if such thing exists.
    Cheers
    PaulWhen you figure out how to capture that data, please let me know what storage vendor you will be using to store the information. I'd like to buy stock in it.
    Seriously, whenever anyone indicates that they want the full history of everything that ever happened, I've got to wonder just how they envision using such massive amounts of raw data.

  • What do corrupted sql database viewer ?

    There MS SQL 2005 server and a database that you want to connect to the server.
    There mdf ldf and files. The problem is that, most likely, the base was incorrectly disabled, and now when you try to connect the message:
    File activation failure. The physical file name "C: \ Program Files \ Microsoft SQL Server \ MSSQL.1 \ MSSQL \ Data \ GB_main_log2.ldf" may be incorrect.
    The log can not be rebuilt because the database was not cleanly shut down. (Microsoft SQL Server, Error: 5120)
    What do corrupted sql database viewer ?

    Hi VectoriaKoalak,
    As other post, the best bet is to restore the database from a good backup.
    However, if you have no backups or have damaged backups.  To fix the database, you can set the database in Emergency Mode and run DBCC CHECKDB with the REPAIR_ALLOW_DATA_LOSS option to fix up corruptions. For more detailed steps, please review
    the following blog.
    EMERGENCY-mode repair: the very, very last resort
    http://www.sqlskills.com/blogs/paul/checkdb-from-every-angle-emergency-mode-repair-the-very-very-last-resort/
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Load maps in database - oracle map viewer

    Hi,
    In my project we are trying to use maps to display it on webpage for this we are using oracle map viewer. We’ve got maps from third party in the form of tif format. Could you please tell me how to load these maps in databse table? I’m newbie to oracle map viewer, your help will be deeply valued.

    Hi Paul, you said "We’ve got maps from third party in the form of tif format." they must be rasters. The best approach is to use MapBuilder to load such data into Spatial as GeoRaster objects and then define them as themes to display in MapViewer. All can be done using MapBuilder. you can also use the client-side java GeoRasterTools (a viewer) to load, display and export those tiff files. For that you can start with the GeoRaster user's guide.
    regards,
    Jeffrey

  • Need to find total no fo  tables/index/m.views in my database

    Hello Everyone ;
    How can i find total no fo  tables/index/m.views in my database ?
    when i  google  i have seen  following  command ;
    SQL> Select count(1) from user_tables where table_name not like '%$%' /
      COUNT(1)
             but i dont understand  what  '%$%'  indicates ?
    Thanks all ;

    Hello Everyone ;
    How can i find total no fo  tables/index/m.views in my database ?
    when i  google  i have seen  following  command ;
    SQL> Select count(1) from user_tables where table_name not like '%$%' /
      COUNT(1)
             but i dont understand  what  '%$%'  indicates ?
    Thanks all ;
    consider to simply Read The Fine Manual YOURSELF!
    Oracle Database Search Results: like

Maybe you are looking for

  • Playing .exe or .dvr video files on macbook pro.

    I know that .exe means executable files which are windows files, and i know that these files don't contain viruses i backed up video files from our surveillance video at a location that isn't at home. i want to view these files on mac and do a projec

  • Extractor for table S115

    Hi, Im looking for a standar extractor that can obtain the information that i have in the table s115 of R/3; or its necessary to create an extractor generic? Thanks for the information Mónica

  • SimpleDateFormat and Daylight Savings Time

    I am trying to parse into a Date "April 15 1999" with "MMM d YYYY" using SimpleDateFormat. This string parses w/out error and the resulting Date is: Thu Apr 15 00:00:00 PST 1999. This is correct in that I am in California. The problem is that 4/15 is

  • Disc space needed: 250Gb available

    I'm sure there must be a post on this but I've not managed to find it. Issue I want to use boot camp to partition my drive for game playing and running an accounting programme in Win OS. The standard HDD is 250Gb and I'm averaging around 200Gb used s

  • Changing View swing / html

    Hi, I'm looking to design an application using MVC. I would like to write the View component so that I can simply say choose to render it in Swing or in HTML (or anything else going forward) without having to write and maintain two GUI interfaces. So