Comments
Sort by recent activity
1) /options: NoTransactions
2) Using /include:User should only compare the users. But if you are using the include dependencies option as well, then other dependent objects will be included. Maybe remove the IncludeDependencies option. (It is one of the default options.) / comments
1) /options: NoTransactions
2) Using /include:User should only compare the users. But if you are using the include dependencies option as well, then other dependent objects will be includ...
It shall, henceforth, be forever known as SDC-1108 / comments
It shall, henceforth, be forever known as SDC-1108
Thank you - I have added this to our features requests. / comments
Thank you - I have added this to our features requests.
Those darned crazy addins! Try this please:
1. Export your current VS settings into a file via Tools->Import And Export Settings
2. Choose the Visual Studio command prompt tool from the start menu, under the Visual Studio program group.
3. Execute the following commands:
>devenv /resetsettings
>regasm /codebase "%programfiles%\red gate\ants performance profiler 5\RedGate.Profiler.Five.AddIn.dll"
>regasm /codebase "%programfiles%\red gate\ants memory profiler 5\RedGate.Memory.AddIn.dll"
[You may get a warning here which is safe to ignore but you should finally get the message: "Types registered successfully"]
>devenv /setup
Now your add-in should be re-initilaized. Ensure you have a ready-to-run project loaded into VS and the addin integration should work perfectly.
4. Import your saved settings via Tools->Import And Export Settings / comments
Those darned crazy addins! Try this please:
1. Export your current VS settings into a file via Tools->Import And Export Settings
2. Choose the Visual Studio command prompt tool from the start menu,...
It seems to me the problem here is that you have a transaction log backup job set up outside of log shipping.
When a log backup is taken (which is essentially what is happening within log shipping) the log is assigned an LSN. These are then restored in order on the target DB, giving you a replica of the source.
If you take a log backup out of the log shipping job on the source, the subsequent log restore on the target will fail, as there will be a log missing.
I would advise you to take full backups / differential backups outside of the log shipping jobs rather than transaction log backups every hour along with the log shipping job.
Hope this helps! / comments
It seems to me the problem here is that you have a transaction log backup job set up outside of log shipping.
When a log backup is taken (which is essentially what is happening within log shipping)...
This shall henceforth and forever be known as: SDC-1105 / comments
This shall henceforth and forever be known as: SDC-1105
Thanks for your post, I;ll add it to our feature request. There is a chance I can persuade one of our tame developers to crank out a special just for you! [image] / comments
Thanks for your post, I;ll add it to our feature request. There is a chance I can persuade one of our tame developers to crank out a special just for you!
There's only one bell that this rings and that's the bell of DOOOM!! ;-)
Seriously- we're just going to have to debug this to find out exactly what has happened; there are so many reason why a profiled application may crash.
If you can obtain a mini-dump with this exception in it we will analyse it.
In the meantime, if you're not doing so already, use the "fastest, most accurate" profiling mode, this may help (it cuts down the overhead of the profiler). / comments
There's only one bell that this rings and that's the bell of DOOOM!! ;-)
Seriously- we're just going to have to debug this to find out exactly what has happened; there are so many reason why a prof...
I would advise obtaining the debugging tools for windows: http://www.microsoft.com/whdc/devtools/ ... llx86.Mspx
(64 bit version also available).
Then using windbg.exe, attach the debugger to your process (File->attach to process), press F5 until you get the exception then, in the windbg command window type:
dump c:\dumpfile.dmp
Buuut, if you are not getting the crash, it may be best to bypass this and look at why it isn't loading the form. Do you get any errors in the windows application event log? / comments
I would advise obtaining the debugging tools for windows:http://www.microsoft.com/whdc/devtools/ ... llx86.Mspx
(64 bit version also available).
Then using windbg.exe, attach the debugger to your p...
Did that information help you? / comments
Did that information help you?