Forum Replies Created

Viewing 15 posts - 7,351 through 7,365 (of 7,368 total)

  • RE: Deadlock detection

    trace flag 3605 (log tarcedata) should be combind with 1204 (explain deadlocks).

    Do it at server level as startup parameters. Otherwise it latst only for the duration of that session.

  • RE: Nightly Failed Jobs Report

    This is a nice solution if you only want to followup the sql-server-stuff.

    We use HP-openview-managex/HP-OperationsW to followup the nt-eventlogs of our servers. All our jobs report failings to the...

  • RE: xp_sendmail fails

    You'll have to apply the hotfix provided by MS (SQL Server 2000 Hotfix 8.00.603 for Sqlmap70.dll) Only Sqlmap70.dll needs to be replaced.

  • RE: Just gotta gripe...

    There's nothing stupid to it. Use correct datatypes or correct functions.

    Correct Datatyping is "an effort", but has huge advantages in the long run.

    Basic rule #1 : Tel your...

  • RE: RAM Problems with SQL SERVER 2000

    I've seen some "state of the art SQL" regarding crystal reports and strongly advice sql-tuning.

  • RE: Relational Database Without Relations

    With this title I'd expect a comparison regarding DRI and non-DRI objects (even with the DRI-indexes on the non-DRI objects). The first restriction is that with your implementation you can...

  • RE: Using the Copy Database Wizard

    It is a nice wizard, but keep in mind it DETACHes the original db for a litle while, and hereby generates unavailability of your originating db.

  • RE: Table / Database Name as SP Input parameter(s)

    Just think about the fact that your sp will run dynamic sql ! (privileges)

  • RE: vb6 & sql7sp2 & application role & update batch

    Stop searching, the "problem" is solved. The application developer actualy defined a table-column to short for the data that would be placed into it.

    Thanks anyway for all your efforts.

    🙁 these...

  • RE: Error when I open a table

    This is described at "FIX Enterprise Manager Returns Unexpected Error on Table or View" (Q273472)

  • RE: How to use Soundex and Like in a single query ?

    Check this query to get a view on what soundex is doing :

    select 'bijnens', soundex('bijnens')

    union all

    select 'bainens', soundex('baainens')

    union all

    select 'beinens',soundex('beinens')

    union all

    select 'beijnens', soundex('beijnens')

    union all

    select 'bynens', soundex('bynens')

    union all

    select 'bijnans', soundex('bijnans')

    union all

    select...

  • RE: VB and SQL-agent job-history

    Building on this I got it to work in VB6 with the folowing code :

    'declaration STDERR-file

    Dim FileSysSTDERR As FileSystemObject

    ...

  • RE: Generate SQL Scripts

    There's an example-application on this issue shipped with sql-server.

    check "C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples\sqldmo"

  • RE: I can't do joins...need help.

    didn't you make a carthesian product in your first query (the join-predicate is missing) ?

  • RE: Memory Leak with SQL 7

    Could you check the mdac version. My sql7-servers using mdac 2.6 have enormous VM-sizes which are nomore visible after instaling mdac 2.6 sp1.

Viewing 15 posts - 7,351 through 7,365 (of 7,368 total)