Forum Replies Created

Viewing 15 posts - 1,381 through 1,395 (of 2,085 total)

  • RE: Any general reason a SP runs slower via a job vs. by itself?

    That is quite odd since it is a parameterless procedure. Does the executionplan changes when you execute it under sqlagent's permission? Is there additional locking? Are the connectionsettings the same...

  • RE: SQL/ ODBC AND JOINING TABLES

    What is the error you get? It looks fine at first sight (although you are not specifying the owner of PROD_MAST_SUBS and are not using stored procedures for abstraction)

  • RE: hi

    an example

    ALTER TABLE dbo.Table1

     DROP CONSTRAINT CK_Table1

  • RE: batches in sql server2000

    Batches are a whole serie of sql-statements sent at once by the client.

    Stored procedure can contain a whole serie of sql-statements stored on the server.

    Pro batchs: some flexibility (like search-commands)...

  • RE: Insert taking too long

    Also try to monitor the locks on the table. Any transaction taking longer than required?

  • RE: hi

    Drop constraint:

    ALTER TABLE table DROP CONSTRAINT constraintname

    Describe constraint:

    sp_helptext [ @objname = ] 'constraintname'

  • RE: can''''t connect to sql server from remote computers

    Greetings,

    1. What version of sql server is it and which servicepack do you have applied to it. SP3a or higher is required for sql server 2000 on a windows 2003...

  • RE: Data transfer between databases with different structures

    the insert-sequence & select-sequence are out of order

    insert-sequence: status at the end

    select-sequence: status in the middle

    move MAX(CASE WHEN HEADER = 'AFS' AND PROPERTY = 'Membership Number' THEN STATUS...

  • RE: Process still runnable

    It should die soon after that. Do you check it with sp_who?

  • RE: Best Practices - Analysis of Client''''s DB Server

    You could use the sql server best practices analyzer on the db. It will report which stored procedures,views needs some work. Like owner not specified ...

    Perhaps you will have access...

  • RE: Process still runnable

    The process needs to be kept alive till the rollback is completed (which can also take a long time).

    Any clues why the vb app suddenly started to work slower?

  • RE: Slow activities on db after long export import process

    Can you check if any connections are left open? Maybe there is one with a transaction left open/select pending. (last batchtime in the weeked)

    For a custom temporary db, perhaps you...

  • RE: Microsoft Access Write Conflict

    Make sure the bit-field doesn't allow nulls

  • RE: Table locks and views

    Not sure if it may help. I've created a querydef that called a stored procedure. The access-reports recordsource would be then that querydef. Not sure if I've layered another querydef...

  • RE: SQL to Oracle

    Naming in Oracle is a little different.

    Try

    select count(*) from [linked_servername]..[OracleSchemaName].[Viewname].

Viewing 15 posts - 1,381 through 1,395 (of 2,085 total)