Forum Replies Created

Viewing 15 posts - 1 through 15 (of 60 total)

  • RE: IN List (How many maximum?)

    Thanks everybody for your ideas. I had thought the problem was the number of vars in the IN list but probably the total size of the SQL statement was the...

  • RE: IN List (How many maximum?)

    Yes, it is dynamic sql generated by Cognos. I havent been able to get the sql statement so I can run it in QA and optimize it.

  • RE: IN List (How many maximum?)

    Reason for this method is, the query is from a COGNOS report prompt. When a user selects a contractor, a distinct list of recipients is generated and the only option...

  • RE: Wrong rowcount in properties

     

    Try using dbcc updateusage.

    --JP

    -----------------------------------------

     

    This worked. Thanks JP.

    I thought there must be a simple solution.

  • RE: Wrong rowcount in properties

    Just tried, didn't fix it.

  • RE: Wrong rowcount in properties

    Thanks, I already tried that with no luck.

  • RE: Large DB backup stumper

    Wow.

    I don't know much about virus scanners. Our Network Admin installs them and handles firewall issues.

    We are running eTrust on that server.

    Is there any whitepaper or kb article that...

  • RE: Large DB backup stumper

    I rescheduled the backups to run this weekend well after the system backups are finished.

    Thanks for the suggestions.

  • RE: sql agent error from database backup plan

    Sorry, neglected to include this in last post.

    Check your database options to see if the recovery method hasn't been set to simple. This will cause a tran log backup to...

  • RE: sql agent error from database backup plan

    If you right-click on the Maintenance plan, then click maintenance plan history and find the job that failed and double-click it, you should get a much better error message.

    Or you...

  • RE: Lost Primary Keys

    Instead of using the 'copy tables...' from the source database, use 'copy objects and data...' from the source database. There is an options button that allows you to include primary...

  • RE: Numbers stored as text - Excel to SQL- DTS

    I just experienced a somewhat similar problem yesterday importing Excel into a SQL 2000 table. The SSNs that didn't have hyphens loaded properly but the the ones with hyphens (123-45-6729)...

  • RE: dbo problem

    I finally got back to fixing the ownership.

    Basically, I am having the developers create the procedure with dbo as the owner.

    CREATE PROCEDURE [dbo].[spRAB_test] AS

    SELECT TOP 100 * FROM cntrl_Client

    GO

    Then I...

  • RE: dbo problem

    Thanks for all the great responses.

    This has been one Frantic Friday so I haven't had a chance to test them yet.

    I am using SQL2000.

  • RE: stored procs slow after SQL2K upgrade

    I did run execution plans and they used index seeks extensively.

    Here is what we ended up doing.

    The developer was joining several tables; he used 5 Left outer joins and 4...

Viewing 15 posts - 1 through 15 (of 60 total)