Forum Replies Created

Viewing 15 posts - 14,476 through 14,490 (of 18,923 total)

  • RE: Stored Procedure.

    Just make sure that the date is kept is numerical order in the db, and that you send the parameters in numerical order. Unless the order is relevant to...

  • RE: Insert data problem

    Sorry for the delay :

    DECLARE @demo table (RowID int not null identity (1,1) primary key clustered, name varchar(10) not null)

    Insert into @demo (Name)

    Select 'cats'

    UNION ALL

    Select 'dogs'

    UNION ALL

    Select 'birds'

    UNION ALL

    Select...

  • RE: Dynamic Update

    There's still the question of why you think you need dynamic sql here...

  • RE: Multiple inserts

    I just tried to create it and it popped the errors. You can do that in enterprise manager or in query analyser. Also you need to finish the...

  • RE: Stored Procedure.

    I'm not sure this is what you need but let's see :

    CREATE PROCEDURE dbo.test (@ID int,@1 smallint,@2 smallint,@3 smallint,@4 smallint,@5 smallint, @MystNumber int, @Match bit output, @Mystery bit output)...

  • RE: debug too in SQL Analyzer

    Sorry... no clue how to solve that problem. Can you give an exemple of the code that makes it fail?

  • RE: debug too in SQL Analyzer

    Open query analaser, connect to server, expand the db in the objects browswer, expand the sps, right click, debug. then you'll have to input the parameters of the proc,...

  • RE: Removing embedded duplicate rows

    That's just part of her disguise.

  • RE: Insert data problem

    Just go to the linked server and do the insert from there... It's gonna be faster that way... and won't take a loop.

  • RE: Removing embedded duplicate rows

    Time for some more constructive comments... Can you clean up the data before it's too late?

  • RE: not enough storage

    Is tempdb full?

    Are the db files set to a fixed size?

  • RE: Insert data problem

    Yup .

    And I just thaught of a few more :

    How many relations do you have on that tables?

    Do you have insert triggers?

    Do...

  • RE: Dynamic Update

    I'm gonna go on a limb here and assume that there's more to the script. Can we know why you think you need dynamic sql here?

    Cause if that's all...

  • RE: How to delete subform data along with main form

    You can either use a stored proc to do the delete from the main form (and manually delete from all 4 tables). Or you can use on delete cascade...

  • RE: Insert data problem

    No offense but inserting only 35k records shouldn't take long. How large is the table?

    How many indexes are there on the table?

    What's the Primary/key, clustered index?

    How long does it...

Viewing 15 posts - 14,476 through 14,490 (of 18,923 total)