Viewing 15 posts - 2,596 through 2,610 (of 5,843 total)
You REALLY CANNOT do clustering or "always on" based on some forum posts. PLEASE do yourself a favor and get some professional help!!
April 19, 2013 at 12:15 pm
I concur Craig. Rigorous testing will ABSOLUTELY prove that the OR stuff is MUCH worse performing than a dynamic sql solution over the full variety of input values. ...
April 18, 2013 at 11:42 am
SalvageDog (4/18/2013)
April 18, 2013 at 8:09 am
Please provide scripts for all tables/triggers involved. I am also a bit unclear - are you trying to actually SEND the email from a trigger or queue up a...
April 18, 2013 at 7:55 am
Given the really basic nature of the questions you are asking I feel you should REALLY get someone experienced and knowledgeable to help you determine what your HA/DR/read-only scale-out needs...
April 18, 2013 at 7:53 am
I have a Web2.0 client that is using it across the board (SQL Servers, middle tier servers and web servers). Nice stuff it seems, although I am just scratching...
April 17, 2013 at 10:44 am
Good points Jeff. I would definitely look at pre-populating the concatenated objects as temp tables. I had that in my notes I took while looking at alternatives for...
April 13, 2013 at 11:37 am
eseosaoregie (4/13/2013)
thanks for the responses. I will try that alternative approach and let you know what my results are. CLR came up when I was discussing this with a...
April 13, 2013 at 9:41 am
The way you have done the SELECT (SELECT...), (SELECT..) ... FROM forces those massive nested loop joins on 900K rows and the logical IO from those is stunningly high.
First, make...
April 13, 2013 at 9:16 am
Mike Byrd (4/12/2013)
April 13, 2013 at 8:25 am
praveen_vejandla (4/9/2013)
Hi,Is Parallel Data Warehouse feature of SQL Server 2008 R2 targeted only for OLAP/BI impementations?
Can we use it for hosting OLTP databases as well?
Thanks.
ABSOLUTELY NOT!! It is purpose...
April 11, 2013 at 3:06 pm
Thanks for the feedback on this. Did they post a public hotfix yet or is it still a private build? If the latter, please post the link here.
April 11, 2013 at 7:08 am
My addition to this thread is to inquire why you used full integers for your surrogate keys. Do you REALLY need 4.2BILLION possible values? I bet not. ...
April 9, 2013 at 7:47 am
Phil Parkin (4/7/2013)
TheSQLGuru (4/6/2013)
Please put the stuff up as a TEXT document. I don't download files that can run code. :hehe:
Word's .docx files cannot run code, as far as...
April 7, 2013 at 4:15 pm
winmansoft (4/6/2013)
SELECT session_id AS SessionID,
wait_duration_ms AS Wait_Time_In_Milliseconds,
resource_description AS Type_of_Allocation_Contention
FROM sys.dm_os_waiting_tasks
WHERE wait_type LIKE 'PAGELATCH_%'
AND (resource_description LIKE '2:%:1'
OR resource_description LIKE '2:%:2'
OR resource_description LIKE '2:%:3')
I got no...
April 6, 2013 at 5:56 am
Viewing 15 posts - 2,596 through 2,610 (of 5,843 total)