Forum Replies Created

Viewing 15 posts - 121 through 135 (of 691 total)

  • RE: Monitoring Process Info and Logs

    If you are looking at the wait time in the Current Activity window in Enterprise Manager, wait time is given in milliseconds.  So a wait time of 15 is virtually...

  • RE: Table modification history?

    Are you wanting to monitor changes to the table structure, data, or access to the data?

    A Log Explorer tool would allow you to see changes to the data and structure.  Another way...

  • RE: Visual Studio Integration

    I agree with David.  A year should never be included in the name of a product, unless by its very definition, it will be obsolete at the end of that...

  • RE: Starting SQL server - error 1068 and error 193

    These both appear to be OS errors, as the corresponding errors in SQL Server have messages that don't seem to apply.  I will assume that when you get the error...

  • RE: Determining cause of timeouts and transaction log growth

    You could set your log to the minimum size where you know it won't grow under normal operations (600mb?), create an alert to fire when the log fills, and optionally automatically fire...

  • RE: Does SQL2k stored the last modified date for a Stored Procedure?

    Another possibility would be to restore a backup of your database from the beginning of the year, and compare the stored procs in the old with the new.  I'll leave...

  • RE: dbo, who should it be?

    Not sure how much help this is, but I vote for sa ownership.  We try to ensure that all production databases are owned by sa.

    Steve

  • RE: What does ''''%[^0-9]%'''' mean?

    Greg,

    I'm confused.  This post doesn't seem to correspond to the rest of the thread.  In any event, try putting parens around @sqlString...

    EXEC (@sqlString)

    Steve

  • RE: SQL server differential restore problem!!

    Rich, The whole purpose of differential backups is that you do NOT need all of them.  You only need the most recent.  If you needed all, they would be the same...

  • RE: Mo'' Power, mo'' power

    Low-Cost??? and YOU are the delusional one????  I haven't seen the price, but somehow I bet it costs more than my truck.

    Steve

  • RE: Error in Sql Server Logs?

    Somebody attempted to execute the xp_MSADEnabled extended stored procedure, and it failed.  xp_MSADEnabled is undocumented and is executed during the execution of sp_ActiveDirectory_Obj, which is documented is Books Online.  Perhaps...

  • RE: SQL server differential restore problem!!

    In each RESTORE statement up until the last transaction log restore, you must specify WITH NORECOVERY.  This tells SQL that you will be applying more backups.  When you execute that...

  • RE: SQL Installation

    MSDN (Microsoft Developers' Network) or MSDE (Microsoft Data Engine) or Developer's Edition?

    In any event, you won't have any trouble migrating from one to the other.  A backup and restore should...

  • RE: A Glimpse of XBOX2

    Hmm.  You know, I have absolutely no doubt that Todd is right.  Why can't they do that with SQL???????????????????????

    Steve

  • RE: Results of DBCC, sp_... into table

    Here's a little example to get you going...

    create table #who2

     (

     #SPID int NULL,

     #Status varchar(30) NULL,

     #Login sysname NULL,

     #HostName sysname NULL,

     #BlkBy varchar(128) NULL,

     #DBName sysname NULL,

     #Command varchar(128) NULL,

     #CPUTime int NULL,

     #DiskIO int NULL,

     #LastBatch char(14) NULL,

     #ProgramName...

Viewing 15 posts - 121 through 135 (of 691 total)