Viewing 15 posts - 3,061 through 3,075 (of 5,843 total)
If you really need very large scale SSAS size/performance I would definitely stick with the newest edition of SQL Server you can move to. They have improved scalability and...
February 9, 2012 at 5:51 am
WDT3 (8/29/2011)
My company is upgrading to SS 2008 R2 as well as a new server and data=storage architecture. By end of the year we will be...
February 8, 2012 at 7:20 am
this will almost certainly be best solved with an EXISTS type of query, but as others have said you will need to provide better inputs for us to help you...
February 8, 2012 at 7:17 am
1) use ola.hallengren.com's maintenance suite. free, documented and awesome
2) track what gets fragmented and adjust fill factors appropriately to avoid too much fragmentation between index maintenance interval
February 8, 2012 at 7:12 am
Mark-101232 (1/18/2012)
If you can change the INSERT, you don't need the trigger at all
INSERT INTO Customer(CustomerId,Name,Value,Percentage)SELECT CustomerId,Name,Value,dbo.GetPercentage(Value)
FROM CustomerTemp
Solving the problem at the source - I like it!!
February 6, 2012 at 8:41 am
I cannot count the number of times I have seen customers implement partitioning (an ADVANCED and COMPLEX feature) only to have it not help or like you are seeing make...
February 6, 2012 at 8:38 am
John Burris (2/3/2012)
February 6, 2012 at 8:33 am
Tempdb12 (2/1/2012)
February 6, 2012 at 8:27 am
Hey Bram - do your customer a favor and hire a professional performance tuning consultant to find and fix the cause(s) of bad performance at this client. You can...
February 6, 2012 at 8:25 am
vijay82 (1/31/2012)
We got a isuue that user is facing a performance problem.?
i have checked and don't find any issue in the errorlog and no blockings. i have checked the index...
February 3, 2012 at 8:14 am
madhu-686862 (2/17/2009)
We have Raid 10 SAN storage drives.
Disk lay out as below:
D:datafiles
E:Secondary data files
F:log files
Z:Backup Drive
and the instance is clustered.
I did not understand why Iam getting high disk...
February 3, 2012 at 8:12 am
You must absolutely NOT do this if you expect any type of performance and concurrency:
AND SubId = COALESCE(@SubId,SubId)
AND CustId = COALESCE(@CustId,CustId)
AND Reference = COALESCE(@Reference,Reference)
AND CustOrderNo = COALESCE(@CustOrderNo,CustOrderNo)
This...
February 2, 2012 at 8:01 am
They totally ROCK, but you MUST get enterprise-grade ones. I think FusionIO rules that roost right now, and for good reason. I have been recommending those to clients...
February 1, 2012 at 11:19 am
Altogether now: PAUL WHITE ROCKS!!!! :hehe:
February 1, 2012 at 11:18 am
ananda.murugesan (1/27/2012)
So will decide to change disk configuration for before implementation SQL server 2008 in OLTP environment
Total five HD 300x5 15K RPM SAS, and get...
January 31, 2012 at 7:16 am
Viewing 15 posts - 3,061 through 3,075 (of 5,843 total)