Quantcast
Channel: SQL Server Integration Services forum
Viewing all 24688 articles
Browse latest View live

Image URL needs to migrate from excel column to SQL Table

$
0
0

Hi All,

I have excel sheet contains columns images having Image and also URL in the link(Open) which is in attached screen shot.

We cant load images in sql table. But I want to load URL Which mouse  pointing to OPEN Link then it shows URL Visible. else no.

Can you please help me out on this different situation

?


problem in deploy a project from visual studio to ssisdb catalog

$
0
0

Hi,

When trying to deploy project to ssisdb catalog, i get the error :

TITLE: SQL Server Integration Services
------------------------------

Failed to deploy project. For more information, query the operation_messages view for the operation identifier '11'. (Microsoft SQL Server, Error: 27203)

when trying to see the data in operation_messages i get no rows at all.

important:

when i create the catalog i get error that saying "cant open the SSISDBBackup.bak" file.

i look at the path and didnt find the bak file so i copied it from another sql server instance.

The same problem was with ISServerExec.exe file. i didnt find it and take it from another computer.

my question is about this files, didnt they supposed to create when i installed ssis? or sql server?

the reason for the error is because i copied them from a different computer?

please help

Cannot create Integration Services Catalog

$
0
0

Hi,

So I have a SSIS package that I want to deploy in SSMS and run as a job. But I am not able to create a catalog. It shows the message - 
"The catalog backup file 'C:\Program Files\Microsoft SQL Server\130\DTS\Binn\SSISDBBackup.bak' could not be accessed. Make sure the database file exists, and the SQL Server service account is able to access it. "

I have the following softwares Sql Server 2017 developer edition with Integration Services, SSMS -v18.3, Visual Studios 2017 for SSDT .

The SSISDBBackup.bak file is present in the path C:\Program Files(x86)\Microsoft SQL Server\140\DTS\Binn\ path but SSMS is looking for it in the path C:\Program Files\Microsoft SQL Server\130\DTS\Binn\.

I have tried reinstalling Sql Server with Integration Services, SSMS and SSDT several times
I have checked that I do have write access in the Binn folder.

Could you please help me by suggesting what I should do to solve this issue.? I am stuck on this issue for 2-3 days and the IT service in my office are also not able to help me anymore.

Thank You!

Excel Destination and resulting Excel file has no cell borders

$
0
0

So we have created our Excel template with column headers AND cell borders. Our OLE DB Source runs like a charm. Our Conversions run like a charm. The Excel Destination runs like a charm. The only problem is that the resulting Excel spreadsheet has no cell borders. It's all white and looks kind of hokie. It's formatted ok so that the data shows up under the column headers correctly...just no borders.

Is there any way we can get the borders in there? Really don't feel like messing with a Macro at this point. If I'm missing something...fine...if not...then it's probably ok as is.

Thanks for your review and am hopeful for a reply.

SQL Destination - Could not retrieve the table information for the connection manager. Object reference not set to an instance of an object

$
0
0

I suddenly get this message for SQL destinations: 

Could not retrieve the table information for the connection manager. Object reference not set to an instance of an object

I am using the latest version of Visual studio and I'm using SQL Server 2016. The connection works fine but I cannot select a destination table anymore. This always worked fine but "suddenly" (maybe after upgrade of VS) it's broken.

Any ideas? I already removed the folders in the profile like mentioned in this topic:https://stackoverflow.com/questions/34084003/visual-studio-error-object-reference-not-set-to-an-instance-of-an-object-after

Error:

SSIS Dynamic Input Parameters

$
0
0

Good day,

I have a simple package that makes use of a stored procedure.  The stored procedure makes use of a start and end date parameter. I would like, when I execute the package, the first thing is an input box(es) to accept these parameters, then pass them onto the proc, and the package executes.

May I kindly get assistance with this. I have so far created a script task to prompt the user for these parameters, but I'm getting stuck somewhere.

Please assist.


Many thanks

Regards

Zimiso


Parsing a date

$
0
0

I have a csv file, there’s a admit date field with datetime as a value and in my output I need just date. How can I achieve that in SSIS using Derived column expression:

Input CSV screenshot

Thanks,

Ali.

SQL 2012 - Connection Manager not listed in Source Assistant

$
0
0

Hi,

Using SQL Srv 2012 - Started a new project, created an ADO.Net connection manager, created a Data Flow task,  in the Data Flow tab created a Source Assistant, when prompted to choose a Connect Manager my existing Connection Manager is not listed.  Why not? 

