Forum Replies Created

Viewing 11 posts - 7,351 through 7,361 (of 7,361 total)

  • 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.

  • RE: You just might be a DBA if.....

    ... change an sa-password without even blinking an eye

    ... keep a server up and running without even being consulted by the rest of the world

    ... make a backup-copy of your...

  • RE: SQL tuning moving forward

    In Tsql the "show [estimated] accesspath"-options are great to check if they match whatever you've supposed it was going to do. This works fine for single query tuning. When using...

  • RE: SQL 2000 Service Pack 2

    I've just noticed that my VMsize seems a bit high. (700mb memusage / 1100mb VMsize)

    Still searching why.

    Jobi

Viewing 11 posts - 7,351 through 7,361 (of 7,361 total)