python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
SQL Server odd Performance results when querying/not querying checking for NULL values
I have to modify a query that is checking that a given date falls between the StartDate and EndDate fields of some View result set.
Since there is no row with null values in those fields, the followin...

Ada
Votes: 0
Answers: 1
T-SQL -- faster way to do match for NOT LIKE '%[^0-9]%' used in CASE/WHEN statement
I am looking for a potentially faster way to do this check:
NOT LIKE '%[^0-9]%'
This checks to ensure all characters are numbers (see description of T-SQL pattern)
Is there a faster way to do this in...
JosephDoggie
Votes: 0
Answers: 1
Oracle Redo Logs All Active
First, I know very little next to nothing about being an OracleDba. I am responsible for managing an application using Oracle 11g written by a third party. Our application/database has been stable for...
David Gerst
Votes: 0
Answers: 2
Postgres - same query two different EXPLAIN plans
I have two postgres databases (one for development, one for test). Both have the same structure.
I'm running this query on both (merges one table into another)
WITH moved_rows AS
(
DELETE FROM m...
ConanTheGerbil
Votes: 0
Answers: 2