odbc importer plsqldeveloper not exists excel files - plsqldeveloper

I'm using PL/SQL Developer version: 10.0.2, Microsoft Official 2016.
I have a problem with it when I import data from file excel. The problem is: On Dropdwonlist User / System Dms, I don't see value "Excel Files". Se image below
How can I do import data from Excel in this case?

Related

Error importing MS Access table to SAS

When I use the Import Data wizard in SAS Enterprise Guide, I'm getting the following error. Any ideas why? Thanks!

SAS Access Database Export : Connection failed

I am trying to export SAS Dataset to my local in ".mdb" format (Access Database). I am using Proc Export statement but it gives the error "Connection Failed"
Also, When I tried to achieve this using EG "Export" feature (on top of the editor window), I used "Export xyz as a step in Project" , I could not find access format there though excel, txt etc options were available.
I did Proc Setinit and found that SAS/Access interfact to PC Files is installed.
I am using SAS 9.4, SAS EG 7.12 and Access 2013. The code I used is as below -
proc export data=test
dbms= ACCESS
outfile="M:\SASAnalytics\Test\test1.mdb"
replace;
run;
And When I tried assigning the libname using
libname mdb "M:\AFolder\BFolder\C.mdb"
I got this error - ERROR: Connect: Class not registered.
I guess, there is nothing with the code but the SAS Access Export is not enabled or something. Please suggest what could be the issue and how to resolve that?
I assume your SAS installation is 64-bit and MS Office is 32-bit. If that so, you have to use PC Files as proxy server between SAS and Office. dbms=ACCESS is using standard LIBNAME as connection. In your case dbms=ACCESSCS is needed. Moreover for Access file you must specify file location using DATABASE= statment and table name using OUTTABLE= option in proc export. Complete code:
proc export data=sashelp.class
dbms= ACCESSCS
outtable="Class"
replace;
database = "C:\Class.mdb";
run;
More Access specific options: Microsoft Access Database Files

Does Apache Drill Support Excel Files (.xls)

I am trying to query for excel files (.xls) through dfs storage plugin:-
select * from dfs.`E:/Demos/Sample.xls`;
But It throwing some error:--
org.apache.drill.common.exceptions.UserRemoteException: VALIDATION ERROR: From line 1, column 15 to line 1, column 17: Table 'dfs.E:/Demos/Sample.xls' not found SQL Query null
Same Problem with Ms Access file.
if i query through some Microsoft Access(.accdb)files, It throwing error.
My Question is :- Whether Apache Drill Supports Excel and Ms Access Files or not.???
Also there is an open PR for Excel plugin in Apache Drill (https://github.com/apache/drill/pull/1749), so most likely it will be available in Drill 1.17.
There is a storage plugin for Apache Drill available that supports querying Excel files: https://github.com/bizreach/drill-excel-plugin
Drill doesn't currently support querying MS Excel or Access files directly.
Someone asked a similar question on Drill's mailing list and Andries gave him the following answer:
You can use the Drill ODBC driver, and then query Drill using MS Query
or the same way you would query another DB engine through an ODBC DSN.
This feature is now integrated into Drill.

SSRS - Importing data from a CSV file to use as a data source on a report server

I am hoping that someone could help me with my problem. I am able to make a local connection to a csv file and import it and use the data within the report. One problem is when I put the report onto a report server. It can't access the file on the local machine.
Would anyone know of a way, possibly using ODBC, to allow the report on the server to view the CSV file on the local machine?
You can use an ODBC connection to connect to a CSV file. You just need to point the ODBC connection at the folder the files are in:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\\\SERVER_NAME\\FOLDER_NAME\\SUB_FOLDER_NAME";Extended Properties="text;HDR=YES;FMT=Delimited"
(Note the double backslashes and header property HDR)
Then select from the filename in your query:
SELECT * FROM FILENAME.TXT

Use ODC file stored in SharePoint to connect InfoPath to SQL server

I am trying to create an InfoPath 2010 form that does the following:
Uses an ODC file which is stored in a SharePoint 2010 data connection library (for an SQL database)
Connects to SQL Server 2008 (which resides on the same domain)
Queries a table to pull results for use in the form
It works just fine when the ODC file is stored on my C drive, but as soon as the ODC file is uploaded to the connection library and I try to modify it (or create a new ODC file) the following error message appears:
An unspecified error occurred while attempting to connect to the data source. Microsoft InfoPath supports only Microsoft SQL Server and Microsoft Access database. Check the connection to ensure it uses one of those two databases.
If I manually modify the save location of a new ODC file to the SharePoint connection library the following window appears:
But it is promptly followed by the same error message:
I'm certain SharePoint and InfoPath can accommodate this... I am just not certain why it is occurring.
Going to answer my own question. Just convert the connection to a file. In InfoPath 2010 this means Data Tab>Data Connections>Select Desired Connection>Click "Convert To Connection File"
You will then be prompted for a URL to save the file at. Easy as that...