반응형

분류 전체보기 580

Power Apps를 이용해 Upload Template 설정하기

Power Apps를 이용해 Azure Blob Storage를 연결했다. 이제 Power Apps 에서 파일 업로드를 해본다. 근데 컴포넌트에서 아무리 찾아도 file upload 를 못찾겟다.... 그래서 아래와 같은 방법으로 진행했다. Reference Power Apps File Upload Power Apps File Upload Das ist die englische Version des Artikels. Die deutsche Version findet ihr hier: In this article I summarize my experiences and network research on the subject of file uploads in Power Apps Canvas… stefanri..

Azure 2022.09.29

Power Apps를 이용해 Azure Blob Storage 에 연결하기

1. Add Azure Blob Storage connection 사용할 Azure Blob Storage 를 연결하는 작업 [데이터] → [검색] → [Azure Blob Storage] 2. Azure Blob Storage 리스트 가져오기 2.1. 세로 갤러리 생성 (예시) 2.2. Blob Storage 연결 [속성] → [데이터 원본] 2.3. Container 연결 2.4. 레이아웃 설정 보여줄 레이아웃을 선택 Container 가져오기 datasheet.ListRootFolderV2().value Container 하위 Directory 가져오기 datasheet.ListFolderV2(container_name.Selected.Id).value Directory 하위 파일 가져오기 data..

Azure 2022.09.29

Apps Script로 JDBC를 이용해 Oracle 데이터 가져오기

Apps Script에서 JDBC를 이용해 Oracle 에 접근해 데이터를 가져와 본다. jdbc만 변경하면 mysql, mssql 등도 접근이 가능하다.` // Replace the variables in this block with real values. const address = 'ip'; const port = 'port'; const user = 'user'; const userPwd = 'password'; const db = 'db'; // Read up to 1000 rows of data from the table and log them. function readFromTable() { const dbUrl = `jdbc:oracle:thin:@${address}:${port}:${db..

GCP/Apps Script 2022.09.19

Apps Script로 간단한 웹페이지 배포하기

Apps Script로 간단한 웹페이지를 생성 할 수 있다. 이 웹페이지에서 Bigquery, Database, Google sheets로 데이터를 입력(입력)할 수 있다. Simple Trigger인 doGet()를 이용한다. function doGet(e) { return HtmlService.createTemplateFromFile("form").evaluate() .setTitle("WebApp Form Toggle-Show-Hide Password") .addMetaTag('viewport', 'width=device-width, initial-scale=1') .setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL); } 위 코드는 별도의 ..

GCP/Apps Script 2022.09.19

Columnstore multi combined install and addmodule (2017)

OS : Centos 6.8 CS : Columnstore 1.1.2 server1 : 192.168.0.195 server2 : 192.168.0.197 server3 : 192.168.0.199 ++ 추가 : binary 도 addmodule 가능 Installing and Configuring a Multi Server ColumnStore System - 1.1.X How to install ColumnStore on a multi-server system mariadb.com 내가 난독인지 모르겠지만 너무 모르겠더라... 멀티인스톨 / combined 설치 를 위해 여러가지 테스트를 진행. binary는 install 시 user와 group명이 같지 않으면 진행이 불가능하다고 판단. rpm버전..

Study 2022.09.19

MariaDB Galera Cluster 구성 (2017)

os = centos7 db = mariadb10 # mariadb binary install 기준 # centos(7)에서 기본으로 설치된 mariadb 5.ver rpm 확인 후 삭제 [root@localhost ~]# rpm -qa | grep ariad mariadb-libs-5.5.44-2.el7.centos.x86_64 [root@localhost ~]# rpm -e mariadb-libs --nodeps # download 받은 rpm 압출 풀고 아래의 5개 파일들 yum으로 설치 MariaDB-10.1.18-centos7-x86_64-client.rpm MariaDB-10.1.18-centos7-x86_64-common.rpm MariaDB-10.1.18-centos7-x86_64-comp..

Study 2022.09.19
반응형