Viewing 15 posts - 541 through 555 (of 2,052 total)
Regarding oracle tuning I refer to orafaq How to tune SQL or Identify Performance Problem and Bottleneck
September 10, 2018 at 9:05 am
Is it possible to tune the data driven query for your subscriptions, so it only returns persons who weren't in the previous dataset?
August 17, 2018 at 8:32 am
Trying to restore data for comparison (before & after) and find out the backupprocess missed the necessary archivelogs for a restore to time.
Luckily it could be reconstructed from other...
August 10, 2018 at 8:40 am
August 10, 2018 at 8:32 am
Some recent blogs about parametersniffing
Parametersniffing 1
Parametersniffing 2
Parametersniffing 3
August 10, 2018 at 2:06 am
"obviously replacing the params with the actual values"
do you mean
SELECT *
FROM A
where col1=@param1
with
SELECT *
FROM A
where col1=1
August 9, 2018 at 8:16 am
or you could use the oracle to_date function
AND SLD.docenimerosisdate >='02/02/2018'
AND SLD.docenimerosisdate >=TO_DATE('02/02/2018','DD/MM/YYYY')
July 27, 2018 at 3:45 am
I've only used PDF for exact layouts. Does it "print" correctly there?
Have you played around with HTML device settings html-device-information-settings
July 10, 2018 at 4:33 am
Have you tried a textual dump of the offending field to see what value might give the error?
SELECT dateasstring from openquery(progresssource,'select tostring(offendingfield) dateasstring ...') progress
June 14, 2018 at 7:25 am
I don't use SSAS yet but Have you looked at the logs?
Following link is a bit old but might still be relevant
CU7...
May 29, 2018 at 7:58 am
All the packages of the project are checked out?
May 26, 2018 at 8:14 am
Does the statement work outside sql server agent? It might be a permission problem.
You can run sql agent jobs under a different windows account using proxies and credentials
May 18, 2018 at 9:08 am
Viewing 15 posts - 541 through 555 (of 2,052 total)