Equivalent to SQL Server Compact or SqlLite

Hi all

Oracle has an equivalent 'No. Install' DB version comparable to Sql Server Compact or Sql Lite? I can't seem to find anything, but I could be looking right on what is obvious...

As always, appreciate the info.

-S

Scarpacci wrote:

Oracle has an equivalent 'No. Install' DB version comparable to Sql Server Compact or Sql Lite? I can't seem to find anything, but I could be looking right on what is obvious...

For mobile and embedded devices, you should look at ten times in Oracle server memory.

Oracle RDBMS itself is not suitable for these devices. Although both products share some common code in their code bases.

Tags: Database

Similar Questions

  • SQL Server compact: the filemay of the damaged database.

    I get a Message at startup:

    An error occurred initializing SQL server compact: the filemay of the damaged database. The dataabase file may be damaged.  Run the repair utility to check the file daatabase.  [Database Name = \\?\\C:\program data\DDN;\Oasis2service\data\oasis2.sdf].

    Where can I find the repair utility?

    Hello

    Try asking in the Forums in SQL Server.

    Here is the Vista Forums.

    http://social.msdn.Microsoft.com/forums/en-us/category/SQLServer

    See you soon.

  • Uninstalling SQL Server Compact 3.5 for devices error 1325.Documents is not a valid short file name.

    I tried to uninstall all parts of SQL Server Compact Edition 3.5 v (there were 3 parts); the third part, which is

    Microsoft SQL Server Compact 3.5 for Devices - ENU

    will not uninstall and I get an error message, which has in its title "Microsoft SQL Server Compact 3.5 for Devices", (which seems to me indicate that he might be from the application itself?)

    READING: "error 1325.Documents is not a valid short file name."

    Is there a valid way to uninstall this, given the problem - or an another workaround?

    I hope that it is not bad form to reply to my post (!), but I am pleased to announce that this Microsoft utility fixed my problem. I ran it, it looked for my system, then asked me if I wanted to uninstall or install a program, I chose to uninstall, it sought then yet once showed me a list of installed programs. I have selected SQL Server Compact 3.5 for Devices in the list. They asked me if I want to uninstall it (I think that - already done and I do not remember)-anyway, I welcomed the utility for uninstall and there was no problem. It is very useful. I don't know if the source of the error and this solution is specific to windows 7 64 bit, which is what my DELL Latitude E6530 is running, or if it is a general problem and fix. I'll never know the root cause, but at least I can go forward.

    http://support.Microsoft.com/mats/Program_Install_and_Uninstall

  • an error occurred initializing SQL Server compact etc... any help?

    I must have deleted something while I was cleaning on some software that address any suggestiions?

    Hi Ptolemy,

    You get this error message is because an application is in an unknown state or an update of the application has been interrupted.  Usually, this is related to the Vaio Messenger.  VAIO Messenger is a tool that allows Sony to communicate directly with users with the latest information about management of PC, updates and supply.  Please follow the steps in the link below to fix the problem.  Need Adobe reader to open the file.  I hope this will solve your problem.

    http://www.DDNI.com/vmsupport/documents/VAIO%20Messenger%20Uninstall%20and%20Reinstall%20For%20Custo...

    http://Get.adobe.com/Reader/ - adobe reader software

    Nick-

  • OBIEE in SQL Server

    Hello

    I am trying to learn how to use OBIEE 11 GR 1 material against SQL Server 2008R2 for reporting.

    I'm following these instructions: http://docs.oracle.com/cd/E23943_01/bi.1111/e10539/c3_requrmnts.htm#BGBJAIDI

    Just need to know what would be the process to start. I would create a schema (or the equivalent in SQL Server) in my Administration of BI?

    I know RCU creates an Oracle and DB2 schema where you keep the views for reports (physical layer). Not sure if it works the same way in for posting a link to SQL Server.

    Thanks for help.

    Check out these links
    http://total-bi.com/2010/10/OBIEE-11g-RCU-SQL-Server/
    http://Amit-OBIEE.blogspot.com/2011/11/installation-of-OBIEE-11g-R1-11113.html

    If brand pls help

    Published by: VIEREN Srini December 12, 2012 21:48

  • Script SQL Compact database in SQL Server 2008r2

    I am able to open the .sdf (SQL Compact Database) in Microsoft SQL Server 2008r2, but when I right click on the database, it won't let me preview the data, or the database script, so I can create a .mdf file

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • equivalent of CLRSplitSting function for sql server Oracle

    Hello friends,

    I have a query in SQL Server - which becomes data.

    Select addl_info_id, sort_seq, code, row_data, addl_info_group_id, group_sort_seq, group_row_data from dbo. CLRSplitString('2406081,2410381,2427008,2430449,2466981,2495083,1586420,2406081,2410381,2427008,2430449,2466981,2495083,1586420','',',') x v join ein_addl_info_v on x.col1 = v.addl_info_id order by sort_seq
    We have same data in oracle too, so I converted the query above to sql to ORACLE like this server...


    Select addl_info_id, sort_seq, code, row_data, addl_info_group_id, group_sort_seq, group_row_data from (with t as)
    Select '2406081,2410381,2427008,2430449,2466981,2495083,1586420,2406081,2410381,2427008,2430449,2466981,2495083,1586420', ",","double str
    Select regexp_substr(str,'[^,]+',1,level) sub_str *) t connect by level < = regexp_count (str, ',') + 1) x *.

    Join cnh_cs_targ_csce_eur_1.ein_addl_info_v v x.sub_str = v.addl_info_id order of sort_seq


    but I don't get all the data. Can someone check if the query oracle above is equivalent to the above SQL query.

    Thank you/Kumar

    Published by: kumar73 on February 15, 2013 08:47

    So your query:

    select  addl_info_id,
            sort_seq,
            code,
            row_data,
            addl_info_group_id,
            group_sort_seq,
            group_row_data
      from      xmltable(
                         'ora:tokenize($str,",")'
                         passing ',2406081,2410381,2427008,2430449,2466981,2495083,1586420,2406081,2410381,2427008,2430449,2466981,2495083,1586420' as "str"
                         columns col1 varchar2(2000) path '.'
                        ) x
            join
                ein_addl_info_v v
              on x.col1 = v.addl_info_id
      order by sort_seq
    /
    

    SY.

  • SQL Server WaitFor Delay ' 00:00:15 ' equivalent in Oracle

    Does anyone know of an equivalent of the SQL Server SQL command WaitFor Delay ' 00:00:15 ' equivalent in SQL Oracle?

    Good, but I would say that if you do not understand WHY you wait 15 seconds then there is no need to wait 15 seconds.

    After all, it costs money ONCE to write a customization, it costs money to infinity to run bad code every day...

    Here's the code to put your DB in a useless loop.

    The exact time it will take depends on how quickly your database, so increase the number of zeros for scale at the break you want.

    select max(level)
    from    dual
    connect by level <= 1000000
    
  • Equivalent of Oracle DB record Simple of Transaction in SQL Server mode?

    G ' Day Experts!

    I was wondering not if Oracle DB has the functional equivalent of the 'simple' operation logging available in SQL Server?

    It would be available at the level of the schema, or it should be the entirety of an instance?

    I ask because the WebCenter Interaction portal and related services has no practical use for point-in-time restores. The Portal uses the discrete event borders which unfortunately do not map in the relational world.

    Thank you!
    Rob in Vermont

    Plumtree says:
    G ' Day Experts!

    I was wondering not if Oracle DB has the functional equivalent of the 'simple' operation logging available in SQL Server?

    It would be available at the level of the schema, or it should be the entirety of an instance?

    I ask because the WebCenter Interaction portal and related services has no practical use for point-in-time restores. The Portal uses the discrete event borders which unfortunately do not map in the relational world.

    Thank you!
    Rob in Vermont

    Hi Rob

    I guess that you are referring to the model simple recovery , IE lose everything since the last backup. Oracle, which is equivalent to running a database in NOARCHIVELOG mode. It applies to the database rather than the instance, even if you were intending probably to database when you said instance.

    Niall Litchfield
    http://www.orawin.info/

  • Oracle, equivalent to the SQL SERVER CLRClipString function

    Hello friends,

    I am running the following sql query in SQL SERVER successfully...

    Select * from
    CLRSplitString ('33, 54, 105, 148, 149, 163, 165, 179, 193, 195, 201, 202, 234, 239, 279, 282, 297, 299, 329, 332, 350, 415, 417, 439, 440, 500, 552, 570, 589, 603, 628, 655', ", ',') x
    Join dbo. PART_ADDL_INFO_NAMES_V v x.col1 = v.addl_info_name_id

    I would like to implement the same ORACLE sql statement.

    I created the function that takes the comma-separated string and display as a single column... I want emerging in oracle as a sql statement...


    create or replace function str2tbl
    (p_str in varchar2)
    p_delim in varchar2 default '.')
    return myTableType
    as
    long l_str p_str default. p_delim;
    number of l_n;
    myTableType l_data: = myTabletype();
    Start
    loop
    l_n: = instr (l_str, p_delim);
    When the output (nvl(l_n,0) = 0);
    l_data.extend;
    l_data (l_data.count): = ltrim (rtrim (substr(l_str,1,l_n-1)));
    l_str: = substr (l_str, l_n + length (p_delim));
    end loop;
    L_data return;
    end;
    /

    DECLARE
    v_array mytabletype;
    BEGIN
    v_array: = str2tbl ('10.01.03.04.234');
    BECAUSE me in 1... v_array. COUNTING LOOP
    DBMS_OUTPUT. Put_line (v_array (i));
    END LOOP;
    END;
    /
    10
    01
    03
    04
    234


    appreciate your help...

    Thank you

    If you need to split a single string:

    with t as (
               select '33,54,105,148,149,163,165,179,193,195,201,202,234,239,279,282,297,299,329,332,350,415,417,439,440,500,552,570,589,603,628,655' str from dual
              )
    select  regexp_substr(str,'[^,]+',1,level) sub_str
      from  t
      connect by level <= regexp_count(str,',') + 1
    /
    
    SUB_STR
    -------------------
    33
    54
    105
    148
    149
    163
    165
    179
    193
    195
    201
    
    SUB_STR
    -------------------
    202
    234
    239
    279
    282
    297
    299
    329
    332
    350
    415
    
    SUB_STR
    -------------------
    417
    439
    440
    500
    552
    570
    589
    603
    628
    655
    
    32 rows selected.
    
    SQL> 
    

    SY.
    PS REGEXP_COUNT is available in 11g only. If you are using 10g:

    with t as (
               select '33,54,105,148,149,163,165,179,193,195,201,202,234,239,279,282,297,299,329,332,350,415,417,439,440,500,552,570,589,603,628,655' str from dual
              )
    select  regexp_substr(str,'[^,]+',1,level) sub_str
      from  t
      connect by level <= length(regexp_replace(str,'[^,]')) + 1
    /
    
  • Used to install Microsoft SQL Server 2005 Express Edition Service Pack 3

    I tried to install this service pack for the last 2 weeks now, but it will not be installed. As part of the update, it keeps even after 3 hours and did not finish.
    The icon just guard cycling.
    When I open / FEATURES of the PROGRAM the following programs are installed.
    Microsoft Server 2005
    2005 server compact ed (enu)
    native client server
    file server installation media
    SQL server vss writer
    I have edition windows Home premium 32-bit installed.
    My system is custom built with 2 GB ram 500 GB HDD Intel core 2 quad CPU Q6600 @2.4 GHz 2.39 GHz and gt 8600 graphics card nividia.
    I did have trouble to install other updates until now.
    Please please help as someone who is completely self-taught, and proud of it I find this very frustrating problem

    Hello Apache65,

    Thank you for visiting the website of Microsoft Windows Vista Community. The question you have posted is related to SQL Server 2005 and would be better suited in the SQL Server community. Please visit the link below to find a community that will provide the support you want.

    http://support.Microsoft.com/ph/2855 SQL server 2005 support Site

    Zack
    Engineer Microsoft Support answers visit our Microsoft answers feedback Forum and let us know what you think.

  • SQL Server programs

    Hi, I am trying to free up space on my hard drive and I have very few programs Microsoft SQL Server on my computer like, 2005, 2005 Compact Edition [ENU], 2008 (64-bit), Navigator 2008, 2008 Management Objects, 2008 Native Client, 2008 Setup Support Files, Compact 3.5 SP1 Design Tools English, Compact 3.5 SP1 English, database publishing Wizard 1.3 Native Client, Setup Support Files (English) and VSS writer. I don't know what these programs do, or how I have installed on my computer (as in the programs that I have installed, who installed the SQL Server program). Can I uninstall these programs without causing problems? Can someone tell how can I know which programs that they partners?

    Thanks for your help and your time

    Steve

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT audience Pro on Microsoft Sql Server. Please post your question in the MSDN Forum. You can follow the link to your question:
    http://social.msdn.Microsoft.com/forums/en-us/category/SQLServer/
  • I have a laptop on vista home-use. When you look in Control Panel - be uninstall, should there be several entries for SQL server, or one or none?

    I have a laptop on vista home-use.  When you look in the control panel - and then to uninstall, should there be several entries for SQL server, or one or none?  Each entry seems to have a different digital denotation, but apparently I should have only one entry maximum.

    The reason that I ask is that I have had problems in the software.  I want to uninstall everything that is not supposed to be there.

    Some lines of programs listed show information... some lines are completed.

    When you click on a line that is complete, I am allowed the usuall to uninstall, options etc.

    When you click on a line that is not complete, I'm not allowed the option uninstall.

    The Compact Edition and the full SQL Server can be installed at the same time without any problems. I saw SQL Server2005 apparently installed by a manufacturer, perhaps to support some software they have grouped in. He could have an Acer.

    I do not know what cause the problem with the uninstall option is not available. Information to fill in these fields are in the registry.

    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall if you want to watch.

    It could be the result of a broken uninstall or a bad registry cleaner. I'm not aware of anything that would fix this. You can try this http://support.microsoft.com/mats/Program_Install_and_Uninstall

    but you may have to reinstall programs later.

    You need two redistributable Visual C++ if you have programs that need it, which is likely. They had several updates that fits into the list programs. I have two for 2005 and six for 2008.

  • Problem of metric Collection of Microsoft Sql Server.

    We try to use the new 4.2.0 hyperic HQ and we encounter problems collecting some metrics in Microsoft Sql Server 2005. In particular ' Full Scans/Sec ' but not only. "Pages/sec reads" and writes of pages/sec also seem to be affected by this problem.

    It's the metric definition in hq - plugin.xml in mssql - plugin.jar

    < name metric = "Full Scans/s"
    alias = "FullScansSec."
    model = "" methods: access platform Win32:Full Scans/Sec = ""
    category = 'USE '.
    Group = "Resource Utilization"
    collectionType = "dynamic".
    units = "none" / >

    The collection type is dynamic and values in perfmon are actually dynamic, but collected values are incorrect and metric seems to be a collection trendsup type.

    Agent to run on windows 2003 R2 with sql server 2005

    Can someone help us?

    Thank you

    I checked and it seems that these measures are not currently supported.  There is a demand for improvement created for this issue:

    http://JIRA.Hyperic.com/browse/HHQ-3432

    Activation of these parameters is more than just a-commenting on HQ - plugin.xml. HQ will take any counter the metric Basic that is trends upward and adds an equivalent rate based. Therefore the steps to adding the metric:

    (1) remove all references / dry model and the name of metrics. (HQ adds the rate automatically when creating the metric base rate)
    (2) change collectionType in Dynamics trendsup


    alias = "LatchWaitsSec."
    model = "" latches: platform = waiting for Win32:Latch / s ""
    category = 'USE '.
    Group = "Resource Utilization"
    collectionType = "dynamic".
    units = "none" / >

    Will be:


    alias = "LatchWaits."
    model = "" latches: platform = Win32:Latch expected ""
    category = 'USE '.
    Group = "Resource Utilization"
    collectionType = "trendsup."
    units = "none" / >

    When HQ automatically creates rate based metrics, it will use a side "per Minute". To change this per second, add rate = 1 "s" to the tag.

  • Data migration from Oracle to SQL Server

    Hello

    I have the Oracle database in one or several table, I also blob data, i.e. images are stored, now I want to move that data to the sql server database, which is the best way to do this?

    I would like to test for a migration of the table that contains the image data in the Oracle database and invade the SQL Server table.

    How to test for an Oracle table data to SQL Server migration?

    But the first thing I want to confirm is that if the Image from Oracle DB to SQL Server DB data are possible? is there something must be supported during the migration?

    Thanks in advance.

    Kind regards

    Vishal

    Published by: 968331 on October 31, 2012 02:31

    I think that it is supported. The equivalent data type in sql server is IMAGE/varbinary (max)

    See the bottom of the article for the mapping of data types:

    http://weblogs.sqlteam.com/jamesw/archive/2010/07/28/datatypes-translation-between-Oracle-and-SQL-Server-part-1.aspx

Maybe you are looking for