Viewing 15 posts - 2,206 through 2,220 (of 7,168 total)
monilps (1/29/2013)
I want to capture and save everything into database.Thanks.
Logging all activity to a table could be disastrous for performance. The recommended way to handle auditing is to write to...
January 29, 2013 at 9:13 am
If the owner's login is disabled in the instance then it can still successfully function as a database owner for things like cross-database ownership chains and such. Make sure none...
January 29, 2013 at 8:45 am
Trace is going to be your best option on 2005. You could also look into C2 or Common Criteria auditing (which both use Trace by the way) as those are...
January 29, 2013 at 7:03 am
davery 28734 (1/28/2013)
January 29, 2013 at 6:48 am
On SQL 2005 Trace should work just fine. Most third-party tools will likely leverage Trace anyway. You can filter on SessionLoginName to capture all SQL text issued to the instance...
January 28, 2013 at 2:30 pm
Kishore-132325 (1/28/2013)
1. 1 SQL Server 2012 [ destination server ]
2. 1 SQL Server 2008 [ source server ]
3. 1 File server - I...
January 28, 2013 at 12:17 pm
Having AWE enabled allows the system to address up to 4GB of RAM, the actual limit for a 32-bit system. 2GB is the artificial limit based on how Windows divides...
January 28, 2013 at 12:12 pm
IO_COMPLETION means the code is working but the database engine is waiting for the IO system to finish committing the transaction. It sounds like the system that it will not...
January 28, 2013 at 10:42 am
Are you sure there no DML triggers in play? Which exact build of SQL Server are you using?
SELECT SERVERPROPERTY('Edition') AS Edition,
SERVERPROPERTY('ProductVersion')...
January 28, 2013 at 7:16 am
winston Smith (1/28/2013)
January 28, 2013 at 7:07 am
When you promote the new assembly into the GAC is it using the same version and public key?
January 27, 2013 at 9:23 am
You were also missing the END that matched the opening BEGIN. If you do not plan on doing any custom error handling, e.g. enriching the error message, in the trigger...
January 27, 2013 at 9:10 am
The fact that the code works on some systems and not others indicates the code is likely sound but that there may be an environmental factor in play preventing success...
January 27, 2013 at 9:06 am
It requires a bit of dynamic sql:
USE master;
DECLARE @dbname SYSNAME = N'AdventureWorks2008R2',
@filename NVARCHAR(500) = N'C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQL2008R2DEV\MSSQL\DATA\AdventureWorks2008R2_Data.mdf',
@logfilename NVARCHAR(500) = N'C:\Program Files\Microsoft...
January 27, 2013 at 8:58 am
Viewing 15 posts - 2,206 through 2,220 (of 7,168 total)