상세 컨텐츠

본문 제목

[RPA] DB Connection

IT/RPA(UiPath)

by Adonis_ 2019. 12. 26. 16:51

본문

설치파일

1. MS SQL Server

  step1. MS SQL Server 다운로드

   https://www.microsoft.com/en-us/sql-server/sql-server-downloads

 

SQL Server Downloads | Microsoft

Get started with Microsoft SQL Server downloads. Choose a SQL Server trial, edition, tool, or connector that best meets your data and workload needs.

www.microsoft.com

    step2. Developer 버전 다운로드

            - 설치유형 : 기본(B)

            - 인스턴스 이름 : Server=localhost; Database=master; Trusted_Connection=True;

2. MS SQL Server Management Studio

  step1. MS SQL Server Management Studio다운로드
  Prerequisites > SQL Server Management Studio

  https://docs.microsoft.com/en-us/sql/samples/adventureworks-install-configure?view=sql-server-2017

 

Install and configure AdventureWorks sample database - SQL Server

AdventureWorks installation and configuration In this article --> APPLIES TO: SQL Server Azure SQL Database Azure Synapse Analytics (SQL DW) Parallel Data Warehouse AdventureWorks download links and installation instructions. Prerequisites OLTP downloads D

docs.microsoft.com

  step2. Download SSMS

3. UiPath Studio Package 설치

   - UiPath.Database.Activities 설치

 

 

테스트

1. MS Management Studio 실행

- 실행 경로 : Microsoft SQL Server Tools 18 > Microsoft SQL Server Management Studio 18

- SQL Server : Windows 인증 혹은 SQL Server로 접속 시 접속하고자 하는 계정 정보를 입력

 

2. 테스트 대상 테이블 호출(UiPath 실행결과 확인 목적)

- 파일 > 새로 만들기 > 현재 연결로 쿼리(Ctrl + N)

- 테이블 조회(F5)

   예) select * from msdb.dbo.syscategories order by category_id asc;

 

2. UiPath 호출

[Connect Activity]

  • ConnectionString : "Data Source=localhost;Initial Catalog=msdb;Integrated Security=True"
  • ProviderName : "System.Data.SqlClient"
  • DatabaseConnection : dbConnection
  • (dbConnection Type : UiPath.Database.DatabaseConnection)

 

Connect Activity

 

[Execute Query Activity]

  • Existing Connection : dbConnection
  • Sql : 예) select * from [msdb].[dbo].[syscategories] order by category_id asc

※ Parameter 사용법

예) category_id13이상인 값만 호출

Parameter 설정

관련글 더보기

댓글 영역