Forum Replies Created

Viewing 15 posts - 7,291 through 7,305 (of 7,472 total)

  • RE: Insert into select from taking hours (URGENT))

    Why perform the shrink database if you've truncated the tables and are planning to load ?

    build your load-data sorted on the tables clustered index and then load.

    you could also put...

  • RE: Stored Procedure fails on shared server

    1.5 ct

    maybe you could try to drop/create the proc with QA at your server ?

    This could solve dependant settings (that are stored with the sp)

    Edited by - alzdba on 12/16/2003...

  • RE: Help! Delete operation is VERY SLOW

    - Log Simple does mean it only keeps the log-data until commit is done.

    - Maybe index b.recstatus and force the use with hint.

    - To keep log-chunks low you could make...

  • RE: Insert into select from taking hours (URGENT))

    - If you can avoid lock-escalation, do so.

    So set a table lock when you start loading.

    - You can have autgrowth active, but if you detect space may be allocated during...

  • RE: Wrong QOD 16-12-2003

    correct.

    Should be :

    CREATE VIEW v_selectarticle

    AS

    SELECT TOP 100 PERCENT article_id, headline FROM ARTICLES

    ORDER BY article_id desc

  • RE: Database Scripting Issues

    This is a long shot, but maybe you could download a trial copy of erwin(CA) or another dbcompare-tool, reverse engineer your scripted db and compare it to a reverse engineered...

  • RE: immediate execution of job via SP or ASP

    If you no longer want the jobownership-burden to be able to start a job, create an alert which you let start the job. So when you want to start your...

  • RE: Compress tables or filegroups

    IMO this is not supported for sqlserver.

    (unlike DB2)

    What you could do is alter the clusterd index of those partitioned-view-parts to 100% fill and rebuild it. Keep in mind to put...

  • RE: Search and replace data in a column

    I think I've read this in a server-migration descussion/whitepaper.

    There is a update sysjobs script which puts the new servername in the "originatingserver"column.

    If I'm correct all it took was just a...

  • RE: Comments and Bugs on New Design

    FYI: The replies counter in forums is not correct. It goes from 0 to 2.

    Is there a way to Unsubscribe from a topic notification ?

  • RE: Database Scripting Issues

    maybe this helps :

    select o.name

    , c.text

    FROM dbo.sysobjects O

    inner join dbo.syscomments C

    on O.id = C.id

    and O.xtype = 'V'

    where C.text like '%CREATE VIEW %'

  • RE: Comments and Bugs on New Design

    when opening a page I already start scrolling down before it is complete.

    When it completes, it scrolls to top.

    Can you avoid that?

  • RE: Problem with "WITH CHECK OPTION"

    just my 2ct

    Could you elaborate why your update statement would not qualify to be done using this view ?

    If the update works, I presume you'll still find these data through...

  • RE: Comments and Bugs on New Design

    - do you all have 56" screens ?

    Where 's the time we had automatic wrapping ? I don't like to be scrolling horizontal.

    - I also get some...

  • RE: QOD 21 Nov

    hanslindgren:

    quote:

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

    Oki, in your opinion, what is application needs? Are they never relying on queries?

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

    Of Course it's ALL about queries ! But it's a tradeoff as to which one(s) will be...

Viewing 15 posts - 7,291 through 7,305 (of 7,472 total)