0
votes
What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?
I would warn against building an architecture like you're suggesting. Opening a new connection to the database to poll for changes every second is an expensive operation. It gets worse if you're tr …
2
votes
What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?
Here's a sample from our environment:
<add key="ODP.NET.ConnectionString" value="Password=abcdefg;Persist Security Info=True;User ID=abc123;Data Source=blah;"/>
…
4
votes
Improve oracle query performance without indexing
You may want to try creating a materialized view on any of those tables. You can then create an index on the materialized view that will help speed the query (which would then be querying the mater …
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 …
5
votes
Readable SQL aliases
The whole point of an alias is to shorten the name so you don't need verbosity.
It only needs to be unique within a given query, so there's no need for a scheme for naming them.
Ed …
1
vote
How do you detect if there is an index for a specific column on a table in Oracle?
Become familiar with querying the SYS schema:
Select * from sys.all_ind_columns where table_name=:TabName and table_owner=:TabOwner;
…
15
votes
Oracle - Select where field has lowercase characters
How about this:
select id, first, last from mytable
where first != upper(first) or last != upper(last);
…
0
votes
Is “Commit” necessary when updating Oracle from asp.net?
The behavior you're seeing in SQL Navigator is probably determined by an options setting.
I haven't used SQL Navigator, but …
0
votes
Calling Oracle SP with TableAdapter very slow
Make sure you're setting the CommandType to CommandType.StoredProcedure.
For example (from …
3
votes
Oracle function concurrency
No need to work out the exclusivity here. Oracle does that by managing your transactions.
The key is that each invocation of your "custom defined function" needs to return a unique code. …
0
votes
Serializing objects as BLOBs in Oracle
I haven't had the need to compare BLOBs, but it appears that it's supported through the dbms_lob package.
See dbms_lob.compare() at …
1
vote
Access via ODBC - Oracle DEFAULT not working
If you're doing this with the grid view as data entry, I'd think that Access may be explicitly trying to insert an empty string as that value. Try writing the plain SQL statement for the insert and …
