Viewing 15 posts - 2,206 through 2,220 (of 7,164 total)
Or using the -v option.
sqlcmd Utility (SQL Server 2005)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 8:42 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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 7:03 am
davery 28734 (1/28/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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')...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 28, 2013 at 7:16 am
winston Smith (1/28/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 27, 2013 at 8:58 am
Even though you have different partition functions you can swap the partition out because the structure is the same and the partition boundary in the source is a subset of...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 27, 2013 at 8:28 am
Gazareth (1/26/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 26, 2013 at 4:44 pm
Viewing 15 posts - 2,206 through 2,220 (of 7,164 total)