반응형

DB

서비스 운영 중 DB 데이터 중 제공되는 값들에 특수문자가 있는지, 어떤 것들이 있는지 조사가 필요하였다. DB 테이블 전부를 수작업으로 찾기 힘들어서 아래와 같은 쿼리를 만들어 특수문자를 파악함. select STRING_AGG(str, ', ')from ( select distinct regexp_split_to_table(REGEXP_REPLACE([your_colume_name], '[가-힣a-zA-Z0-9[:space:]]', '', 'g'), '') str from [your_table_name] where [your_colume_name] ~ '[^가-핳a-zA-Z0-9[:space:]]') A;  아래처럼 콤마로 구분해서 조회 가능.  끝. Thank you!
· DB/dynamoDB
Error SpringBoot에서 DynamoDB Local 사용하여 실행 시 아래와 같은 에러 발생 Caused by: software.amazon.awssdk.core.exception.SdkClientException: Unable to load region from any of the providers in the chain software.amazon.awssdk.regions.providers.DefaultAwsRegionProviderChain@68a97fc1: [software.amazon.awssdk.regions.providers.SystemSettingsRegionProvider@36f80ceb: Unable to load region from system settings. Regio..
· DB/mongoDB
Error MongoDB를 연결하면 아래 메시지가 뜨면서 연결이 되지 않음 MongoDB shell version: 2.6.1 connecting to: localhost:27017/admin Welcome to the MongoDB shell! The current date/time is: Thu May 29 2014 17:47:16 GMT-0400 (EDT) Error while trying to show server startup warnings: not authorized on admin to execute command { getLog: "startupWarnings" } Solution 관리자를 추가할 때 역할을 루트로 설정하면 정상동작함. use admin db.createUser( { us..
반응형
MOMOBOB
'DB' 카테고리의 글 목록