Forum Replies Created

Viewing 15 posts - 796 through 810 (of 1,098 total)

  • RE: INsert from an SP

    Execute SELECT @@TRANCOUNT to see if there is an opened transaction. If you get <> 0 then close it with commit or rollback (this is up to you), and then...

  • RE: Sql 6.5 & sql 7.0 in the same server

    No you can't. You could have an instance of SQL 2000 and another of 6.5 or 7.0.

    Always installing first the 6.5 or the 7.0

  • RE: SQL Jobs getting Stuck

    But how did you create that schedulle?, did you specify to start at one specific time?

  • RE: SP Doesn't Return Recordset when using Temp Tables

    Also check the scope of the #temp table. Because that table is only visible to that connection. Check changing the temp table to a global temp table creating it like...

  • RE: DTS/NT User

    If you run the DTS inside a job with windows autenthication, then it will run with the SQL Agent Login account.

    To change the local system account, use your login to...

  • RE: SQL Jobs getting Stuck

    The jobs are running with an schedulle you specify at that out, or you define an idle condition, and you are letting them run when the CPU is idle?

  • RE: The agent is suspect

    Yes it's a timeout problem, a connection problem. Re start the agent. Agree to set the job to notify you.

  • RE: The agent is suspect

    I have that error usually because of out slow WAN connection. Is not a big problem, maybe if you try stating the agent again later. This was the distribution agent...

  • RE: audit triggers and @@identity woes

    you could also execute a select top 1 intid from test ORDER BY intid DESC

    OR SELECT MAX(intID) FROM Test in your stored procedure

  • RE: Chaining Replication

    I never use a situation like yours, the only problem I can think of is the one I told you. Can you try instead of using merge replication, using transactional...

  • RE: audit triggers and @@identity woes

    The value from the test table is different than from the inserted table?

  • RE: Replication Problems / questions

    I have 74 subscribers to one publisher, and is very common that I have those kind of problems, since some months ago (before I started) they lost the data with...

  • RE: Chaining Replication

    Does all kind of replication involves the same articles, I mean the same tables?

    Because publisher A will undone any changes that the subscriber D made and that will be replicated...

  • RE: Restoring .BAK file from Network

    What you have to do is map the network location within SQL server. If you map it from windows (DOS), SQL server doens't recognize the mapping so it won't see...

  • RE: SQLServerCentral Wish List

    sounds good for me, especially point B.

Viewing 15 posts - 796 through 810 (of 1,098 total)