Search Results

1
vote

How can I get Datetime to display in military time in oracle?

Use a to_char(field,'YYYYMMDD HH24MISS'). A good list of date formats is available at http://www.ss64.com/orasyntax/fmt.html …
1
vote

SQL Question - Possibly Cursor/Join related?

You may be best off to use a reporting tool like Crystal or Jasper, or even XSL-FO if you are feeling bold. They have things built in to handle specifically this. This is not something the would …
2
votes

Update VERY LARGE PostgresQL database table efficiently

While you cannot likely fix the problem of space usage (it is temporary, just until a vacuum) you can probably really speed up the process in terms of clock time. The fact that PostgreSQL uses MV …
-1
votes

Sql query to determine status?

select count(*) from process_monitor where timestamp > yesterday and timestamp < tomorrow. Alternately, you could use a self join with a max to show the newest mess …
0
votes

SQL clone record with a unique index

You could create an insert trigger to do this, however, you would lose the ability to do an insert with an explicit ID. It would, instead, always use the value from the sequence. …
0
votes

Trip time calculation in relational databases?

Ok, this is a bit beyond geeky, but I built a web application to track my wife's contractions just before we had a baby so that I could see from work when it was getting close to time to go to the …
0
votes

Cascading deletes in PostgreSQL

You do not need to dump and restore. You should be able to just drop the constraint, rebuild it with cascade, do your deletes, drop it again, and the rebuild it with restrict. CRE …
1
vote

Tool: ETL from an ODBC to SQL 05?

At least with the older versions of SQL Server, they shipped with DTS. Not the simplest, but it does work with ODBC and SQL Server, and you may already have it. …
0
votes

Degraded performance of a query after adding Index

A few things: First, if you are accessing over half of the data blocks, full scan will be faster because reading the index block is another IO call, so the read of an indexed row is general …
0
votes

Looking for an SQL statement which groups by type

The answer here is to normalize the data. Table 1: System ID - key Description Table 2: Port Type ID - key Description Table 3: System ID - Key Port ID - Key Port Type Select cou …
0
votes

postgresql querying on multiple identical tables

The easiest solution would likely be to build a view of all of the tables, then you can query them easily. You could easily write a procedure to generate the view. Also, if you use "union all", …