thanks!

Martin


How to deploy SSIS package using SSDT 2017?

$
0
0

Hi,

I have just completed a SSIS package (my first package). Now I am looking to deploy the package on the production server. So I am looking to convert the package to deployment package and have a configuration file with all the connections managers, parameters and mapped variables with it.

I was looking to do it through an approach but was unable to map all of my variables as, One of my variables is a object and it says can not map an object variable.

Thanks,

Minhal


The connection "" is not found. This error is thrown by Connections collection when the specific connection element is not found

$
0
0

I've got a package which reads a text file into a table and updates another.  I set up configurations so that I could import it into the SSIS store on both my dev and live servers.  Now, I'm getting this error.  I tried removing the configs and am still getting it.

I've been through each step and everything looks okay.  Does anyone have any idea (a) what's wrong, (b) how to localise the error or (c) get any additional information?  Or do I just have to recreate the package from scratch?

 

TITLE: Package Validation Error
------------------------------

Package Validation Error

------------------------------
ADDITIONAL INFORMATION:

Error at PartnerLinkFlatFileImporter: The connection "" is not found. This error is thrown by Connections collection when the specific connection element is not found.

Error at PartnerLinkFlatFileImporter [Log provider "SSIS log provider for SQL Server"]: The connection manager "" is not found. A component failed to find the connection manager in the Connections collection.

 (Microsoft.DataTransformationServices.VsIntegration)

------------------------------
BUTTONS:

OK
------------------------------

Question on setting a TLS 1.2 value within a SSIS package when connecting to Vendor's URL using a Web Service Task

$
0
0

We've been connecting to a vendor, Heartland, using a web service task in SSIS to consume our data and bring it down and insert the data into a SQL server table.

This last Wednesday, they upgraded their environment to only accept TLS 1.2 protocols and gave us no notice.  Unfortunately, we can no longer send a request as our connection is immediately closed.

We've been working to find a solution to help us use a TLS 1.2 value within our SSIS package as we cannot make a change on the SQL Server or OS to use the TLS 1.2 protocol because other apps are using TLS 1.0 and TLS 1.1.  

We're working on SQL Server 2014 and SSIS 2013.  Our understanding is that TLS 1.2 is enabled in these environments by default.  But I'm not finding that to be the case.  When I look at the value of this class:  System.Net.ServicePointManager.SecurityProtocol in my C# script were I try to set a TLS value for the security protocol I see Ssl3 | Tls in the AUTOS window.  And when I change the value of the protocol I see Tls12 value.  Then I execute my web service task and get this error:

[Web Service Task] Error: An error occurred with the following error message: "Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebserviceTaskException: The Web Service threw an error during method execution. The error is: The underlying connection was closed: An unexpected error occurred on a send..
   at Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebMethodInvokerProxy.InvokeMethod(DTSWebMethodInfo methodInfo, String serviceName, Object connection)
   at Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebServiceTaskUtil.Invoke(DTSWebMethodInfo methodInfo, String serviceName, Object connection, VariableDispenser taskVariableDispenser)
   at Microsoft.SqlServer.Dts.Tasks.WebServiceTask.WebServiceTask.executeThread()".

Any suggestions on a work around?  Any help/direction would be appreciated. Thanks.

SSIS and SSAS services are not showing up on SQL Server Configuration Manager

$
0
0

Hello,

I have installed SQL SERVER 2017 Evaluation edition on my Laptop (WIndows 10 Pro) and everything seems working fine, SSMS, Creating new project via Visual Studio 2017 and able to select Integration Services. 

But SSIS and SSAS services are not showing up on Configuration Manager, any insight as what could be the issue? I am on learning phase of MSBI. Any help would be appreciated.





Microsoft.ACE.OLEDB.12.0 is not registered

$
0
0

Dear All

I know this issue has been discussed many times, however I went through many of them and it still does not work. 

I am trying to create package in SSDT to import Excel file (tries xls and xlsx)  however in Connection Manager "No tables or Views could be loaded" and when trying to use SQL Command I can see following error: 

"Exception from HRESULT: 0xC020801C
Error at Package [Connection manager "Excel Connection Manager"]: The requested OLE DB provider Microsoft.ACE.OLEDB.12.0 is not registered. If the 32-bit driver is not installed, run the package in 64-bit mode. Error code: 0x00000000.
An OLE DB record is available.  Source: "Microsoft OLE DB Service Components"  Hresult: 0x80040154  Description: "Class not registered".

