db + it ops db order 데이터베이스 - 순서(정렬) 컬럼 두는 전략 비교순서 컬럼? 일반적으로는 정렬을 id로 하지만, 특정 컬럼을 둬야 하는 경우가 생깁니다. 가령, 순서 수정이나 순서 변경 기능을 제공하는 백엔드에서 그렇죠. pk를 바꾸려면, 관련 테이블과 로그를 전부 수정해야 하기 때문이에요. 이 때는 순서 컬럼을 어떻게 두면 좋을까요? 방법 소개 stackoverflow를 통해, 존재하는 다양한 방법들을 살폈는데요. 대표적으로 4가지 방법이 있습니다. 1. 소수를 이용한 방법 2. bigint를 사용해서 bit hole을 두는 방법 3. next_id를 저장하는 방법 4. 기본적인 int를 저장하는 방법 비교 1. 소수를 이용한 방법의 경우 소수를 이용해서, 앞에 올 컬럼의 순서보다 0.01 정도씩 높여서 이동시키는 방법 적절하지만, 동작을 보장하지 않습니다. flo.. wono | discuss | tweet + it ops db design MySQL 8.0 Labs: [Recursive] Common Table Expressions in MySQL (CTEs), Part Three - hierarchiesfw_error_www wono | discuss | tweet + it ops db deaver dbeaver documentation Project team workDBeaver User Guide with detailed manuals, tips, and overviews of features and supported databases. Use the table of content to find information shortl wono | discuss | tweet + it ops db dbeaver data-sources How can I export DBeaver connection configurations?I was hoping there is a way to export DBeaver connection configurations/properties from my old machine rather than having to go through the process of recreating each one. Does anyone know how to do wono | discuss | tweet + it ops db dbeaver dbeaver documentation Virtual KeysDBeaver User Guide with detailed manuals, tips, and overviews of features and supported databases. Use the table of content to find information shortl wono | discuss | tweet + it ops db design 관리자 권한, 메뉴 관리 (1)유저, 메뉴 CURD 메뉴 권한 테이블 설계 wono | discuss | tweet + it ops db type MySQL :: MySQL Workbench Manual :: 10.6.4 PostgreSQL Type Mapping wono | discuss | tweet + it ops db naming Bool 변수 이름 제대로 짓기 위한 최소한의 영어 문법 · Soojin Ro wono | discuss | tweet + it ops db postgresql uuidv7 Postgres PL/pgSQL function for UUID v7 and a bonus custom UUID v8 to support microsecond precision as well. Read more here: https://datatracker.ietf.org/doc/rfc9562/Postgres PL/pgSQL function for UUID v7 and a bonus custom UUID v8 to support microsecond precision as well. Read more here: https://datatracker.ietf.org/doc/rfc9562/ - A_UUID_v7_for_Postgres.sql wono | discuss | tweet + it ops db mysql reservedwords MySQL :: MySQL 8.4 Reference Manual :: 11.3 Keywords and Reserved Words wono | discuss | tweet + it ops db postgresql PostgreSQL Rename Database: A Quick GuideIn this tutorial, you will learn step by step how to rename a PostgreSQL database by using the ALTER TABLE RENAME TO statement. wono | discuss | tweet + it ops db postgresql sample dvdrental 처음 사용자를 위한 PostgreSQL 사용 샘플 - 5. 데이터 업로드"처음 사용자를 위한 PostgreSQL 사용 샘플"이라는 제목의 시리즈로, 저처럼 PostgreSQL을 처음 접하는 사용자를 위한 기본적인 개념, 사용 샘플을 설명드립니다. 이전글 [Database/PostgreSQL] - 처음 사용자를 위한 PostgreSQL 사용 샘플 - 4. pgAdmin 설치 & DB 접속 아래 자료를 참조했습니다. PostgreSQL Domcumentation The Internals of PostgreSQL PostgreSQL Tutorial PSQL을 통한 데이터 로딩 이번에는 PSQL 유틸리티를 통해 데이터베이스를 만들고, 샘플 스키마를 생성하고 데이터를 로딩해 보겠습니다. PostgreSQL Tutorial 사이트에서 제공하는 샘플 스키마를 활용합니다. 먼저 아래 링크.. wono | discuss | tweet + it ops db table Database Naming StandardsIntroduction Database naming conventions, despite SQL having been around for decades, are... Tagged with database, sql, techtalks. wono | discuss | tweet + it ops db saas SaaS 서비스의 기초: 멀티테넌트 톺아보기효율적인 SaaS 서비스 개발을 위한 멀티테넌트 아키텍처의 핵심 개념부터 4가지 구현 전략, 실제 적용 사례까지 한번에 알아보는 실무 가이드 wono | discuss | tweet + it ops db saas 다중 테넌트 SaaS 패턴 - Azure SQL DatabaseAzure 클라우드 환경에서 실행되는 다중 테넌트 SaaS(Software-as-a-Service) 데이터베이스 애플리케이션의 요구 사항 및 일반적인 데이터 아키텍처 패턴에 대해 알아봅니다. wono | discuss | tweet + it ops db uuid MySQL에서 UUID를 PK로 사용시 발생가능한 문제와 대안들어가기 앞서 wono | discuss | tweet + it dev ops db uuid UUID Benchmark WarThis month’s PGSQL Phriday #015 topic is about UUIDs, hosted by Lætitia Avrot. Lætitia has called for a debate. No, no, no. I say let’s have an all-out war. A benchmark war. I have deci… wono | discuss | tweet + it ops db postgresql uuidv7 GitHub - dverite/postgres-uuidv7-sql: Pure SQL functions to use UUIDs v7 in PostgreSQLPure SQL functions to use UUIDs v7 in PostgreSQL. Contribute to dverite/postgres-uuidv7-sql development by creating an account on GitHub. wono | discuss | tweet + it ops db postgresql uuidv7 This entry relates to a PostgreSQL feature which is part of PostgreSQL 18, due to be released in late 2025. wono | discuss | tweet + it ops db erd 05. 데이터 모델링 도구* 데이터 모델링 도구는 데이터베이스 설계자와 개발자가 데이터베이스의 구조를 시각적으로 설계하고, 관리할 수 있도록 지원하는 소프트웨어이다. 이러한 도구는 엔티티, 속성, 관계 … wono | discuss | tweetNext
+ it ops db order 데이터베이스 - 순서(정렬) 컬럼 두는 전략 비교순서 컬럼? 일반적으로는 정렬을 id로 하지만, 특정 컬럼을 둬야 하는 경우가 생깁니다. 가령, 순서 수정이나 순서 변경 기능을 제공하는 백엔드에서 그렇죠. pk를 바꾸려면, 관련 테이블과 로그를 전부 수정해야 하기 때문이에요. 이 때는 순서 컬럼을 어떻게 두면 좋을까요? 방법 소개 stackoverflow를 통해, 존재하는 다양한 방법들을 살폈는데요. 대표적으로 4가지 방법이 있습니다. 1. 소수를 이용한 방법 2. bigint를 사용해서 bit hole을 두는 방법 3. next_id를 저장하는 방법 4. 기본적인 int를 저장하는 방법 비교 1. 소수를 이용한 방법의 경우 소수를 이용해서, 앞에 올 컬럼의 순서보다 0.01 정도씩 높여서 이동시키는 방법 적절하지만, 동작을 보장하지 않습니다. flo.. wono | discuss | tweet
+ it ops db design MySQL 8.0 Labs: [Recursive] Common Table Expressions in MySQL (CTEs), Part Three - hierarchiesfw_error_www wono | discuss | tweet
+ it ops db deaver dbeaver documentation Project team workDBeaver User Guide with detailed manuals, tips, and overviews of features and supported databases. Use the table of content to find information shortl wono | discuss | tweet
+ it ops db dbeaver data-sources How can I export DBeaver connection configurations?I was hoping there is a way to export DBeaver connection configurations/properties from my old machine rather than having to go through the process of recreating each one. Does anyone know how to do wono | discuss | tweet
+ it ops db dbeaver dbeaver documentation Virtual KeysDBeaver User Guide with detailed manuals, tips, and overviews of features and supported databases. Use the table of content to find information shortl wono | discuss | tweet
+ it ops db type MySQL :: MySQL Workbench Manual :: 10.6.4 PostgreSQL Type Mapping wono | discuss | tweet
+ it ops db postgresql uuidv7 Postgres PL/pgSQL function for UUID v7 and a bonus custom UUID v8 to support microsecond precision as well. Read more here: https://datatracker.ietf.org/doc/rfc9562/Postgres PL/pgSQL function for UUID v7 and a bonus custom UUID v8 to support microsecond precision as well. Read more here: https://datatracker.ietf.org/doc/rfc9562/ - A_UUID_v7_for_Postgres.sql wono | discuss | tweet
+ it ops db mysql reservedwords MySQL :: MySQL 8.4 Reference Manual :: 11.3 Keywords and Reserved Words wono | discuss | tweet
+ it ops db postgresql PostgreSQL Rename Database: A Quick GuideIn this tutorial, you will learn step by step how to rename a PostgreSQL database by using the ALTER TABLE RENAME TO statement. wono | discuss | tweet
+ it ops db postgresql sample dvdrental 처음 사용자를 위한 PostgreSQL 사용 샘플 - 5. 데이터 업로드"처음 사용자를 위한 PostgreSQL 사용 샘플"이라는 제목의 시리즈로, 저처럼 PostgreSQL을 처음 접하는 사용자를 위한 기본적인 개념, 사용 샘플을 설명드립니다. 이전글 [Database/PostgreSQL] - 처음 사용자를 위한 PostgreSQL 사용 샘플 - 4. pgAdmin 설치 & DB 접속 아래 자료를 참조했습니다. PostgreSQL Domcumentation The Internals of PostgreSQL PostgreSQL Tutorial PSQL을 통한 데이터 로딩 이번에는 PSQL 유틸리티를 통해 데이터베이스를 만들고, 샘플 스키마를 생성하고 데이터를 로딩해 보겠습니다. PostgreSQL Tutorial 사이트에서 제공하는 샘플 스키마를 활용합니다. 먼저 아래 링크.. wono | discuss | tweet
+ it ops db table Database Naming StandardsIntroduction Database naming conventions, despite SQL having been around for decades, are... Tagged with database, sql, techtalks. wono | discuss | tweet
+ it ops db saas SaaS 서비스의 기초: 멀티테넌트 톺아보기효율적인 SaaS 서비스 개발을 위한 멀티테넌트 아키텍처의 핵심 개념부터 4가지 구현 전략, 실제 적용 사례까지 한번에 알아보는 실무 가이드 wono | discuss | tweet
+ it ops db saas 다중 테넌트 SaaS 패턴 - Azure SQL DatabaseAzure 클라우드 환경에서 실행되는 다중 테넌트 SaaS(Software-as-a-Service) 데이터베이스 애플리케이션의 요구 사항 및 일반적인 데이터 아키텍처 패턴에 대해 알아봅니다. wono | discuss | tweet
+ it dev ops db uuid UUID Benchmark WarThis month’s PGSQL Phriday #015 topic is about UUIDs, hosted by Lætitia Avrot. Lætitia has called for a debate. No, no, no. I say let’s have an all-out war. A benchmark war. I have deci… wono | discuss | tweet
+ it ops db postgresql uuidv7 GitHub - dverite/postgres-uuidv7-sql: Pure SQL functions to use UUIDs v7 in PostgreSQLPure SQL functions to use UUIDs v7 in PostgreSQL. Contribute to dverite/postgres-uuidv7-sql development by creating an account on GitHub. wono | discuss | tweet
+ it ops db postgresql uuidv7 This entry relates to a PostgreSQL feature which is part of PostgreSQL 18, due to be released in late 2025. wono | discuss | tweet
+ it ops db erd 05. 데이터 모델링 도구* 데이터 모델링 도구는 데이터베이스 설계자와 개발자가 데이터베이스의 구조를 시각적으로 설계하고, 관리할 수 있도록 지원하는 소프트웨어이다. 이러한 도구는 엔티티, 속성, 관계 … wono | discuss | tweet