Search Results

3
votes

what are your favorite database-related discussion forums?

For Oracle: http://asktom.oracle.com/ Not exactly a forum, but a Q&A with responses (much like SO). …
0
votes

Oracle - ODBC connection using MS Access error (ORA-12154)

Can you log in to the database in question via SQL*Plus? Doing this from another machine with a working connection (or the DB server itself) is fine also. If so, run this: s …
0
votes

Oracle - ODBC connection using MS Access error (ORA-12154)

Try tnsping and report your results. Bad: C:\>tnsping notreal.world TNS Ping Utility for 32-bit Windows: Version 9.2.0.5.0 - Production on 29-OCT-2008 15:56:47 Copyrigh …
5
votes

Is there an easy way to clone the structure of a table in Oracle?

CREATE TABLE tablename AS SELECT * FROM orginaltable WHERE 1=2; Edit: The WHERE clause prohibits any rows from qualifying. …
1
vote

notification when alter occurs on oracle database

Regarding your comment above: It is development database, so we need many people to get access to it. – whizmaven (8 hours ago) @Jonathan Leffler is …
4
votes

Should I store all the text in my database in uppercase or in lowercase?

It obviously depends on what you'll need to do with the data later. But if you're asking because you're interested in speeding up lookups later (e.g. searching by name, city, etc.), you may …
1
vote

Physical or Logical Delete of Database Record

It's fairly standard in cases where you'd like to keep a history of something (e.g. user accounts as @Jon Dewees mentions). And it's certainly a great idea if there's a strong chance of users askin …