Viewing 15 posts - 601 through 615 (of 2,044 total)
The connectstring seems to be wrong (MSORA are the old MS oracle drivers).
Should be something like
Provider=OraOLEDB.Oracle;Data Source=MyOracleDB;User Id=myUsername;
Password=myPassword;
June 10, 2016 at 3:24 am
It's a bit difficult without a testcase (tablescript, indexscript, data).
Points of interest:
The use of distinct bo.MedRecReviewID : why distinct
The inner joins in the upper select: can be replaced with...
May 31, 2016 at 3:08 am
No holiday either, next one is in july.
May 31, 2016 at 2:57 am
You will be needing the connect information for a linked server configuration.
In-house it would be through OracleOleDb and an Oracle Client on the MS SQL Server.
May 19, 2016 at 3:57 am
For within the instance you can use resource governor[/url]
For multiple instances you'll probably go with cpu affinity per instance
May 18, 2016 at 9:27 am
You downloaded the 64-bit version
April 22, 2016 at 4:28 am
instead of ToString("MM/dd/yyyy")
you can add the hours, minutes ...
ToString("MM/dd/yyyy hh:mi:ss")
*Have yet to lookup the correct formatting string
April 14, 2016 at 9:04 am
Haven't worked with TLS 1.2 yet but there is an update to 2012 SP3 to handle TLS 1.2 support
Planning to update 2012 is to service pack 3 Cumulative update 2...
April 6, 2016 at 7:10 am
The most exciting part for us is the revamped reporting services and Query Store
March 30, 2016 at 5:37 am
Use the proper datetype date to compare dates.
SELECT TO_DATE('07-Feb-2015','DD-MON-RRRR'),sysdate
from dual
where TO_DATE('07-Feb-2015','DD-MON-RRRR')<sysdate;
OR
SELECT TO_DATE('07-Feb-2015','DD-MON-RRRR'),sysdate
from dual
where MYDATE<TRUNC(TO_DATE('07-Feb-2015 15:00:00','DD-MON-RRRR HH24:MI:SS'));
*if you use date(time)parameters the TO_DATE isn't necessary
To get 7 februari
SELECT ...
FROM ...
WHERE...
March 22, 2016 at 10:19 am
Thanks for the e-book
March 3, 2016 at 3:24 am
Not sure.
I usually go with the TNS-alias of the oracle server, with the servername and port in tnsnames.ora.
March 3, 2016 at 3:18 am
Does the proxy user has access to the tnsnames/oracle client?
February 24, 2016 at 2:44 am
Viewing 15 posts - 601 through 615 (of 2,044 total)