Activity overview
Latest activity by kkchan
Failed to snapshot
Hi
I am using ANTS memory profiler to profile my ASP.NET web app. However, I hit this error when I take snapshot. I am running under Windows 7 64 bits machine, however my web app pool is set "Enabl...
Work using SDC UI but not command line
Hi,
I have create SDC project and it works under SDC UI. However, I hit error if I run it using command line
SQLDataCompare /project:c:\myproject.sdc /ignoremissing /scriptfile:c:\abc.sql
Error: Co...
Hi,
I have tried to use dependencies tracker to my database. How could I know what cause my table "circular reference"? It shows my table used by another trigger/view/table. Thats it. But it doesn't show how which table cause the circular ref.
Please advice.
Thank you / comments
Hi,
I have tried to use dependencies tracker to my database. How could I know what cause my table "circular reference"? It shows my table used by another trigger/view/table. Thats it. But it doesn'...
Hi,
Thank you for reply.
I was thinking to use your approach. However, some of my tables required DML trigger to update another table such as update stock.
Or, create another project for them as workaround? Any other ways?
Thank you / comments
Hi,
Thank you for reply.
I was thinking to use your approach. However, some of my tables required DML trigger to update another table such as update stock.
Or, create another project for them as wo...
INERT statement
Hi,
SQL Prompt auto list out INSERT code template after I key in INSERT INTO mytable. Anyway to:
1. Allow me to select what fields to be inserted, or all?
2. Allow navigation to each value portion?...
Parameter navigation
Hi,
I tried SQL Prompt and found that it doesn't support "parameter navigation". For example, when I type "EXEC ", it prompted stored proc list for selection. After I select SP, it will parameter ...
You could use a WHERE clause to reference the other table e.g.
Code:
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = 45)
Hi,
Thank you for reply. As the value of 45 in the sql statement above might vary. Anyway I could replace it with "parameter" so that I could assign value to it during runtime?
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = @lnTerminalID)
Thank you / comments
You could use a WHERE clause to reference the other table e.g.
Code:
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = 45)
Hi,
Thank you for reply. As the value of 45 in ...
How to control table sync order
Hi,
I hit error when sync one of my table. It is caused by the Table PK used in another table. I am using trigger to control RI instead of foreign constraint.
Due to this, I need to control the tab...
Sync data programmatically
Hi,
I have defined data sync using sql data compare and save it in project file. I would like to sync data programmatically, with all my configuration saved in project file with only few changes:-
...