Forum Replies Created

Viewing 15 posts - 5,791 through 5,805 (of 5,841 total)

  • RE: Regarding blocking in sql server 2000

    > Somebody told me that microsoft doesn't recommand to use replication and trigger together. Is that true? How can I work around? Thanks.

    I haven't heard such, although that certainly...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: best size for TEMPDB

    1) Sizing tempDB depends on both the amount of data on the server as well as the access patterns on it.  As iwg mentioned aggregations and hashing on joins as well...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: FILEGROUPS

    1) Cache Hit Ratio of 71 is REALLY bad.  My guess is that either you have WAY too much data for your server's RAM size or (more likely) you are...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: FILEGROUPS

    1) I doubt very much that your customer search stuff is as optimized as you think it is and that there isn't a good bit more performance to be gained...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: stored procedure within stored procedure

    >You can load the results returned by a stored procedure into a table, including . . . table variables if necessary

     

    Actually this is incorrect.  You cannot do:

    INSERT @TabVar EXEC dbo.mysproc

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: 2 Itanium2’s v 4 Xeons?

    I would go with 4 dual core Xeons because that gives you 8 simultaneous threads that can be chewing on data in the likely parallel operations that will be common...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Which is the best choice based on STATISTICS results?

    I advise all of my clients to avoid the Database Tuning Advisor like the plague.  I have seen it do unbelievably bad things to a database in the hands of...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Passing datatable (collection) as parameter in stored procedure???

    1) Cursors are passable as parameters, although VERY inefficient.

    2) You could shred the data into XML and pass a text type parameter with the xml, reshread it in the sproc...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Search Optimisation

    Consider computed columns and/or indexed views as possible solutions.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Advise on server configuration, new to SQL 2005

    1) I strongly recommend hiring a local sql server expert for a few hours to evaluate your server, data, access patterns, etc and help out with the initial configuration.  It...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: problem in usin distinct clause... can any1 help me..??

    1) You should always post table create statements as well as some sample data so we on the forums can have a better chance of helping out.

    2) Since removing the...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Decentralization to Decrease Latency

    I don't know of anything that will help out here, other than hiring an expert who can guide/assist you in this endeavour.

    Best of luck with your project!  Sounds like fun. ...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: blocking on Parameters refresh

    Doing a parameter refresh like this is suboptimal coding.  You should explicitly declare/populate all parameters when accessing sprocs.

    I noted in the referenced support article that DBCC CHECKDB only flushes the proc...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Performance Issues

    1) Raid 5 is HORRIBLE for the boot (C) drive.  I assume your OS page file is there, as well as tempdb.  RAID 5 is suboptimal for both of those.

    2)...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Replication v Log Shipping v Mirroring

    I would recommend either reading a book covering these topics or hiring a professional to come in and give you a review and written suggestions using your systems and requirements. ...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

Viewing 15 posts - 5,791 through 5,805 (of 5,841 total)