Viewing 15 posts - 856 through 870 (of 2,052 total)
Haypp Christmas,
From job perspective it is probably a benefit knowing more than 1 database. SQL Server is easier to administer as it comes with various tools to do so (and...
December 24, 2011 at 5:51 am
Good point. Virtualization has many benefits: easy migration, lab testing, flexible in hardware resource, not so dependent on hardware-age
My mayor gripe with virtualization is the licensing model some software vendors...
December 17, 2011 at 9:16 am
Thanks for sharing the workaround
December 13, 2011 at 1:31 am
I've found an older reference of the problem. You might check the creation script on mixed case.
Otherwise try to setup a trace on the oracleside to see what sql server...
December 12, 2011 at 8:25 pm
I'm not familiar with crossdatabaseplatform replication. What ora-... error do you get?
December 12, 2011 at 6:27 am
Surely there is the need for some thinking time. Many hours of sleep lost when the brain decides to rehearse a memorable problem instead of snoozing.
December 2, 2011 at 3:50 am
Could you use code tags?
AND"+
"z.usernameman
concatenates to andz.usernameman which is invalid
Trying to generate dynamic sql?
November 29, 2011 at 8:46 am
Also have a look at Quest for SSC alike oracle forums
November 29, 2011 at 3:59 am
A point for keeping the modified always filled in >=created date is that your index search on "created or modified within the last 24 hours" works faster (only checking on...
November 28, 2011 at 11:43 am
Also the oracleversion of the backend is important as msdaora is discontinued, you better use the oracle-driver from oracle (from oracle 10 on)
November 28, 2011 at 11:34 am
impdp/expdp doesn't exist in oracle 9? Imp/exp does
November 26, 2011 at 7:25 pm
I've converted the right-join in a left join (as they are rewritable),didn't feel like reordening my whole query.
Easiest is to remember (+) means: if not found add a null...
November 18, 2011 at 5:40 am
Try
X.abc=Y.abc(+) (side with nulls) => X LEFT JOIN Y ON X.ABC=Y.ABC
X.abc(+)=Y.abc => X RIGHT JOIN Y ON X.ABC.Y.ABC
SELECT count(*)
FROM employee_master e
INNER JOIN client_master cl
ON e.rm_code=cl.rm_code
INNER JOIN branch_master b
ON...
November 17, 2011 at 7:25 am
1. Instead of saving to ms acces, have msaccess link your tables
2. Have a look at replication (some tables)/mirroring (whole database)
October 31, 2011 at 3:14 am
Be sure to question the questioner.
I suppose when the game starts, the player sees 4 pictures (giftboxes?). One of the closed boxes contains the mouse, another one the stop-sign....
October 27, 2011 at 7:42 am
Viewing 15 posts - 856 through 870 (of 2,052 total)