Viewing 15 posts - 5,791 through 5,805 (of 5,841 total)
> 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
April 25, 2007 at 6:30 am
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
April 20, 2007 at 7:27 am
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
April 19, 2007 at 11:36 am
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
April 19, 2007 at 8:19 am
>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
April 19, 2007 at 8:10 am
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
April 16, 2007 at 2:08 pm
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
April 15, 2007 at 7:51 am
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
April 3, 2007 at 8:51 am
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
April 3, 2007 at 8:47 am
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
April 3, 2007 at 8:42 am
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
April 3, 2007 at 8:35 am
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
April 3, 2007 at 8:31 am
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
April 1, 2007 at 6:34 pm
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
April 1, 2007 at 6:13 pm
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
April 1, 2007 at 6:04 pm
Viewing 15 posts - 5,791 through 5,805 (of 5,841 total)