Search Results

0
votes

How do I UPDATE a row in a table or INSERT it if it doesn’t exist?

If you don't have a common way to atomically update or insert (e.g., via a transaction) then you can fallback to another locking scheme. A 0-byte file, system mutex, named pipe, etc... …
9
votes

SQL group by “date” question

You want to group by all non-agg fields. And you don't want to truncate the date, you want the month part of the date. so something like select to_char(datefield, 'Month'), count(* …
3
votes

Varchar Pronunciation

A2 - on the theory that it's a portmanteau of Character Varying... …
0
votes

Using stored procedures results in update statement

Can you make the created_in_variant a computed field? …
0
votes

SQL Query: How do you combine count function result into a select query?

Alias the count(*) then use a Sum(alias) …
0
votes

Using System Tables to Count the Percent of Rows Null in Various Tables

AFAIK the only way to do it is to use dynamic sql (e.g., sp_executesql). There are index statistics but nulls aren't stored in indexes... …
4
votes

What is the best way to search the Long datatype within an Oracle database?

You can't search LONGs directly. LONGs can't appear in the WHERE clause. They can appear in the SELECT list though so you can use that to narrow down the number of rows you'd have to examine. …
0
votes

Can I have an inner SELECT inside of an SQL UPDATE?

That'll work at least on sql server and oracle. …
0
votes

oracle - sum on a subquery ?

You can sum a single column with select sum(mycolumn) from mytable When you mix aggregators (e.g., sum(), count()) in the select list with fields then you change the meaning of the …
0
votes

Prevent Oracle minus statement from removing duplicates

the ALL modifier makes UNION return all rows (e.g., UNION ALL), maybe it can be applied to MINUS? As in select field1 from table1 minus all select field2 from table2 …
3
votes

Continuing Inserts in Oracle when exception is raised

Using PLSQL you can perform each insert in its own transaction (COMMIT after each) and log or ignore errors with an exception handler that keeps going. …