Forum Replies Created

Viewing 15 posts - 1,636 through 1,650 (of 1,654 total)

  • RE: configure SQL Alert

    You changed the service account of the SQL Agent to a domain account but not the MSSQLService account. While notifications for operators are handled by SQL Agent Mail, xp_startmail, xp_sendmail...

  • RE: SQL2K replication accross WAN

    I'd go for merge replication since several updates of the same record will result in just one update at the subscriber. Transactional replication would create a lot more traffic.

    About the...

  • RE: New Database creation

    Why so complicated? Can't you just attach the mdf file directly. SQLServer will automatically create a new ldf.

    M

  • RE: xp_sendmail rearranges Print and Select

    The SQL Server executes your code it sees each print statement as and the select as a separate query. Since there is no flow control, there's no guarantee in which...

  • RE: Merge - Partial record sents

    Sub A won't get any of the changes being uploaded from Sub B. The reason is that SQL Server first has to upload all the data from the subscribers and...

  • RE: How can I pull this max ID row?

    If you need just the Id and the ACCTname you can do a simple group by.

    select max(id) as ID,AcctName from Table1 group by AcctName

    In case you need all the columns...

  • RE: Missing SQL Performance Counters -

    I've seen this happening with SQL 7.0 several times and the reason usually was that the SQL Server Service account wasn't a member of the local Administrators group.

    Check your service...

  • RE: Merge replication problem

    I've seen that message a couple of times myself and as far as I know it's a locking issue. The mergeagent tries to read some records at the subscriber which...

  • RE: Disabling replication leaves "junk" behind

    The short answer is Yes.

    Always remove the subscriptions first, otherwise you can end up with a very annoying situation because SQL Server sees the database still as part of...

  • RE: error 20598

    To be honest I don't know exactly what your problem is because I can't find either the error number 20598 nor the stored procedure you name. Which version are you...

  • RE: Replication and TEXT fields

    cch,

    I've seen these messages lot's of times when initializing a replication with (large) text or image columns. Especially if you initialize over a slow WAN link you can expect to...

  • RE: Favourite Tools?

    David, you were asking about a stress tool. Try database hammer, it's part of the SQL Server resource kit.

  • RE: Replication and TEXT fields

    About 1) I meant that you have to check that your application uses these statements including the WITH LOG clause.

    2) This was just an advice in case you have...

  • RE: Replication and TEXT fields

    Actually you can replicate text fields using transactional replication, but because WRITETEXT and UPDATETEXT are by default not logged you might have to check your application. Another problem using text/image...

Viewing 15 posts - 1,636 through 1,650 (of 1,654 total)