#

databases

Database querying, design, and optimization

DatabasesPostgreSQL Case Insensitive Queries with ILIKE

Learn how to make PostgreSQL queries case-insensitive using ILIKE operator, LOWER/UPPER functions, citext extension, and indexing for optimal performance. Ensure 'administrator', 'ADMINISTRATOR', and 'Administrator' return identical results.

1 answer 1 view
DatabasesView Live MySQL Queries on Linux: Real-time Monitoring Guide

Learn how to view live MySQL queries on Linux using mysql show processlist, performance schema, and query logging. Monitor database activity in real-time for optimization and troubleshooting.

1 answer 1 view
DatabasesHow to Shrink SQL Server Transaction Log Safely

Learn how to clear or shrink oversized SQL Server transaction log for test databases. Step-by-step guide: switch to simple recovery model, backup log, DBCC SHRINKFILE, best practices to reduce transaction log size without data loss.

1 answer 1 view
DatabasesElasticsearch match_all Query: Correct URL Syntax

Learn the correct elasticsearch query URL syntax to retrieve all records using match_all query. Fix common issues with Lucene syntax and JSON body approaches.

1 answer 1 view
DatabasesMariaDB 1020 Error in Python Script After 11.8.3 Upgrade

Discover why MariaDB error 1020 ('Record has changed since last read') hits Python scripts post-upgrade to 11.8.3 due to innodb_snapshot_isolation=ON. Learn causes, repro steps, and fixes like session settings or retries for read-write-read patterns.

1 answer 1 view
DatabasesEnable IDENTITY_INSERT SQL Server 2008: Fix Insert Error

Learn how to properly set IDENTITY_INSERT ON/OFF in SQL Server 2008 to avoid 'Cannot insert explicit value for identity column' error. SSMS guide, app code examples, session-specific tips, and troubleshooting for Baskets table.

1 answer 2 views
DatabasesSQLite3 Column Names: Retrieve Table Columns Easily

Learn how to retrieve column names in SQLite3 databases using PRAGMA table_info, sqlite_master, and programmatic methods. Perfect for iPhone app migrations and schema validation.

1 answer 2 views
DatabasesMySQL INT(11): Storage Size in Bytes & Max Value

Discover the storage size of MySQL INT(11) column: always 4 bytes. Max signed value is 2,147,483,647; unsigned reaches 4,294,967,295. Learn why (11) doesn't affect storage or range, with official docs and best practices.

1 answer 2 views
DatabasesIntegrated Security True vs SSPI: Database Connection Differences

Learn the differences between Integrated Security=True and SSPI in database connections. Understand provider compatibility, security implications, and when to use each option for optimal database authentication.

1 answer 2 views
DatabasesFix PostgreSQL 'Could Not Connect to Server' on macOS Homebrew

Resolve PostgreSQL 'could not connect to server: No such file or directory' error on macOS Mountain Lion with Homebrew 0.9.3. Fix stale PID, sockets (/tmp/.s.PGSQL.5432, /var/pgsql_socket), launchctl, and Rails rake db:migrate issues step-by-step.

1 answer 1 view
ProgrammingPractical Differences Between JPA 2 and Hibernate

Discover key practical differences between JPA 2 (specification) and Hibernate (implementation). Can you use JPA alone? Provider requirements, benefits of JPA + Hibernate, and book recommendations for iBatis users transitioning to ORM.

1 answer 2 views
DatabasesQuickest Way to Copy PostgreSQL DB from Prod to Dev

Learn the fastest methods to copy a PostgreSQL database from production to development using pg_dump, pg_restore piping, pg_basebackup, and pgcopydb. Step-by-step guides, best practices for speed, security, and automation.

1 answer 2 views
DatabasesSet SQLite WAL Mode in Python 3.12 with autocommit=False

Fix OperationalError when setting SQLite journal_mode to WAL in Python 3.12 sqlite3.connect(autocommit=False). Commit implicit transaction first or use persistent WAL setup for sqlite3 python apps.

1 answer 2 views
DatabasesUnderstanding MySQL Index Types: PRIMARY, UNIQUE, FULLTEXT

Learn the key differences between PRIMARY, UNIQUE, INDEX, and FULLTEXT index types in MySQL. Discover when to use each type for optimal database performance and design.

1 answer 2 views
DatabasesOracle SQL: Get Max Date Row Per UserId (Latest Record)

Learn Oracle SQL techniques to fetch rows with maximum Date per UserId. Use ROW_NUMBER window function, JOIN subquery, NOT EXISTS, or KEEP DENSE_RANK for latest records efficiently on large tables.

1 answer 1 view
DatabasesSQLAlchemy Order By Desc: How to Sort Descending

Fix NameError in SQLAlchemy order_by() for descending sort. Use desc() import or column.desc() to ORDER BY amount DESC with joins and filters. Complete examples for sql alchemy queries.

1 answer 1 view
DatabasesIs WAL Redundant for Append-Only Time-Series TSDB?

Discover why WAL isn't redundant in append-only TSDBs. Learn flaws in data file reasoning, failure modes like power loss, crash recovery benefits, and real-world examples from QuestDB, SQLite for durability and replication.

1 answer 1 view
ProgrammingConvert Chrono DateTime to BSON in Rust MongoDB 3.4.1

Fix 'expected DateTime, found DateTime' error converting chrono::DateTime to BSON DateTime in Rust with mongodb 3.4.1. Add bson crate with chrono-0_4, use from_chrono() or Into for rust chrono, rust mongodb serialization.

1 answer 1 view
DatabasesTrigger SQLAlchemy onupdate for Bulk Updates & setattr

Learn why SQLAlchemy mapped_column onupdate=func.now() doesn't trigger with setattr or bulk updates. Fix automatic timestamp updates in ORM, bulk_update_mappings, and Query.update with code examples and best practices.

1 answer 1 view
DatabasesSQL Subquery Derived Table: Select All Sale Columns

Learn to use an SQL subquery as a derived table to select all columns from the Sale table for female customers (Gender='F'). Fix your query with INNER JOIN and DISTINCT for perfect results.

1 answer 1 view