Forum Replies Created

Viewing 15 posts - 11,401 through 11,415 (of 18,923 total)

  • RE: Query performance to linked server

    It's quite possible and actually the best possible plan you can have.  So unless you re getting unexpected results, you are golden to move forward with it.

  • RE: Execute a stored procedure from Access

    Are you telling us that the proc fails, or does not insert data without throwing an error??

    You can check if the rowcount (@@rowcount) is greater than 0 in the proc. ...

  • RE: query governor cost limit option

    SET PROTECT_PRODUCTION_DATA_INTEGRITY_MODE ON --> this setting should be ON at all times !

     

    Thanx Rudy, I hadn't laughed that much in a long time.  Not that it's funny topic...

  • RE: MSDE vs MS SQL

    Well again the question stands.  Do the users complain about poor performance on that application?  If they only wait like half a second a few times a day and it's...

  • RE: Question on sysindexes

    Thanx for the link... been wanting to send it to a few users but I never had time to search for it!!!

     

    Is it a revised version from the CD version...

  • RE: Instant Querying

    I'm almost glad to see that I was not the only one have slowliness issues with SSMS.  Is it really that slow???

     

    And yes please keep QA working with at least...

  • RE: Upgrade 2000 to 2005; database still 2000

    Are you sure that you are connecting to the right server instance.  Is it possible that the upgrade tool in fact creates another server instance and that both the old...

  • RE: MSDE vs MS SQL

    2 questions :

    1 - How many users / programs are hitting the server at the same time (talking at the same millisecond here).

    2 - Is it too slow now...

  • RE: DBCC INDEXDEFRAG

    The defragmentation made the indexes more usable because they would get faster data access than doing a table scan.  This means that the server changed its execution plan on the...

  • RE: Upgrade 2000 to 2005; database still 2000

    EXEC sp_dbcmptlevel 'DbName'

     

    But since you don't know about that, I'm assuming you didn't manually alter it, so that would make them level 80.

     

    However I have no clue on how to...

  • RE: SP should return null, but it is returning something else

    From the original code :

    if @OUT is not null or ltrim(rtrim(@OUT))<>''

    For the statement to return true, only 1 of the 2 parts need to be true, not both...

  • RE: Question on sysindexes

    If I may post some of the same details :

     

    CREATE TABLE [tblABC] (

              [fldID]  uniqueidentifier ROWGUIDCOL  NOT NULL CONSTRAINT [DF_tblABC_fldID] DEFAULT (newid()),

              [fldNote] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,

              [fldDate]...

  • RE: How do you use a variable for the table name in SET IDENTITY_INSERT?

    Put everything in the dynamic sql statement...  I'll look more into Monday when I have access to a server.

  • RE: SP should return null, but it is returning something else

    as we said '' is NOT NULL so it will always return true.

  • RE: SP should return null, but it is returning something else

    set @error2 = ''

    there for @error2 IS NOT NULL

    this should do it :

    IF NULLIF('', @OUT) IS NOT NULL

    begin

    --mail

    end

Viewing 15 posts - 11,401 through 11,415 (of 18,923 total)