並び順

ブックマーク数

期間指定

  • から
  • まで

121 - 160 件 / 2168件

新着順 人気順

Databaseの検索結果121 - 160 件 / 2168件

  • XTDB - the open database with temporal graph queries

    Immutable Records XTDB contains a perfect, immutable record of every fact your system has ever known. See the entire history of your business, everywhere. Learn More Temporal Query Immutable records are incomplete without time-traveling queries. XTDB allows you to query the entire timeline. Make retroactive corrections, simplify data migrations, and get clarity on out-of-order events. Learn More R

      XTDB - the open database with temporal graph queries
    • GitHub Advisory Database

      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

        GitHub Advisory Database
      • Oracle SQL実行計画の読み方 | コーソルDatabaseエンジニアのBlog

        渡部です。SQLチューニングの基本は、実行計画への理解です。 過去のdb tech showcase発表のスライドがよくまとまっている(自画自賛!)ため、これを用いて実行計画の読みかたを説明したいと思います。 db tech showcase 2017「Oracle入門セミナー 実行計画を読んでみよう!」 2017年9月のdb tech showcase 2017の発表を下敷きにして、実行計画の読みかたを説明します。 db tech showcase 2017「Oracle入門セミナー 実行計画を読んでみよう!」 https://cosol.jp/techdb/2017/09/dbts2017-oracle-read-execution-plan-html/ SQLチューニングの省力化・自動化にはToadのSQL Optimizer for Oracle, SQL Optimizer fo

        • GitHub - chroma-core/chroma: the AI-native open-source embedding database

          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

            GitHub - chroma-core/chroma: the AI-native open-source embedding database
          • GitHub - rowyio/rowy: Low-code backend platform. Manage database on spreadsheet-like UI and build cloud functions workflows in JS/TS, all in your browser.

            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              GitHub - rowyio/rowy: Low-code backend platform. Manage database on spreadsheet-like UI and build cloud functions workflows in JS/TS, all in your browser.
            • Cloud Native開発者のためのDatabase with Kubernetes

              12/8のJuly Tech Festa 2019での登壇資料です。

                Cloud Native開発者のためのDatabase with Kubernetes
              • pg_analytics: Transforming Postgres into a Fast OLAP Database - ParadeDB

                pg_analytics: Transforming Postgres into a Fast OLAP Database

                  pg_analytics: Transforming Postgres into a Fast OLAP Database - ParadeDB
                • Database Remote-Copy Tool For SQLite

                  1. Overview The following command causes REPLICA to become a copy of ORIGIN: Use the --help or -? flag to see the complete list of options. Option flags may appear before, after, or between the ORIGIN and REPLICA arguments. Add the -v option to see more output, in a format similar to "rsync". 2. Features One or the other of ORIGIN or REPLICA may be of the form "USER@HOST:PATH". The other is just a

                  • Azure Database for PostgreSQLでCDCを試してみる - kaz29

                    最近開発しているサービスがだんだん成長してきて、先々を考えるといくつかのサービスに分離したいなーと思いChange Data Capture (CDC)について色々と調べていました。 MySQLでの構築については、この記事DebeziumでCDCを構築してみたがとても丁寧に解説されているのでお薦めです。この記事の解説を参考にしてMySQL+Kafka+Debeziumで動作してお試しできる環境ができたので、色々と挙動を確認できました。 PostgreSQLでCDC MySQLでの実験環境は簡単に構築できたのですが、今回導入を検討しているサービスではPostgreSQLを使用しています。 ということで、まずは手元でPostgreSQL + Kafka + DebeziumでCDC環境を構築してみます。 Kafkaの構築 こちらは前出のブログの記載とほぼ同じで、Docker hubにある公式イ

                      Azure Database for PostgreSQLでCDCを試してみる - kaz29
                    • Tracking SQLite Database Changes in Git | Garrit's Notes

                      Note: This post stirred up some interesting discussions on HackerNews and Lobste.rs. SQLite stores data in binary. If you run cat mydb.sqlite, you'll see a bunch of gibberish that doesn't resemble structured data at all. If you want to track changes and updates to a database using Git, you won't be able to see full diffs by default. You'll see that the file has changed, but not what changed exactl

                      • wddbfs – Mount a sqlite database as a filesystem

                        17 Feb 2024 | Categories: hacks Often when I’m prototyping a project, I hesitate to use a sqlite database despite their many adavantages. It seems much easier to just dump a bunch of files in a directory and to rely on the universal support for the filesystem API to read/delete/update records. Part of this is avoiding the overhead of figuring out a relational schema, but an equal amount of frictio

                        • Qdrant - Vector Database

                          High-Performance Vector Search at ScalePowering the next generation of AI applications with advanced, open-source vector similarity search technology.

                            Qdrant - Vector Database
                          • AWS Aurora MySQL v5.6 から v5.7 へのアップグレードをちょっとだけ考えてみた - mita2 database life

                            Aurora MySQL v5.6 のサポート期限がいつかわからない 現在、Auroraでは、MySQL v5.6 (Engine 1.x) とv5.7互換 (Engine 2.x) のデータベースが利用できます。 Oracleが開発しているオリジナルのMySQL v5.6(以降 Vanilla MySQLと記載) は、2021/02 にサポートが切れます。 Aurora MySQL は Amazonが独自に開発している互換DBです。Vanilla MySQLのサポート期限はAuroraには関係ないのですが、互換DBであることを踏まえると、 「同じようなタイミングでサポート切れになる可能性もあるのでは・・・」と心配になってしまいます。 例えば、RHEL6互換のAmazon LinuxはRHEL6のサポート期限(2020/11末)と近しいタイミングでサポートが終了になっているようです。 aw

                              AWS Aurora MySQL v5.6 から v5.7 へのアップグレードをちょっとだけ考えてみた - mita2 database life
                            • Writing a document database from scratch in Go: Lucene-like filters and indexes | notes.eatonphil.com

                              Writing a document database from scratch in Go: Lucene-like filters and indexes In this post we'll write a rudimentary document database from scratch in Go. In less than 500 lines of code we'll be able to support the following interactions, inspired by Elasticsearch: $ curl -X POST -H 'Content-Type: application/json' -d '{"name": "Kevin", "age": "45"}' http://localhost:8080/docs {"body":{"id":"5ac

                              • [論文紹介] TiDB:a Raft-based HTAP database

                                今回はTiDB(PingCAP) 久しぶりに論文紹介シリーズの第2弾である。 今回は分散DBのど真ん中、PingCAPが開発しているTiDBについての論文「TiDB:a Raft-based HTAP database」(VLDB2020)を紹介する。 この論文に関しては、PingCAP社が自身のブログでも解説している。 TiDBとは 念のため、TiDBとは何なのかを触れておこう。 一言でいうと、「MySQL互換のNewSQL(=分散SQLデータベース)」である。 NewSQLとは何かについての説明は今回記事では省略するが、過去に書いたこちらの入門編やこちらの詳解編に解説をしている。 TiDBはMySQLと互換性を持つだけでなく、、今回の論文に示されているように、OLAP用途の機能強化を行っており、これもまたMySQLの弱点を補強する良い方向性と言える。この辺りのNewSQLの機能強化につ

                                  [論文紹介] TiDB:a Raft-based HTAP database
                                • [速報]オラクルとAWSが戦略的提携で「Oracle Database@AWS」の提供を発表

                                  オラクルとAmazon Web Services(AWS)は戦略的提携を発表し、AWS上で「Oracle Autonomous Database」と「Oracle Exadata Database Service」が利用可能となる新サービス「Oracle Database@AWS」の提供を発表しました(AWSによる発表)。 「Oracle Database@AWS」は、AWS内の専用インフラ上で稼働するOracle Autonomous DatabaseおよびOracle Exadata Database Serviceをマネージドサービスとして提供する新サービスです。 顧客はAWS上からこのサービスに接続でき、Oracle Cloudで提供されているのと同じ機能や性能、可用性、セキュリティなどを備えた、オラクル純正といえるデータベースサービスを利用できます。 Oracle Databas

                                    [速報]オラクルとAWSが戦略的提携で「Oracle Database@AWS」の提供を発表
                                  • GitHub - langflow-ai/langflow: Langflow is a low-code app builder for RAG and multi-agent AI applications. It’s Python-based and agnostic to any model, API, or database.

                                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                      GitHub - langflow-ai/langflow: Langflow is a low-code app builder for RAG and multi-agent AI applications. It’s Python-based and agnostic to any model, API, or database.
                                    • GitHub - syamdanda/jsonbase: A database software completely built as JSON files in backend. A powerful, portable and simple database works on top of JSON files. It is like a database software, currently having basic CRUD operation features. You can use th

                                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                        GitHub - syamdanda/jsonbase: A database software completely built as JSON files in backend. A powerful, portable and simple database works on top of JSON files. It is like a database software, currently having basic CRUD operation features. You can use th
                                      • GitHub - myscale/MyScaleDB: An open-source, high-performance SQL vector database built on ClickHouse.

                                        MyScaleDB is the SQL vector database that enables developers to build production-ready and scalable AI applications using familiar SQL. It is built on top of ClickHouse and optimized for AI applications and solutions, allowing developers to effectively manage and process massive volumes of data. Key benefits of using MyScaleDB include: Fully SQL-Compatible Fast, powerful, and efficient vector sear

                                          GitHub - myscale/MyScaleDB: An open-source, high-performance SQL vector database built on ClickHouse.
                                        • Building D1: a Global Database

                                          This post is also available in Deutsch, Español, Français, 繁體中文, 简体中文, 日本語 and 한국어. Developers who build Worker applications focus on what they're creating, not the infrastructure required, and benefit from the global reach of Cloudflare's network. Many applications require persistent data, from personal projects to business-critical workloads. Workers offer various database and storage options ta

                                            Building D1: a Global Database
                                          • Introducing Relational Database Connectors

                                            At Cloudflare, we’re building the best compute platform in the world. We want to make it easy, seamless, and obvious to build your applications with us. But simply making the best compute platform is not enough — at the heart of your applications are the data they interact with. Cloudflare has multiple data storage solutions available today: Workers KV, R2, and Durable Objects. All three follow Cl

                                              Introducing Relational Database Connectors
                                            • Git's database internals II: commit history queries

                                              Avoiding the expensive commit parsing results in a nice constant factor speedup (about 6x in these examples), but we need something more to get even better performance out of certain queries. Reachability indexes One of the most important questions we ask about commits is “can commit A reach commit B?” If we can answer that question quickly, then commands such as git tag --contains and git branch

                                                Git's database internals II: commit history queries
                                              • Using localStorage in Modern Applications - A Comprehensive Guide | RxDB - JavaScript Database

                                                Using localStorage in Modern Applications: A Comprehensive Guide When it comes to client-side storage in web applications, the localStorage API stands out as a simple and widely supported solution. It allows developers to store key-value pairs directly in a user's browser. In this article, we will explore the various aspects of the localStorage API, its advantages, limitations, and alternative sto

                                                  Using localStorage in Modern Applications - A Comprehensive Guide | RxDB - JavaScript Database
                                                • Recent database technology that should be on your radar (part 1)

                                                  Recent database technology that should be on your radar (part 1) Luc Perkins Monday, June 15, 2020 I’m a huge fan of databases, so much so that I’ve written a book on so-called “NoSQL” databases, I spent some of my most fruitful years in tech working on the highly influential distributed database Riak, and I even built a database called Purple last year just for fun. Naturally, I’m always on the l

                                                  • GitHub - octoproject/octo-cli: CLI tool to expose data from any database as a serverless web service.

                                                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                      GitHub - octoproject/octo-cli: CLI tool to expose data from any database as a serverless web service.
                                                    • Amazon Aurora Global Databaseをリージョン間でフェイルオーバーさせてみた | DevelopersIO

                                                      Amazon Aurora Global Database はAmazon Aurora クラスターを複数の AWS リージョンにまたがって構築でき AWSリージョン障害時の災害復旧(DR;Disaster Recovery) 世界中からデータベースを高速に読み書き(データのローカリティ) などを実現できます。 今回は、大阪リージョンフルオープン記念として、東京・大阪リージョン間で Aurora Global Database のフェイルオーバーを試してみました。 Aurora Global Database の構成パターン Aurora Global Database はプライマリ・リージョンから別リージョンへ低レイテンシーにデータがレプリケートされます。 プライマリリージョンでは読み書きが可能です。 ストレージベースでレプリケートされるセカンダリリージョンでは主に以下の3パターンがあり

                                                        Amazon Aurora Global Databaseをリージョン間でフェイルオーバーさせてみた | DevelopersIO
                                                      • GitHub - qdrant/qdrant: Qdrant - High-performance, massive-scale Vector Database for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/

                                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                          GitHub - qdrant/qdrant: Qdrant - High-performance, massive-scale Vector Database for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/
                                                        • 第61回 いよいよ連載6年目、MySQL Database Service本格展開開始、PostgreSQLのリリース情報とイベント情報 | gihyo.jp

                                                          この記事は開催前に執筆しており、実施状況をお伝えすることができませんので、次回にご報告したいと思いますが、簡単なメモと公開される発表スライド資料・ビデオへのリンクを、OSSコンソーシアムのWebサイトにも掲載しておきます。ビデオの公開は一部の内容になる可能性があります。 [MySQL]2020年8月の主な出来事 2020年8月はMySQLの製品リリースはありませんでした。8月27日にはMySQL 8.0へのバージョンをテーマにしたセミナーとして、KDDIでのMySQL 8.0導入事例紹介があり、MySQLサポートチームの奥野氏などが登壇した、オンラインのイベントMySQL Day Virtual Event in Japanが開催されています。 7月にリリースされたMySQL 8.0.21に関するMySQL開発チームやコミュニティチームのブログのリストはMySQLチームのブログにてご紹介し

                                                            第61回 いよいよ連載6年目、MySQL Database Service本格展開開始、PostgreSQLのリリース情報とイベント情報 | gihyo.jp
                                                          • 米Oracle、「Oracle Database 23ai」クラウド版を提供開始 AIを意識して名称を変更

                                                              米Oracle、「Oracle Database 23ai」クラウド版を提供開始 AIを意識して名称を変更
                                                            • 無料メディアサーバー「Universal Media Server」のコンテンツ情報がローカライズに対応/「The Movie Database」(TMDB)の統合で

                                                                無料メディアサーバー「Universal Media Server」のコンテンツ情報がローカライズに対応/「The Movie Database」(TMDB)の統合で
                                                              • GitHub - erikgrinaker/toydb: Distributed SQL database in Rust, written as an educational project

                                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                  GitHub - erikgrinaker/toydb: Distributed SQL database in Rust, written as an educational project
                                                                • GitHub - duckdb/duckdb: DuckDB is an analytical in-process SQL database management system

                                                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                    GitHub - duckdb/duckdb: DuckDB is an analytical in-process SQL database management system
                                                                  • dbdocs.io - Database Documentation and Catalog Tool

                                                                    dbdiagram - Database Diagram As Code Draw ER diagrams by just writing code. Designed for developers and data analysts. dbdocs - Database Docs As Code Create web-based database documentation using code. Integrate seamlessly with your development workflow. dbml - Database Definition As Code Open-source DSL language designed to define and document database schemas and structures. Holistics.io - BI Re

                                                                    • AzureとOCI上のOracle DBを接続する「Oracle Database Service for Microsoft Azure」を提供

                                                                        AzureとOCI上のOracle DBを接続する「Oracle Database Service for Microsoft Azure」を提供
                                                                      • バッファープールが大きいMySQL v5.7でDROP DATABASEが詰まった原因と対策 / Causes and Remedies for DROP DATABASE Stuck in MySQL v5.7 with Large Buffer Pool

                                                                        Otsuka Tomoaki / LINE株式会社 ITサービスセンター Database室 MySQL1チーム バッファプールが100GB以上あるMySQL 5.7でDROP TABLEを実行すると準同期レプリケーションとの兼ね合いでロックが発生し、予期しないフェイルオーバが発生する事態になりま…

                                                                          バッファープールが大きいMySQL v5.7でDROP DATABASEが詰まった原因と対策 / Causes and Remedies for DROP DATABASE Stuck in MySQL v5.7 with Large Buffer Pool
                                                                        • QuestDB | Peak time-series performance database

                                                                          Peak time-series performanceQuestDB is the world's fastest growing open-source time-series database. It offers massive ingestion throughput, millisecond queries, powerful time-series SQL extensions, and scales well with minimal and maximal hardware. Save costs with better performance and efficiency. PerformanceColumnar storageSIMD-optimized queriesIngest 4M rows/s per nodeDon’t worry about cardina

                                                                            QuestDB | Peak time-series performance database
                                                                          • 【新機能】 書き込み性能をスケールできる Amazon Aurora Limitless Database のプレビューが開始されました #AWSreInvent | DevelopersIO

                                                                            ウィスキー、シガー、パイプをこよなく愛する大栗です。 私はアメリカのラスベガスで開催している Amazon Web Services のグローバルカンファレンス re:Invent に来ています。Keynote の一つである Monday Night Live で Amazon Aurora に関する大きなアップデートがあったためレポートします。 Join the preview of Amazon Aurora Limitless Database Amazon Aurora Limitless Database Amazon Aurora Limitless Database のプレビューが発表されました。1秒あたり数百万の書き込みトランザクションを処理して、1個のデータベースでペタバイトサイズのデータを管理できます。 今まで Amazon Aurora のスケールアウトはリードレプリ

                                                                              【新機能】 書き込み性能をスケールできる Amazon Aurora Limitless Database のプレビューが開始されました #AWSreInvent | DevelopersIO
                                                                            • GitHub - ariga/atlas: Manage your database schema as code

                                                                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                                GitHub - ariga/atlas: Manage your database schema as code
                                                                              • 325タイトル分のゲームUIをまとめたデータベース「Game UI Database」

                                                                                イギリスのゲームデベロッパーであり、Minecraft Dungeonsを開発したDouble ElevenのシニアUIデザイナーであるEdd Coates氏が、さまざまなゲームのUIを集めた「Game UI Database」を公開しています。 Game UI Database | Welcome https://www.gameuidatabase.com/ Proud to present the Game UI Database! A whopping 11569 screenshots, 325 games, and filterable by screen type, genre, art style, control scheme, layout, patterns, textures and more! ENJOY! https://t.co/EoevmzX3y7#game

                                                                                  325タイトル分のゲームUIをまとめたデータベース「Game UI Database」
                                                                                • ORACLE MASTER 2019新資格体系とは – 18c/19c対応 | コーソルDatabaseエンジニアのBlog

                                                                                  渡部です。Oracle Databaseに関する資格および試験であるORACLE MASTERが、 2020年から新体系に順次変わります。 2020年1月以降にリリースされる試験から ORACLE MASTER 新資格体系が導入されます - Oracle University https://www.oracle.com/jp/education/index-172250-ja.html#5 2022/3 追記 12cリリース向けのORACLE MASTER試験の終了が決定しました 12cリリース向けのORACLE MASTER試験が終了 本記事は情報提供を目的にしています。情報には正確を期していますが、これを保証するものではありません。 本記事で記載していない事項など、オラクル社の試験については、Oracle University に確認ください。 2020年より順次導入されるORACL