Quantcast
Channel: Oracle, MySQL, Sybase, Informix and other databases
Viewing all 1350 articles
Browse latest View live

Get OleDb reading from excel to skip all empty rows.

$
0
0

I have been wracking my brain trying to figure out how to get OleDB to not import empty rows in my importable excel files.  It starts and will run perfectly fine until it hits an empty row and then it craps out.  Is there some way of doing this where if the row it is encountering it goes to the next row?  I am using a foreach loop.  The loop code looks like this:

                {
                    File.Copy(ExcelTempl, ExcelFile);
                    DirectoryInfo di = new DirectoryInfo(DropZone);
                    FileInfo[] fi = di.GetFiles("Master_*.xl*");
                    // step through each found file 
                    foreach (FileInfo fiTemp in fi)
                    {
                        {
                            // Connection String to Excel Workbooks
                            System.Threading.Thread.Sleep(1000);
                            string excelConnStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + DropZone + "\\" + fiTemp + "'; Extended Properties=\"Excel 8.0; HDR=YES; IMEX=1;\"";
                            WriteEvent("File Read", "Reading excel file " + fiTemp + " now.", "Automation User");
                            using (OleDbConnection connection = new OleDbConnection(excelConnStr))
                            {
                                connection.Open();
                                DataTable dt = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                                if (dt != null)
                                {
                                    string[] excelSheets = new String[dt.Rows.Count];
                                    int i = 0;
                                    foreach (DataRow row in dt.Rows)
                                    { // I believe I need to do something right here

Any suggestions would be appreciated!


The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine. error to process excel file

$
0
0

I use new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=uploadedfile;Extended Properties=""Excel 8.0;HDR=NO;IMEX=1""");to process uploaded excel file, however I got  The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine error on production machine.

I search some solutions, download and installed

Microsoft Access Database Engine 2010
http://www.microsoft.com/en-us/download/details.aspx?id=13255

2007 Office System Driver: Data Connectivity Components
http://www.microsoft.com/en-us/download/details.aspx?id=23734

still I got same error, then I followed this link

http://www.itzoz.com/2013/03/how-to-solve-microsoftjetoledb40-and.html

Enabled "enable 32-bit applications" on application pool, then I found the whenever I try to connect the website, the application pool will stop, and give me service unavailable error. So, instead of install full office suit software on production web server, what should I do?

SQL Data Source giving "No value given for one or more required parameters." error

$
0
0

hi, 

I have a simple search function which takes the users input and checks this against a field in my database, however i would like the search to check 2 fields in the database table.

When i have only one field the sql command works fine, however when i add the second field to teh sql command i get an error of "No value given for one or more required parameters." when attempting a search.

My code is as follows;

<asp:SqlDataSource ID="SqlSearch" runat="server" ConnectionString="<%$ ConnectionStrings:#######Data %>" ProviderName="<%$ ConnectionStrings:########.ProviderName %>" SelectCommand="SELECT [ID], [PartNo], [Description], [Category] FROM [Items] WHERE (Description LIKE  '%' + ? + '%') OR (Category LIKE '%' + ? + '%') AND ([ShowOnSite] = true)"><SelectParameters><asp:ControlParameter ControlID="Search" Name="Description" PropertyName="Text" Type="String" /></SelectParameters>

So i would like sql command to search both the description and category fields, would this be possible? 

Thanks 

Opening a MySQL data record

$
0
0

What I am trying to do using ASP>NET VB is create a new record when redirecting to another screen.  The purpose of this is to save values.  View state works OK but it requires using the back button.  I guess I could use Session State but there are many. Also, I want to use an AJAX update panel, so view state controls do not seem to work.

I already have code that saves a new record.  I also have code that retrieves a record using the click even with a list control.

My idea would be when returning to the original screen to use the form load event to call a sub that would open a specific record in the database.  This would be the record that was saved when last leaving the screen. Where I am stuck is I cannot learn how to open a data record except by using the list box.

Any ideas?

Update in model get error

$
0
0

Hi Guys i need a help

I update my model and i get very errors

add fk and pk

follow img

any sugestion

How to apply range in excel using asp.net c#

$
0
0

using (OleDbDataAdapter oda = new OleDbDataAdapter("SELECT * From [" + sheet1 + "A2:B6]", excel_con))
{
oda.Fill(dtExcelData);
}

this statement gives me  the error,i dont knw how to apply range

 plz help me

Error Model MVC

$
0
0

Hi guys

I got this error

Error 2 Error 2019: Member Mapping specified is not valid. The type 'Edm.Int64[Nullable=False,DefaultValue=]' of member 'IDEXERCICIO' in type 'Model.EXERCICIO' is not compatible with 'OracleEFProvider.number[Nullable=False,DefaultValue=,Precision=7,Scale=0]' of member 'IDEXERCICIO' in type 'Model.Store.EXERCICIO'. C:\Users\luiz.pereira\Desktop\Luiz Desk\TRIBUNAL DE CONTAS ST PR\Sistema\Fontes\Desenvolvimento\TCE_Vr_003\Models\Model.edmx 21569 21569 TribunalPR

any suggestion please?

Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.

$
0
0

Getting error, Two databases are working but getting this error for one database

Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.

Server Error in '/' Application.


Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Data.OleDb.OleDbException: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


Stack Trace: 

[OleDbException (0x80004005): Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.]
   System.Data.OleDb.OleDbConnectionInternal..ctor(OleDbConnectionString constr, OleDbConnection connection) +959721
   System.Data.OleDb.OleDbConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningObject) +86
   System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup) +29
   System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) +4871084
   System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) +117
   System.Data.OleDb.OleDbConnection.Open() +40
   System.Data.Common.DbDataAdapter.QuietOpen(IDbConnection connection, ConnectionState& originalState) +31
   System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +112
   System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +287
   System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable) +100
   TraderUltimateUtils.OleDb.GetDataSet(String sql, DbParam[] dp, Int32 startRecord, Int32 maxRecords) +446
   TraderUltimateUtils.BaseDb.GetDataSet(String sql, DbParam[] dp) +49
   TraderUltimateUtils.DB.GetDataSet(String sql, DbParam[] dp) +57
   TraderUltimateUtils.DB.GetDataTable(String sql, DbParam[] dp) +43
   TraderUltimateUtils.DB.GetDataTable(String sql) +39
   WebDemos.DBDataManager.get_Exchanges() +62
   WebDemos.Scanner.OnInit(EventArgs e) +141
   System.Web.UI.Control.InitRecursive(Control namingContainer) +333
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +378

 


Version Information: Microsoft .NET Framework Version:2.0.50727.5477; ASP.NET Version:2.0.50727.5483


Query using 3 datasets

$
0
0

I have a query that needs data from 3 different datasets.

Here's the code I have so far:

Dim Conn1 As New MySqlConnection(ConfigurationManager.ConnectionStrings("MYSQLConn1").ConnectionString)
Dim Conn2 As New MySqlConnection(ConfigurationManager.ConnectionStrings("MYSQLConn2").ConnectionString)

Conn1.Open()
Conn2.Open()

Dim query As String = "select distinct `number`from db1.numbers e where e.customer = 32"
Dim query2 As String = "select `number` from db2.numbers where CustomerID = 32"
Dim query3 As String = "select `number` from db2.numbers2"

DATASET1 = New MySqlCommand(query, Conn2).ExecuteReader
DATASET2 = New MySqlCommand(query2, Conn1).ExecuteReader

Results2 = New DataTable
Results2.Load(DATASET2)

Conn1.Close()
Conn2.Open()

DATASET3 = New MySqlCommand(query3, Conn1).ExecuteReader

Results = New DataTable
Results.Load(DATASET1)

Results3 = New DataTable
Results3.Load(DATASET2)

Conn1.Close()
Conn2.Close()

Here's the query that I need it to work using the results from the above 3 datasets:

select distinct `number`
IF(`number` in (select `number` from DATASET2), 1, 0) as 'status' 
from DATASET1 e 
where number like '0744%' 
and customer = 1
AND `number` not in (select `number` from DATASET3) 
order by status desc;

Q: How can I make the above query work having these datasets?

OleDB duplicating records

$
0
0

Forgive me if this is in the wrong place but I figure I would ask here anyway.  I am using OleDB to read records from Excel.  The crazy thing is it was working properly for the longest.  Now all of a sudden, it takes my records and duplicates them.  To rule out code related issues, I tried a test on an excel with only one record.  That one was fine.  So I figured after my reboot the problem was resolved. It is not.  I simply do not get what the problem is because it does not always do this.  It is at random.

MVC Application with Oracle DB

$
0
0

Hi All,I am new gem for developing MVC application's. I created an MVC 4 application using VS 2013.

In oracle I have one table as SSO having two columns as SSOID and SSONUM.

I created one Procedure to get data on the basis of requested ID.

CREATE OR REPLACE PROCEDURE GETSSODETAILS (
cursorParameter OUT SYS_REFCURSOR,
p_ssoid IN SSO.SSOID%TYPE
)
as
SSONum SSO.SSOnum%TYPE;
SSOid SSO.SSOid%TYPE;
cursor CursorParam is
SELECT * FROM SSO WHERE SSOID=p_ssoid;
BEGIN
  OPEN cursorParam;
  if cursorParam%ISOPEN THEN
  FETch cursorParam into SSONum, SSOid;
  dbms_output.put_LINE('SSONum = ' || SSONum || ' SSOid = ' || SSOid);
  END IF;  
END;

Now I added ADO .Net ENtity Model Framework in my project to work with Db Context.

After that In HomeController.cs class i have below code :

public ActionResult Index()        
        {
            Entities entities = new Entities();
            var output = entities.GETSSODETAILS(1);           
            return View(output);
        }

Which makes a call to my Model1.context.cs and there I have code as below

public virtual ObjectResult<SSODetails> GETSSODETAILS( Nullable<decimal> p_SSOID)
        {
            var p_SSOIDParameter = p_SSOID.HasValue ?
                new ObjectParameter("P_SSOID", p_SSOID) :
                new ObjectParameter("P_SSOID", typeof(decimal));
            return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction<SSODetails>("GETSSODETAILS", p_SSOIDParameter);
        }

When I am running this code, It gives me error as below

ORA-06550: line 1, column 8:
PLS-00306: wrong number or types of arguments in call to 'GETSSODETAILS'
ORA-06550: line 1, column 8:
PL/SQL: Statement ignored

Please let me know Am I doing something wrong..?? I believe I have to pass one more parameter in my Model1.context.cs function while calling ExecuteFunction() method. and that should be output parameter. I am not able to declare output parameter which works with CURSOR type in Oracle.

Spent my last four days on this. Would be great if anyone can help me asap. I have deadlines to kick off my project.

I will be lucky if someone can send dummy project for the same requirements. VS 2013, using Oracle Database with the help of ODP .Net using ENtityFramework, Calling procedure.

Thanks

Virender Sasmal

Can´t find a way around this MySQL ODBC 5.1.6 bug

$
0
0

I have a .NET 4.5 website that uses mysql-connector-odbc-5.1.6-winx64 to communicate with a MySQL 5.5.30(Linux) server. When my host upgraded to Microsoft Windows 2012(IIS 8.5) a difficult bug emerge. This is what the Exception log said :

Faulting application name: w3wp.exe, version: 8.5.9600.16384, time stamp: 0x52157ba0
Faulting module name: myodbc5.dll, version: 5.1.6.0, time stamp: 0x4af34e94
Exception code: 0xc0000005
Fault offset: 0x00018346
Faulting process id: 0x2b8c
Faulting application start time: 0x01d0618edaa07c23
Faulting application path: C:\Windows\SysWOW64\inetsrv\w3wp.exe
Faulting module path: C:\Program Files (x86)\MySQL\Connector ODBC 5.1\myodbc5.dll
Report Id: 206c1036-cd82-11e4-80d8-005056915c0b
Faulting package full name: 
Faulting package-relative application ID:

I recreated the exception on my own computer(Windows 8.1(IIS 8.5)). By installing 

mysql-connector-odbc-5.1.13-winx64
 the problem went away. My host can however not upgrade there mysql-connector-odbc-5.1.6 so Im stuck.

The exception is thrown when executing the fill method below

protected int fill(out DataSet ds, OdbcCommand inCommandObj)
        {
            OdbcDataAdapter dataAdapter;
            try
            {
                ds = new DataSet();
                dataAdapter = new OdbcDataAdapter(inCommandObj);
                mainConnection.Open();
                return dataAdapter.Fill(ds); 
            }
            finally
            {
                mainConnection.Close();
            }
        }

This is how the exception looks like

System.AccessViolationException occurred HResult=-2147467261
Message=Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Source=System.Data
StackTrace: at System.Data.Common.UnsafeNativeMethods.SQLGetData(OdbcStatementHandle StatementHandle, UInt16 ColumnNumber, SQL_C TargetType, CNativeBuffer TargetValue, IntPtr BufferLength, IntPtr& StrLen_or_Ind) at System.Data.Odbc.OdbcStatementHandle.GetData(Int32 index, SQL_C sqlctype, CNativeBuffer buffer, Int32 cb, IntPtr& cbActual) at System.Data.Odbc.OdbcDataReader.GetData(Int32 i, SQL_C sqlctype, Int32 cb, Int32& cbLengthOrIndicator) at System.Data.Odbc.OdbcDataReader.internalGetString(Int32 i) at System.Data.Odbc.OdbcDataReader.GetValue(Int32 i, TypeMap typemap) at System.Data.Odbc.OdbcDataReader.GetValue(Int32 i) at System.Data.Odbc.OdbcDataReader.GetValues(Object[] values) at System.Data.ProviderBase.DataReaderContainer.CommonLanguageSubsetDataReader.GetValues(Object[] values) at System.Data.ProviderBase.SchemaMapping.LoadDataRow() at System.Data.Common.DataAdapter.FillLoadDataRow(SchemaMapping mapping) at System.Data.Common.DataAdapter.FillFromReader(DataSet dataset, DataTable datatable, String srcTable, DataReaderContainer dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue) at System.Data.Common.DataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords) at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) at Com.DataAccessLayer.FactoryBase.fill(DataSet& ds, OdbcCommand inCommandObj) in c:\Development\Bradspel Web\Website\App_Code\DataAccessLayer\FactoryBase.cs:line 153
InnerException:

The code that calls the fill method above looks like this

sqlStr = "SELECT r.threadId, r.message, r.createrId, r.createrNickName, t.title, t.description, t.replys, r.createdDate FROM forum_replys r INNER JOIN forum_threads t on(r.threadId = t.id) WHERE t.forumId = 56 and (select mR.id from forum_replys mR WHERE mR.threadId = t.id ORDER BY mR.createdDate ASC limit 1) = r.id ORDER BY t.createdDate DESC limit ?";
                commandObj = new OdbcCommand(sqlStr, mainConnection);
                commandObj.Parameters.Add("@newsCount", OdbcType.Int).Value = newsCount;

                fill(out ds, commandObj);

If I remove the r.message, then everything works just fine. By running the same quary in MySQL Workbench I can see that the message that fails to return looks like this :

'[Pic]http://www.bradspel.net/App_Themes/bradspel/Images/common/gameoftheryear/bestgames.gif[/Pic]<br><br>[R]&#197;rets br&#228;dspel 2014 &#228;r utsedda! [/R]<br>Tackar alla som hj&#228;lpt till att ta fram &#229;ret br&#228;dspel!<br><br>[Pic]http://www.bradspel.net/App_Themes/bradspel/Images/common/gameoftheryear/winners2014.png[/Pic]<br><br>1. [Dead of Winter: A Crossroads Game (2014)]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=150376<br>2. [Splendor (2014)]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=148228<br>3. [Caverna: The Cave Farmers - 2013]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=102794<br>4. [Istanbul - 2014]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=148949<br>5. [Star Wars: Imperial Assault - 2014]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=164153<br>6. [Imperial Settlers - 2014]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=154203<br>7. [Alchemists - 2014]http://www.bradspel.net/sites/bradspel/game/game.aspx?gameId=161970<br><br>[R]Homeland: The Game[/R]<br>[Recension av ConraDargo]http://www.bradspel.net/sites/bradspel/community/communityReplys.aspx?threadId=2501<br><br>[Pic]http://i.imgur.com/nISZpV2.jpg[/Pic]<br>[Youtube l&#228;nk]https://www.youtube.com/watch?v=DOLG43FCmE0'

The field in the databasetable is set the following way :

message, TEXT,NotNull,default: empty, coolation UTF8(default but are used forSwedish),Engine: INNDB

I have tried to replace the r.message in the SQL query with the message above hardcoded(as message) and this works without problems.

How could I work my way around this problem?

server side report viewer

$
0
0

i just want to add a customised search button in report viewer can any one help me how to add a search button with server side report viewer .

or else

how to modify find button in report viewer to find all.

asp.net and oracle database .

$
0
0

I have followed this  tutoriel to establish connection with my empty data base, "http://blogs.msdn.com/b/kaevans/archive/2009/07/18/connecting-to-oracle-from-visual-studio.aspx", but when connexion is established i find many tables : customers, region.. in ma data base and even if i add any table to data base i found only this tables , i don't understand what going wrong are this tables come with installation .

Oracle client

$
0
0

Please give suggestion.

While trying to open connection  to oracle through vs2010 its givng the following error.

"Attempt to load Oracle client libraries threw BadImageFormatException.  This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed."


How to auto increate age column in database.

$
0
0

Hi all,

How to auto increate age (nvarchar(50)) column at the end of every years in sql database.

How to do auto increate age column in database.

Please provide me,

Thanks all,

Mysql error:0 and Mysql error:2003 how to resolve these while using mysql in asp.net web application?

$
0
0

 Hi, I'm getting following MySQL errors.  So please help to resolve these. I have installed the following MySQL components:

  • mysql-workbench-community-6.0.9-win32
  • mysql-connector-odbc-5.3.4-win32
  • mysql-connector-net-6.9.5
  • mysql-5.6.21-win32
  • xampp-win32-1.8.3-3-VC11-installer
  • mysql-gui-tools-5.0-r17-win32-mysql query browser

I want to run mysql work bench for asp.net web application and query browser for another java eclipse application and want to instal xampp for php aplication.

Can i use same mysql for different applications,please mention how to set up that....

Mysql administrator error could not connect to the specified instance. 
mysql error number 2003:can't connect to mysql server on 'localhost'(10061) 
If u want to check network connection ,please click the ping button is displaying. when gave mysql instance configuration wizard to reconfigure, t
he service could not be started.Error:0 
is displaying..

Here i have used the port no:3306, user:root, password:root, localhost

In MySQL work bench its showing no connection and when i open MySQL command prompt and enter the password it shows error 2000 and it automatically gets closed. Please help to resolve this problem.

Retrieve data from Excelstring strSQL = "SELECT * FROM [" + excelSheets[0] + "]"; OleDbCommand cmd = new OleDbCommand(strSQL, conn); DataTable datatable = new DataTable(); OleD

$
0
0
string strSQL = "SELECT * FROM [" + excelSheets[0] + "]";

OleDbCommand cmd = new OleDbCommand(strSQL, conn);

DataTable datatable = new DataTable();

OleDbDataAdapter da = new OleDbDataAdapter(cmd);

da.Fill(datatable);

DataTable filteredRows = datatable.Rows.Cast<DataRow>()
                        .Where(row => !(row.ItemArray.All(field => field is System.DBNull || field.ToString() == "")))
                        .CopyToDataTable();

I found out that  there are column name like F15, F16, F17. F18 ......and so on.

How am I going to remove the columns or to filter out the columns like above 

Thank You

Exception message: The 'OraOLEDB.Oracle' provider is not registered on the local machine; In windows server 2012 which version of oracle client i should install ?

$
0
0

HI

i deployed an asp.net application in IIS 8 in windows server 2012 

in application pool settings of this application i enabled 32 bit application ; 

and when this application trying to connect oracle 10 database server i get following error

Event code: 3005 Event message: An unhandled exception has occurred. Event time: 21/06/36 04:39:36 م Event time (UTC): 21/06/36 01:39:36 م
Event ID: c21a9fc503154dc1b6f98f6b6526402f Event sequence: 6 Event occurrence: 1 Event detail code: 0

Application information: Application domain: /LM/W3SVC/3/ROOT/ExecutionReq-1-130731467711977768
Trust level: Full Application Virtual Path: /ExecutionReq Application Path: C:\inetpub\wwwroot\wss\VirtualDirectories\\ExecutionReq\
Machine name: TSHAREPINT2013 Process information: Process ID: 8692 Process name: w3wp.exe Account name: TEST\xxx
Exception information: Exception type: InvalidOperationException


Exception message: The 'OraOLEDB.Oracle' provider is not registered on the local machine.

at System.Data.OleDb.OleDbServicesWrapper.GetDataSource(OleDbConnectionString constr, DataSourceWrapper& datasrcWrapper)

connection string:

<add name="ConnectionString_portal" connectionString="Provider=OraOLEDB.Oracle;Data Source=portal;Persist Security Info=True;Password=xxxx;
User ID=xxx" providerName="System.Data.OleDb" />

1) In windows server 2012 which version of oracle client i  should install ?

How to remove 64 bit Oracle client (Version 12.1.0.2.0 ) from windows server 2012

$
0
0

HI

In windows server 2012 and IIS 8  i deployed an asp.net application and enabled 32 bit

but when i connect to oracle  i found problems and checked below command , and found 64 bit client installed and how to remove this 64 bit client

1) when i use this  command  i see below results ,

C:\Windows\system32>tnsping /?

TNS Ping Utility for 64-bit Windows: Version 12.1.0.2.0 - Production on 10-APR-2
015 18:32:36

Copyright (c) 1997, 2014, Oracle. All rights reserved.

so how to  remove 64 bit client and install 32 bit

Viewing all 1350 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>