spencer7593

865
Reputation
200 views

Registered User

Name spencer7593
Member for 6 months
Seen 1 hour ago
Website
Location
Age
1h
comment What is the use of TNS_ADMIN variable in Oracle?
The default location for Net8 configuration files is $ORACLE_HOME/network/admin. You can override that using the TNS_ADMIN environment variable, to specify a directory where Oracle will find the sqlnet.ora file.
Oct
20
revised Oracle Syntax for Creating Database Link Owned by Another User
added 1 characters in body
Sep
7
accepted Dealing with circular reference when entering data in SQL
Aug
7
comment How can a node in an execution plan have smaller costs than its child?
This is expected behavior. It's a limitation of EXPLAIN PLAN, it's not a problem. If you need to see detailed information about the actual performance of the statement and how the optimizer is selecting the plan, trace events 10046 and 10053.
Aug
7
revised Where can I query an oracle databases’ case-sensitivity?
include link to relevant Oracle documentation
Aug
7
answered Where can I query an oracle databases’ case-sensitivity?
Aug
2
awarded  Necromancer
Jun
24
comment How do I use T-SQL’s Exists keyword?
+1 @Eric, now the statement looks like it will return the specified result set. But note what happens with the result set if there happen to be TWO (or more) rows in tblCheckbookCode with 'Rent Income' as Description, the JOIN query will return "duplicate" rows, using an EXISTS predicate avoids that problem.
Jun
23
answered Is one of my DB-fields NOT NULL?
Jun
17
accepted How do I use T-SQL’s Exists keyword?
Jun
16
comment How can I optimize a dynamic search query in Oracle
+1 this is the same approach I use, I favor developing a single STATIC sql statement that takes parameters, using a NULL value for a parameter such that the predicate evaluates to true. The benefit is that I have ONE statement I need to test, and ONE statement in the shared pool, rather than a whole herd of variations to try to tune. The next step, as Mac points out, is to cull out the "popular" cases, and have those static as well. It's not a silver bullet, but it is a VALID approach.
Jun
15
comment referential integrity constraint is automatically disabling in oracle.
add the REENABLE clause in the control file see: download.oracle.com/docs/cd/…
Jun
12
answered Oracle Syntax for Creating Database Link Owned by Another User
Jun
11
comment SQL query doubt :removing prefix characters
if you're going to run an UPDATE, make sure you don't run it more than once...
Jun
11
comment SQL Server *= Operator?
Actually, the syntax was ANSI-89 standard compliant. But as you point out, the syntax is now superseded and deprecated.
Jun
11
revised Oracle lag between commit and select
added 231 characters in body
Jun
11
comment Oracle lag between commit and select
+1 !!! I hadn't even considered COMMIT might other than IMMEDIATE WAIT or that transaction isolation level was other than READ COMMITTED.
Jun
11
revised Oracle lag between commit and select
added 91 characters in body
Jun
11
revised Oracle lag between commit and select
added 258 characters in body; added 159 characters in body
Jun
11
accepted relations in oracle objects?
Jun
11
answered Oracle lag between commit and select
Jun
11
comment SQL decode on column4 but only when column5 is distinct
+1 As much as I like the SUM(DECODE(x,y,1,0)) construct, Vincent has the right approach here,
Jun
11
comment What is your preferred syntax for SQL aliases?
being able to read (and decipher) the SQL is A MUCH MORE IMPORTANT consideration than saving three keystrokes for an alias. (Don't use an alias if it's not needed, I'm fine with saving keystrokes...
Jun
10
revised How to check if a date is in a given range?
added 487 characters in body
Jun
10
revised How to check if a date is in a given range?
deleted 25 characters in body
Jun
10
comment SQL Select Question
@Scott: my answer is attracting negative votes. If i get more, I will be a "good citizen" and remove my answer. Maybe I will join the crowd and post an answer to the question you didn't ask "How do I convert a formatted string into a datetime?"
Jun
10
revised How to check if a date is in a given range?
added 266 characters in body; added 39 characters in body
Jun
10
answered How to check if a date is in a given range?
Jun
10
revised SQL Select Question
added 49 characters in body
Jun
10
revised SQL Select Question
added 304 characters in body
Jun
10
comment SQL Select Question
OP wants oldest six rows from EACH GROUP
Jun
10
comment SQL Select Question
OP wants oldest six record from EACH GROUP, not within a date range.
Jun
10
comment SQL Select Question
OP needs oldest 6 rows from EACH GROUP, not just oldest six records.
Jun
10
revised SQL Select Question
added 388 characters in body
Jun
10
answered SQL Select Question
Jun
10
comment Checking for time range overlap, the watchman problem [SQL]
+1 - i'm working on a similar problem, identifying disjoints AND overlaps
Jun
9
comment SQL stored procedures design issue
+1! tekBlues identifies what's "bad" about the approach, it's hard coding values into the stored procedure, whether it's id=3 or key='beer', when those values can change. (the primary key should be immutable, that is, once assigned, it should not change.)
Jun
9
answered Oracle ‘identifier myschema.mytable must be declared’
Jun
9
revised How accurate is Oracle’s EXPLAIN PLAN?
added 8 characters in body
Jun
9
accepted SQLPLUS queries
Jun
9
revised Simplifying (aliasing) T-SQL CASE statements. Any improvement possible?
added reference to Common Table Expression example in a different answer
Jun
9
revised Is there a better way to convert SQL datetime from hh:mm:ss to hhmmss?
strikethrough 'replace 00 with 24' section
Jun
9
revised Dealing with circular reference when entering data in SQL
added solution for SQL Server (previous answer was for Oracle)
Jun
5
revised In Oracle, is there a function that calculates the difference between two Dates?
modified to correctly handle duration values < 0
Jun
5
comment In Oracle, is there a function that calculates the difference between two Dates?
NOTE: this solution doesn't report hours for a duration >24hours. That is, if the difference between end_time and start_time is greater than 24 hours, this returns elapsed hours less any whole 24 hour periods.
Jun
5
answered SQLPLUS queries
Jun
5
comment Getting output in flat file using oracle on UNIX
+1 (I might add that LINESIZE may need to be set to a larger value to avoid line wrap, with TRIMSPOOL on trailing blanks will be removed from each line, i sometimes use column formatting directives)
Jun
5
comment Dealing with circular reference when entering data in SQL
In Oracle, the "trick" is to define the foreign key(s) DEFERRABLE.
Jun
5
answered Dealing with circular reference when entering data in SQL
Jun
5
comment Simplifying (aliasing) T-SQL CASE statements. Any improvement possible?
@vinko: ALSO consider specifying each "breakpoint" value only once (use only one bound, and the guarantee of an early return when a condition is satisfied.) I infer the specification that every callDuration (>0) should fall into a bucket, and not be lost in a gap between two buckets.