Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

BIG D how to shit!

SQL SERVER SETUP


1st Step:
Run as Admin SQL server 2019, connect Database Engine (LAPTOP-M3FB7ROT\
MSSQLSERVER1)
2nd Step:
Connect again but choose Integration Services in the server type (LAPTOP-M3FB7ROT), now
you can access this in the visual studio.

VISUAL STUDIO SETUP


1st Step:
Click Create New Project, and in the search bar type “Integration Services.”
2nd Step:
When adding Execute SQL Task, Add a connection, which is the:

3rd step:
How to add table

4th step:
How to add values, remember that you need to satisfy the conditions in the parameters, and it
needs to be in order of what you called that is separated by a comma.

5th step:
How to delete and update
DELETER FROM (TABLE NAME)

UPDATE (TABLE NAME), always SET first and then find the row in the WHERE.

BULKING BINUKING ar ar
1st step:
Add Bulk Insert Task

2nd step:
Connection: Laptop Name and ServerName DLSU
DestinationTable: In database, this is the Tables where you want to put data
ColumnDelimiter: Comma(,) always, cause’ the .csv file is separated by a comma
File: In file, find the converted file of EXCEL to CSV to NOTEPAD.

3rd Step:
And, in the Options part of Bulk Insert Task
Always, do apply FirstRow to 2, because it will cause an error if you start with 1, cause’ Row 1
includes the column names.

DESIGNING DATA FLOW

In creating Table leading to other table creation, is always Completion.


Completion means, even if the execution fails, it will always proceed.

In insertion of data, it needs to be always Success.


Success means, the flow will only proceed if the execution of task is successful (check mark)

Failure means, it fails to run.

You might also like