[BUG] Altering table and reordering columns causes "No Change Detected"
I am using TDP v4.1.0.226. When altering a table, if I simply add a new column, it works as expected, but if I ALSO reorder the columns, it results in "No Changes Detected". See images below:Adding...
View ArticleRE: Where Condition
yes, that is correct. the ellipse will let you load values from a file.
View ArticleWhere Condition
Is there a way to pull in multiple values in a query builder where condition without using the IN operator? Using the drop down takes quite a while to load as there are a large number of values in...
View ArticleRE: TDP 4.1 Automation Nested Automation Jobs- Skipping
i have never seen that before. The Automation engine is very sequential and based on the skip. Can you run the script(s) with verbose logging and then open a support case? We would need to investigate....
View ArticleRE: TDP 4.1 Automation Nested Automation Jobs- Skipping
Your script is set to continue on error. I have never seen jobs jump out of order. I have seen some jobs run longer than others one day and not the next. I might suspect that you have more than one...
View ArticleRE: TDP 4.1 Automation Nested Automation Jobs- Skipping
I have had this happen to me before but on an old version. It would skip some automation jobs in the master job and not send any error messages or anything to indicate that something went wrong. I...
View ArticleTDP 4.1 Automation Nested Automation Jobs- Skipping
I have an automation job named "AM_ALL", embedded in it are 7 automation jobs (nested). Today, I learned that the jobs are not running in the order in which they are setup in the "AM_ALL" TAS file....
View ArticleRE: SMTP Email Failure TDP 3.6
Hi DebbyDid you ever resolve the issue on this thread? I am having the same issue tryinhg to email a report via an automated process TDP 4.0. Every thing runs perfectly until it gets to the email part...
View ArticleRE: SMTP Email Failure TDP 3.6
hi chris.kanu,There were quite many changes in how the SMTP settings are handled in the latest TDP version. You might want to try the latest free beta version. Additionally you will have the option to...
View ArticleSMTP Email Failure TDP 3.6
I have noticed a LOT of messages almost daily now for SMTP email "socket" errors coming back from Toad Data Point. The end of my automations are supposed to send an SMTP mail message saying that the...
View ArticleToad fails to load and install correctly
TDP started failing on me today & have uninstalled since. However the install fails as well. Looked thru forums and couldn't find a clear fix. Looks like it could be a license issue.Deleted...
View ArticleRE: Nulls in TDP Exports as Not Null in Excel Instances
Hello Jhampl. maybe you can try to use NVL function in your statement to handle null expressions. With regards J.
View ArticleRE: Nulls in TDP Exports as Not Null in Excel Instances
This might be an Excel issue. I recently had issues with Excel counting cells and treating blank cells as not blank. Also if you put a formula in a cell to trim spaces, copy that formula cell and...
View ArticleRE: Nulls in TDP Exports as Not Null in Excel Instances
Can you try our latest Trial or Beta? We are using a different third party component.
View ArticleNulls in TDP Exports as Not Null in Excel Instances
Hello,I noticed that when I am exporting from Toad Data Point (3.7.1.1011 Base Edition) to excel that Null values in Toad were registering at Not Null in Excel. This is a significant issue since users...
View ArticleMS SQL script view
using Toad Data Point for MS SQL database I can not see script for views with comment "encrypted". MS SQL Studio presents scripts without problems. What shall I modify in Toad?
View ArticleRE: Nulls in TDP Exports as Not Null in Excel Instances
I will check if I can try that but it will be up to the security team. Thanks
View ArticleRE: If Statement in Query Builder
You need to make a calculate field.Case When Billing_Code < 20000 Then My_Amount_Field Else ( My_Amount_Field * -1 ) /* will change the amount to a negative assuming the Amt is positive */...
View ArticleRE: If Statement in Query Builder
Yes, just create a calculated column (click the button with the sigma symbol to begin) and use a CASE statement. Something like:case when table_name.Billing_Code >= 2000 then ( table_name.amount *...
View Article