Integration Services :: Connect SSIS To Google Drive Or Google Sheets
Aug 12, 2015
I need to download a file from google Drive or open it, using SSIS but I have not found any reference about it. Is it possible? Is there a provider to connect to Google Drive.
View 3 Replies
ADVERTISEMENT
Jun 18, 2008
Hello All,
I have two columns in MS-SQL, 1st column has Web-Links and 2nd has Dates
Example:
Names
Date
Link1
Date1
Link2
Date2
Link3
Date3
Link4
Date4
Link5
Date5
Link6
Date6
Required Output:
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.example.com/Link1</loc> <lastmod>2005-01-01</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url>
etc.....
</urlset>
Thanks.
- David
View 2 Replies
View Related
Nov 1, 2006
I hope you'll like a tool I've made called Nautilus.
Nautilus (sqlserver) v1.0.1
Google your MS SQLServer database
http://sourceforge.net/projects/nautilus/
Author: Marcos Luis Casamayor (marcos.casamayor@gmail.com)
WHAT
----
Nautilus is a tool for developers, advanced users and auditors.
The main objetive is to find information in a SQLServer database without knowing too much about the database. User can search tables and records with no SQL knowledge required.
You can also browse related data following the foreign key links.
View 7 Replies
View Related
Jul 25, 2007
Hi All,
Has anyone tried writing a db structure that would replicate a google notebook heirarchy?
I'm very interested in learning to do this. My knowledge of MSSQL is poor. I had someone else develop a db in MSSQL for me. I'd like to add a similar functionality for my website to that of google notebooks. I don't need the browser plugins and stuff, only the ability to create new notes and sub notes which can have a few fields. For instance.
A - History
----a1.Name: World War 1
----a2.Name: Germany 1918-1945
----a3.Name: World War 2
------a3i.Name: Causes of World War II
------a3ii.Notes: bla bla bl a
------a3iii.Description: These notes are about the causes of WWII
------a3.SubTopic.a1.Name: Hitler's actions prior to WWII
------a3.SubTopic.a1.Notes: notes notes notes
------a3.SubTopic.a1.Description: desc desc desc
I need to develop a max of two level heirarchy for my website to provide my students a google notebook like functionality. I want to develop it for my school's website. Can someone help?
Navs
View 4 Replies
View Related
Jul 20, 2005
Hi,I was so lost in Google Desktop Search last night, I kept on dreamingabout the endless possiblisties of Google Search Technology.While I was in school I had read enough about DB informationretrivial. Why can't google use their search technology to buildDatabase engine ? Isn't that a possiblity ?Am I still dreaming or am I awake ?Cheers,da_LazyBoy
View 5 Replies
View Related
May 27, 2008
Maintenance plan cleanup task is failing on one of my client servers with the following message:
Method not found: 'System.String Microsoft.SqlServer.Management.DatabaseMaintenance .TaskUIUtils.GetXpDeleteFileFormat(Boolean, Boolean)'.
A google search for "GetXpDeleteFileFormat" returns zero results, as does a search of the MS website.
Any clues?
View 6 Replies
View Related
Jul 15, 2004
Hello,
I have a Full-Text Catalog that is populated by various columns in a few different tables. I have been able to create a stored procedure that will search across all of the different full-text columns and return me the results.
My problem is, if the someone searches for
hello world
then to my understanding I want to use FREETEXTTABLE to return my results (I actually get 0 results if I use CONTAINSTABLE)
If someone searches for
"hello world"
then I want to use CONTAINSTABLE because FREETEXTTABLE returns too many results.
And now the biggest problem would be, if someone searches for
"hello world" program
I would somehow need to use CONTAINSTABLE for the phrase and FREETEXTTABLE for 'program'. The SQL to accomplish something like this would probably be very ugly (if possible at all)
Can anyone give me any suggestions on this matter? I'm trying to create a google like search on a database which contains text and files (as BLOBs).
Thanks in advance
View 5 Replies
View Related
Sep 15, 2015
I am trying to refresh some excel sheet I get with powerquery. After that I load the data in an sql server table to build a dummy DWH for various testing.
My goal is to automate all task and this include also the excel queries. I have seen that exits on codeplex an excel refresh task but it doesn´t work in my enviorment (SSDT 2013) or at least I have been unable to do it.
I have seen too a pragmaticworks component but I have to pay so I have discarded it.
I have tested a code that I have found in this
thread with minor changes like increase the time to refresh the excel file to 60000 and change the line
[System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
and replace for
[Microsoft.SqlServer.Dts.Tasks.ScriptTask.SSISScriptTaskEntryPointAttribute]
I run the script but neither fails nor does anything. It run sucefully without refresh. This is the entire code I run
/*
Microsoft SQL Server Integration Services Script Task
Write scripts using Microsoft Visual C# 2008.
The ScriptMain is the entry point class of the script.
*/
using System;
using System.Data;
using Microsoft.SqlServer.Dts.Runtime;
using System.Windows.Forms;
using Microsoft.Office.Interop.Excel;
namespace ST_53932a75e92c44f086535fc017a56e6a.csproj
{
[Microsoft.SqlServer.Dts.Tasks.ScriptTask.SSISScriptTaskEntryPointAttribute]
[code]....
P.S: I have been playing with the time it needs to refresh and I have found that set the time in 80000 works fine.
View 2 Replies
View Related
Jun 29, 2015
How to split excel workbook into individual sheets using SSIS 2008 without using " Microsoft.Office.Interop.Excel"
The Workbook need to be broken into multiple sheets available in the workbook.
The SSIS package will read the excel workbook and split into individual sheet and rename the sheet with the name available in the workbook..
View 6 Replies
View Related
Dec 11, 2014
I have been strunggling to find solution to convert XLSX files with multiple sheets to csv file.
Requirements
>> Convert XLSX file with multiple sheets to CSV file
>> CSV file names : XLSX filename + '_' + sheet name
>> scirpt has to be in VB as i am using ssis 2005
>> I started develping scirpt using Micorosoft.office.interop.Excel.dll . this dll is referenced to script task.
>> found web link as useful.. [URL] ....
View 4 Replies
View Related
Sep 13, 2015
We have 10 sheets in Excel File and 10 sheet contains errror data. How to load 9 sheets data in to 1 destination and error data in to other destination?
View 4 Replies
View Related
Aug 25, 2015
I have an excel file that has multiple sheets and I need to import data from each separate sheet to a separate table using SSIS.
E.g. Sheet A data should go to Table A and Sheet B data should go to Table B and so on. Is it possible to do this with out using script task.
View 6 Replies
View Related
Sep 22, 2015
I want to connect to an Informix Database via SSIS to read and store data. I did some search online and have downloaded Informix ODBC Drivers. I installed the drivers and am trying to configure a System DSN but have few doubts on what each field indicate. URL... I am not sure on what to enter in fields like IBM Informix Server, Service Name? Connecting to Informix DB via SSIS?
View 4 Replies
View Related
Oct 15, 2015
I am getting 3 sheets in an excel file. But only the sheet1 contains data and the rest are blank. I want to delete Sheet2 and Sheet3 from excel file using SSIS.
View 3 Replies
View Related
Nov 3, 2015
I am trying to connect to a Web page from SSIS and I've tried both http connection manager and a Script Task but none of them seems to be working.
I get the following errors:
Through Script Component: Exception has been thrown by the target of an invocation.
Through http connection manager: The remote server returned an error: (503) Server Unavailable.
Here is one of the VB code I've tried:
Public Sub Main()
Dim MyWebClient As New System.Net.WebClient()
Dim proxyObject As New System.Net.WebProxy("BANANA:8080", True)
MyWebClient.Proxy = proxyObject
[Code] ....
And, here is one of the C# codes I've tried:
public void Main()
{
Variables varCollection = null;
Dts.VariableDispenser.LockForRead("User::RemoteUri");
Dts.VariableDispenser.LockForRead("User::LocalFolder");
Dts.VariableDispenser.GetVariables(ref varCollection);
varCollection.Unlock();
[Code] ...
I could open the same web page mentioned in the code manually in all my browsers (IE, Firefox, Chrome).
I am using SQL Server 2014.
View 18 Replies
View Related
Jul 15, 2015
I've made connections in SSIS to Oracle before by setting up TNS but this latest connection is different.
I've been give an SSL cert that I had to import into the Oracle Wallet Manager and to get connected in 'Oracle SQL Developer' I had to choose connectionType = advanced and drop the following line in the JDBC URL section
jdbc:oracle:oci:@(DESCRIPTION =(ADDRESS = (PROTOCOL = TCPS)(HOST = server.domain.com)(PORT = 2484))(CONNECT_DATA =(SERVICE_NAME = XXXXX)))
So my question is. How can I go about making a connection like this in SSIS?
Just incase it matters, I'm working with OracleClient 11g
View 2 Replies
View Related
Oct 12, 2006
Hello, I'm new at Integration services and I have an excel file with information in several worksheets. I want to loop through some specific sheets to retrieve the data and save it in a database table. I know how to retrieve the data from one sheet, but I don't know how to do it for several sheets. Any ideas?...I would appreciate any help.
View 21 Replies
View Related
Sep 18, 2015
how can I connect SSIS 2005 to Progress database?
View 4 Replies
View Related
May 18, 2015
Error: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) (Microsoft.SqlServer.DTSRuntimeWrap)
Here are the steps I followed:
To configure rights for remote users on Windows Server 2003 or Windows XP
View 10 Replies
View Related
Apr 23, 2015
I have a very simply package using an Excel connection to an XLSX file. It's a straight read of the file and import onto a table.
The package works fine in Visual Studio 2008 development and also runs fine when executing on the (server I copied it to) under Integration Services.
However, under a SQL Agent, the package (32-bit is checked) can not acquire the connection to an excel file. I use UNC pathing to the file. I've read other posts about similar problems and tried various scheduling options (including Owner of job).
I even tried a to trigger it with a command-line which did not work:
"C:Program Files (x86)Microsoft SQL Server100DTSBinnDTEXEC.exe" /sq "our packagesMy_XLSX_File_Import" /SERVER myserver /X86 /CHECKPOINTING OFF /REPORTING E
All errors are: "DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0209302."
View 4 Replies
View Related
Apr 20, 2015
I'm having an issue connecting to an Oracle database using Visual Studio 2013 - Business Intelligence tools.I am running Windows 7 (64-bit), Visual Studio 2013, and have SQL 2012 Enterprise (64-bit) on my local machine. I downloaded the MS Connectors v2.0 for Oracle found here. But when I try to add a new connection either through the connection manager or inserting a Data Flow Task and looking for the Oracle connections in the "Other Sources" or "Other Destinations" - neither option is available.I have the 32-bit Oracle client installed, the tnsnames.ora file has been created and I can connect to the Oracle DB through PL/SQL.I see Microsoft Connector for Oracle by Attunity 2.0 in my Programs list - installed for this file: Attunity SSISOra Adapters SetupX64.msi. don't know what else to try to get the connections available.
View 11 Replies
View Related
Sep 21, 2015
I have an SQL Server 2012 with SSIS installed on Windows Server 2008 R2 Core. I'd like to connect remotley to SSIS but I receive the following error. 'The RPC server is unavailable.'
View 2 Replies
View Related
Sep 21, 2015
The following error occurred when trying to connect to 2012/2014 SSIS Server using SSMS remotely. Local connection works fine.Using the info from below link does not resolve the problem. Permissions are granted through DCOM. If this cannot be resolved, packages will have to stored on filesystem instead.
URL....Connecting to the Integration Services service on the computer "" failed with the following error: "Class not registered".
This error can occur when you try to connect to a SQL Server 2005 Integration Services service from the current version of the SQL Server tools. Instead, add folders to the service configuration file to let the local Integration Services service manage packages on the SQL Server 2005 instance.
View 6 Replies
View Related
Aug 20, 2015
I have an excel file which contains lots of sheets. Some of them are named as DW-<day>-<month> (for e.g; DW-1-July). Like this I have sheets for the whole month. I have other sheets too with a different name. I would like to import data from these sheets only (DW ones). Upon my research I have found that this can be achieved via For Each Loop Container (I guess!).
Post data import, I have a set of T-SQL query that I plan to execute via Execute SQL Task.
View 5 Replies
View Related
Aug 5, 2015
I have one excel sheet contains 50 sub sheets with different names on it. Is it possible can i load all sheets into SQL using SSIS?
View 2 Replies
View Related
Jul 17, 2015
I've one table which is contains sales Tax data and I need to send data(only for past month) to accounting person by every end of the month for Example. Today is July/1/2015 so I need to send data for month of June/2015.
Is there anyway I can setup a job to send a data. Also I am not able to send large file using OUTLOOK so is there any other Tool to send a data?
View 5 Replies
View Related
Mar 9, 2006
I try to import my SSIS packages which are created using the Business Intelligent studio into SQL server 2005 but I cannot do that.
I am running SQL server 2005 enterprise edition.
Also when i tried to connect to Integration services using Object explorer, it only prompt me for server name. I cannot change the username and password which is disabled.
Then how am i supposed to connect to Integration services on a server in this case?
View 4 Replies
View Related
Nov 16, 2006
When i try to connect to SQL 2005 integration services from object explorer i get connected (in the sense it shows in object explorer running packages stored packages ..)but when i try to exand any of these objects i get the following error
--------------------------------------------------------------------------------------------------
Failed to retrieve data for this request(Microsoft.sqlserver.smoEnum)
Additional information
The sql server specified in SSIS service configuration is not present or not available.This might occur when there is no default instance of Sql server on the computer. For more information see "config integeration services" in server 2005 books online.
Login time out expired
An error has occured while establishing a connection to the server.When connecting to the Sql server 2005, the failure may be caused by the fact that under default settings Sqlserver does not allow remote connections.
Names Pipes Provider: could not open a connection to Sql Server[2].(MsDtsSrvr)
----------------------------------------------------------------------------------------------------------
i have chkd remote connection settings and other settings but cant find a way out.
kindly provide some help
Thanks in advance
View 4 Replies
View Related
Jul 3, 2007
Hi All,
i was ask to grant a developer permissions to use integration services.
he can run the ssis packages and it works fine, but he cant open integration services with sql management studio.
if i am adding him to the local administrators group on the server it works, but he is not a system administrator.
how can i connect to the integratin services without been a local administrator on the server ???
View 3 Replies
View Related
Sep 29, 2015
I'm using SQL Srv '12. Have ADW'12 and ADWDW'12 DBs installed.I created a new SSIS project. Two project level OLEDB con mngers (One for each OLEDB DB).Dragged and dropped a new DFT.Inside the DFT, I'm using Source Assistant to connect to the ADW'12 OLEDB source.
View 8 Replies
View Related
Jul 11, 2007
I could not change user while attmepting to connvert Integration Services using Windows Authentication via MSSQL MS
any idea? thanks
View 8 Replies
View Related
Aug 17, 2015
I have two servers (TESTSERVER, PRODSERVER). On the TESTSERVER i have a package that i'm using for data load from a source database on a SOURCESERVER. Everything works great until this point. Now from the PRODSERVER in the SSIS package i'm trying to create a connection in the connection manager to the SOURCESERVER and i'm getting the following error
Test connection failed because of an error in initializing provider. Login timeout expired.A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections.
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53)
View 10 Replies
View Related
Oct 9, 2015
I want to achieve the following in (SSIS/SSDT for SQL 2012) -
I have a generic SSIS package which simply sends out email notifications using SMTP email task (this package is within its own project, and has project level input parameters).
I need to be able to call this package in the Event handler section of every package (numbering in about less than 60) that we have. These packages are within their own respective projects.
I thought I could use the "execute package task", but it turns out , using this, I cannot call a package that is part of some other project. I also cannot call a package that is stored in the CATALOG. Is there any way I can do this ?
When I call the child package , I should be able to send in parameters like - error information and package name of the Parent package.
View 8 Replies
View Related