filmov
tv
Use of stored procedure (with input Parameter) from OLE DB Source to load the Data in SSIS | Part 12
![preview_player](https://i.ytimg.com/vi/pDD0XHjzMlU/sddefault.jpg)
Показать описание
Use of stored procedure (with input Parameter) from OLE DB Source to load the Data in SSIS:
Requirement:
1) SQL Server Data Tools for Visual Studio 2015
or
SQL Server Data Tools or Visual Studio 2019
Steps need to follow:
1) Add data flow task in designer and double click on it.
2) Add data source OLEDB and destination OLEDB and configure it both with connection string.
3) And run the projects.
CREATE TABLE [tbl_emp_detail](
[empid] [int] NULL,
[emp_name] [nvarchar](255) NULL,
[emp_location] [nvarchar](255) NULL,
[salary] [float] NULL
) ON [PRIMARY]
select * from tbl_emp_detail
create procedure sp_getemp
@emp_name nvarchar(100) ,
@emp_location nvarchar(100)
as
After configure the both data source with ole db stored procedure and destination with connection string and table for which data will transferred. And run the application data will transferred successfully.
Requirement:
1) SQL Server Data Tools for Visual Studio 2015
or
SQL Server Data Tools or Visual Studio 2019
Steps need to follow:
1) Add data flow task in designer and double click on it.
2) Add data source OLEDB and destination OLEDB and configure it both with connection string.
3) And run the projects.
CREATE TABLE [tbl_emp_detail](
[empid] [int] NULL,
[emp_name] [nvarchar](255) NULL,
[emp_location] [nvarchar](255) NULL,
[salary] [float] NULL
) ON [PRIMARY]
select * from tbl_emp_detail
create procedure sp_getemp
@emp_name nvarchar(100) ,
@emp_location nvarchar(100)
as
After configure the both data source with ole db stored procedure and destination with connection string and table for which data will transferred. And run the application data will transferred successfully.
Advanced SQL Tutorial | Stored Procedures + Use Cases
SQL Stored Procedures - What They Are, Best Practices, Security, and More...
Stored Procedures in MySQL | Advanced MySQL Series
MySQL: STORED PROCEDURES
Stored Procedures are Better than Raw SQL
SQL Stored Procedures, Functions, and Views
Stored Procedures vs functions - practical demo #shorts #sql #sqlqueries #coding #sqlinterview
3 advantages of using stored procedure in sql server
Oracle Database Environment and General Concepts - Mauro Pagnez - Gigatalk
Why do we need Stored Procedures? | Essential SQL
Stored procedures in sql server Part 18
Why Stored Procedures are Important in SQL? #sql #datascience #dataanalytics
Procedure Tutorial in SQL | SQL Stored Procedure | Procedure in SQL
Tutorial 9- MYSQL Stored Procedures -MySQL Complete Playlist
What is the difference between Stored Procedure and Functions ?
Advanced SQL Tutorial: Stored Procedures + Use Cases
SQL Server Stored Procedure - How To
How Stored Procedures make databases FAST
SQL Stored Procedures | CREATE PROCEDURE Statement| SQL Server Tutorial for Beginners
What is the difference between stored procedures and functions #shorts #coding #sql #sqlqueries
Using stored procedure in entity framework core
Stored Procedures with Entity Framework Core in .NET 6 🚀
Event-driven workflows through the SQL stored procedure sp_invoke_external_rest_endpoint.
How to call SQL functions inside stored procedures #sql #sqlqueries #sqlinterview #shorts #coding
Комментарии