Error at Package [Connection manager "Excel Connection Manager"]: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. For more information, see http://go.microsoft.com/fwlink/?LinkId=219816

Error at Data Flow Task [Excel Source [1]]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager 1" failed with error code 0xC0209302.  There may be error messages posted before this with more information on why the AcquireConnection method call failed."

I have installed Microsoft Access Database Engine 2016 32 bit on my local Machine (the same as SSFT tools). 

I was trying to change Run64BitRuntime to False in SSIS project.

I have Office 365 32 bit installed.

Can you please help what can be the issue here? 

The metadata could not be determined because statement 'REVERT...

$
0
0

Greetings. I have a 2016 SSIS Package SQL Server Native Client 11.0 connection. When attempting to have an OLE DB Command use this guy it throws up the following message when clicking on the columns tab"

"The metadata could not be determined because statement 'REVERT        --Check if SSB is enabled in this database' in procedure 'sp_send_dbmail' does not support metadata discovery.".…..

All it's attempting to do is the following:


EXECUTE [msdb].[dbo].[sp_send_dbmail]
    @profile_name = 'CTDynamoAdmin'
    ,@recipients  = 'mylogin@myDomain.com'
    ,@body        = 'This is a test my custom e-mail body.'
    ,@subject     = 'Database Mail Test'

I can run that same block of code from SSMS and the test email arrives. 

Any ideas?


Thanks in advance! ChrisRDBA

Visual Studio 2017 SSIS - ODataSource Connected but Unable to load collection

$
0
0

I created a ODataSource1 connection. The test connection succeeded.

I created OData Source, selectd the ODataSource1, select Collection and got an message in the Collection box "Unable to load collection for the connection ODataSource1, reason: Cannot open this connection". Why connection succeeded but can't open the connection?  Thanks.


SSIS Script Task FireInformation Messages Missing After FireError

$
0
0
I am using a SSIS Script Task and FireInformation messages to log progress.  This works fine if the task succeeds but the messages are missing when the task fails and I issue a FireError message.  This package is running via SQL Agent and executing the package out of the SSISDB.

SSIS Script component not Updating .NET framework after 2012 to 2017 Upgrade

$
0
0

Hi Team,

Currently we upgraded our SSIS packages from  2012 to 2017 version but some of the packages which has script component or script task has failed with below error message.

  Description: CS0234 - The type or namespace name 'SSISScriptComponentEntryPointAttribute' does not exist in the namespace 'Microsoft.SqlServer.Dts.Pipeline' (are you missing an assembly reference?), main.cs, 10, 35”

 “Description: CS0234 - The type or namespace name 'SSISScriptComponentEntryPointAttributeAttribute' does not exist in the namespace 'Microsoft.SqlServer.Dts.Pipeline' (are you missing an assembly reference?), main.cs, 10, 35”

We suspect  that changing the Target framework  to .Net framework to 4.5 inside the script component  would fix the issue but we are unable to change it. When we changed manually, it is still reflecting the existing .NET framework 4 only after SAVE. Could anyone suggest how to change it or  do we need to recreate Script component tasks manually again in the SSIS packages.


Many Thanks

Karthi

External columns vs. output columns?

$
0
0

Can someone please explain the difference between Output and External columns? I can't fathom why "Output"  columns aren't good enough. In other words, what is there a need or value in having two types of "output" columns?

TIA,

 

Barkingdong

 

SSIS The requested OLE DB provider Microsoft.ACE.OLEDB.12.0 is not registered

$
0
0

Hi All,

In my SSIS package am reading data from .xlsx file and loading it into a database table. Am using "Provider=Microsoft.ACE.OLEDB.12.0;Data Source="  +  @[User::FullPath]  + ";Extended Properties=\"Excel 12.0;HDR=YES\";"

as the connection string. It works fine when I run from BIDS but when I put it inside job it fails sayingOLE DB provider Microsoft.ACE.OLEDB.12.0 is not registered . I checked the checkbox Use32 it runtime inside job and in SSIS project property I have madeRun64BitRunTime as False.  Nothing seems to be working out.

Any help is appreciated.

Thanks

SSIS Data Conversion

$
0
0

HI,

I need to load string 20190110 into SQL db as datetime. what will be the best way to load and how to use data conversion using SSIS. or  shall i just load as varchar in staging table in SQL and then convert into datetime using SQL script.

Thanks 

Viewing all 24688 articles
Browse latest View live


Latest Images

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