Comments
Sort by recent activity
Hot off the press!
We think we know what causes the crash now and have made a private build. I'll email it to anyone who emails support with their ANTS log file (will email you soon Doug). / comments
Hot off the press!
We think we know what causes the crash now and have made a private build. I'll email it to anyone who emails support with their ANTS log file (will email you soon Doug).
I echo Brian's statement- best thing to do is obtain a mini-dump so we can get the full stack trace at the time of teh crash and we'll analyse it using our debug symbols.
Please mail: support@red-gate.com
Thank you. / comments
I echo Brian's statement- best thing to do is obtain a mini-dump so we can get the full stack trace at the time of teh crash and we'll analyse it using our debug symbols.
Please mail: support@red-g...
All these issues sounds like .NET crashes. Please see both these articles about how to prevent certain types of crashes (apply both fixes if necessary) http://www.red-gate.com/supportcenter/C ... spx?p=ANTS Memory Profiler&c=knowledgebase%5cANTS_Memory_Profiler%5cKB200907000416.htm http://www.red-gate.com/supportcenter/C ... spx?p=ANTS Memory Profiler&c=knowledgebase%5cANTS_Memory_Profiler%5cKB200908000419.htm / comments
All these issues sounds like .NET crashes. Please see both these articles about how to prevent certain types of crashes (apply both fixes if necessary)http://www.red-gate.com/supportcenter/C ... sp...
We now have two workarounds for crashes:
1. What we have found that works is disabling the server garbage collector as described here: <http://support.microsoft.com/kb/911716>
Remember- "server GC" actually means multi-core GC.
2. Parametize your main method with:
[System.LoaderOptimization(LoaderOptimization.MultiDomain)]
or
[System.LoaderOptimization(LoaderOptimization.MultiDomainHost)]
If you don't have a main method, for example: if you have a WPF project, take a look at this article which shows you how to do it: http://www.matthidinger.com/archive/200 ... ation.aspx / comments
We now have two workarounds for crashes:
1. What we have found that works is disabling the server garbage collector as described here: <http://support.microsoft.com/kb/911716>
Remember- "server ...
Hi Matthew,
you always have to install ANTS on the same machine as application you are profiling (the .NET profiling API has no remote capability) but, of course, you can still "drive" a session remotely (using RDP etc.)
I hope this helps. / comments
Hi Matthew,
you always have to install ANTS on the same machine as application you are profiling (the .NET profiling API has no remote capability) but, of course, you can still "drive" a session re...
I'm just wondering if it would help to use SQL Compare to ensure the structures are sufficiently similar to allow Data Compare to work. Use a trial version if you don't have a copy already. We generally recommend to only apply a data sync over a compare sync. / comments
I'm just wondering if it would help to use SQL Compare to ensure the structures are sufficiently similar to allow Data Compare to work. Use a trial version if you don't have a copy already. We gene...
Its not a fault, as such - its just that default filters are being applied. Try de-selecting the "Hide Insignificant methods" check box. / comments
Its not a fault, as such - its just that default filters are being applied. Try de-selecting the "Hide Insignificant methods" check box.
Just to say - if you can get that information, please send it to support@red-gate.com (with subject: F0025768). I have opened a support ticket for this already. / comments
Just to say - if you can get that information, please send it to support@red-gate.com (with subject: F0025768). I have opened a support ticket for this already.
Could you please run:
SELECT CAST(0 AS INT) AS ColumnPermissionID, sp.grantee_principal_id as uid, su.name AS UserName,
OBJECT_NAME(sp.major_id) AS ObjectName,
SCHEMA_NAME(so.schema_id) AS ObjectOwner,
1 AS class, sp.type, sp.state,
so.type AS ObjectType,
CONVERT(int, null) as columns
FROM sys.database_permissions AS sp WITH (NOLOCK) INNER JOIN sys.sysusers su WITH (NOLOCK) ON su.uid=sp.grantee_principal_id INNER JOIN sys.objects so WITH (NOLOCK) ON so.object_id=sp.major_id WHERE sp.major_id>0 AND sp.class = 1 AND sp.minor_id = 0 AND (sp.type in ('IN','DL','EX') OR CHARINDEX(sp.type, 'CRFNCRTBCRDBCRVWCRPRBADBCRDFBALOCRRU')%4 > 0) AND so.schema_id IS NOT NULL AND sp.type='VWCT'
GROUP BY sp.major_id, sp.grantee_principal_id, sp.grantor_principal_id, sp.type, sp.state, so.type, su.name, so.schema_id
If anything is returned, the problem is that in SQL 2008, we do not support the View Change Tracking user right. / comments
Could you please run:
SELECT CAST(0 AS INT) AS ColumnPermissionID, sp.grantee_principal_id as uid, su.name AS UserName,
OBJECT_NAME(sp.major_id) AS ObjectName,
SCHEMA_NAME(so.schema_id) AS ObjectOw...