SqlServerKudos - Stories tagged with benchmarking
1
kudos
spam Kudos Remove

SQL Server do not use PROFILER, use Server side trace to upload to table!

published 25 days, 12 hours, 24 minutes ago posted by sasa 34 days, 13 hours, 16 minutes ago
Sunday, August 15, 2010 4:28:29 PM GMT Friday, August 06, 2010 3:37:13 PM GMT
As a followup questions from the post SQL Server Profiler: System is low on disk space on drive 'C'? here I had a feedback of how to save the server-side trace to a table? Well there is no direct path to do so, rather a roundabout method of once you have collected the trace using server-side method, open up the collect trace file in Profiler and click on File --> Save As --> Trace Table (see below): The reason it was disabled that I was already performing the Save-To-Table operation, as you...(read more) (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: benchmarking, Best Practices, DBA, disk space, server side, SQL Server, table, trace, XML
1
kudos
spam Kudos Remove

SQL Server Management Data Warehouse 3 data collectors - useful facts

published 41 days, 13 hours, 34 minutes ago posted by sasa 49 days, 15 hours, 5 minutes ago
Friday, July 30, 2010 3:18:27 PM GMT Thursday, July 22, 2010 1:47:50 PM GMT
Back until SQL Server 2005 days there was a high demand for third party tools and scripts to collect the data based upon the requirement, analyze and produce a report. SQL Server 2008 gets you Management Data Warehouse, a relational database that contains the data that is collected from a server using the new SQL Server 2008 data collection mechanism - BOL is your best friend to get to know more on introduction & How-To in specific to Management Data Warehouse. As it referred it only works from...(read m... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: benchmarking, data collector, management data warehouse, performance monitoring, schedule, SQL Server, sqlagent
1
kudos
spam Kudos Remove

Trace & Troubleshooting performance: take advantage of server side tracing for SQL Server Analysis Services

published 52 days, 14 hours, 20 minutes ago posted by sasa 61 days, 16 hours, 16 minutes ago
Monday, July 19, 2010 2:32:31 PM GMT Saturday, July 10, 2010 12:37:00 PM GMT
Performance is the key aspect for Relational and Analytical databases, similarly processing bottlenecks are quite common within both systems if the configuration has not be set properly. Here are my thoughts & experience during a BI based project design & implementation using SQL Server 2008 version. Here comes next question, what is a proper configuration and how do you indicate that certain configuration is set for optimum performance? Analysis Services service in SQL Server 2008 provides...(read more) (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: Analysis Services, benchmarking, Best Practices, export, Performance, profiler, SQL Server, trace, xmla
1
kudos
spam Kudos Remove

Leverage Query and Index performance with MAXDOP/Max Degree of Parallelism option in SQL Server

published 68 days, 15 hours, 31 minutes ago posted by sasa 77 days, 14 hours, 57 minutes ago
Saturday, July 03, 2010 1:21:36 PM GMT Thursday, June 24, 2010 1:56:13 PM GMT
No matter how best you adopt the indexing practices, few times you have to tweak the resources to obtain optimized performance. This is where a degree of parallelism needs to be applied for your complex/large resulted queries on your SQL Server, having a multiple CPU based server is a quite common criteria. By design SQL database engine with more than CPU detects the best degree of parallelism, that is number of processors employed to run a single statement, for each parallel plan execution. Unless...(re... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: benchmarking, best practice, DBA, latches, max worker threads, maxdop, numa, parallel execution, Performance, performance monitoring, Query, SQL Server, threads
1
kudos
spam Kudos Remove

SQL Server SSIS package performance series - resolve the low-memory conditions

published 135 days, 20 hours, 32 minutes ago posted by sasa 140 days, 21 hours, 42 minutes ago
Tuesday, April 27, 2010 8:20:33 AM GMT Thursday, April 22, 2010 7:10:49 AM GMT
SSIS Packages are integral part of database management activities, that all ETL based activities can be managed efficiently. The primary usage for these packages is to manage the movement of data from one place to another. To do that, the package needs to know where it is moving data from and where it is moving data to. Now a days the environment of source & destination server is not limited to a network or between 2 systems, it is diversified into global locations that typically enables Integration...(r... (more)
category: News | clicked: 1 | comment | | source: sqlserver-qa.net
tags: access, benchmarking, Best Practices, low memory, package, perfmon, Performance, SQL Server, SSAS, SSIS
1
kudos
spam Kudos Remove

SQL Server Manageability - Choose Analysis Services database backup strategy

published 150 days, 21 hours, 42 minutes ago posted by sasa 160 days, 17 minutes ago
Monday, April 12, 2010 7:11:11 AM GMT Saturday, April 03, 2010 4:35:38 AM GMT
Until SQL Server 2005 performing a backup of Analysis Services database was a troublesome, not like DB engine database backup statements. As said above 2005 version onwards the backup and restore operations are an integral part of the Analysis Services infrastructure, as the backup operation has been completely rebuilt. Look at the diagram that was referred in one of the Technet article that shows the interaction between Analysis Services and backup and data files: Behind the scens the operation...(read ... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: Analysis Services, aso, Backup, benchmarking, Best Practices, command line, databases, holap, molap, Performance, rolap, SQL Server
1
kudos
spam Kudos Remove

SQL Server Memory Cache - take help of DMV for optimal query plans

published 189 days, 23 hours, 27 minutes ago posted by sasa 197 days, 2 hours, 3 minutes ago
Thursday, March 04, 2010 5:25:55 AM GMT Thursday, February 25, 2010 2:50:20 AM GMT
SQL Server query optimization and keepup of performance is not a black-art, it can be achieved in a fair manner if you treat your queries with plans with a are reused or recompiled plans that can help you design well-performing applications. There are ways to add a plan or data to the SQL Server cache or to remove a plan or data from SQL Server cache, but these techniques are only recommended for testing or troubleshooting purposes. The key point is more you understand about optimal query plans,...(read ... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: benchmarking, best practice, BOL, cache, configuration, Memory, plan guide, Query, Security, SQL Server, technet
1
kudos
spam Kudos Remove

Build an Alert mechanism by using Analysis Management Objects (AMO) - implement SQL Server 2008 OLAP Best Practices

published 203 days, 23 minutes ago posted by sasa 209 days, 1 hour, 43 minutes ago
Friday, February 19, 2010 4:29:33 AM GMT Saturday, February 13, 2010 3:09:54 AM GMT
SQL Server 2008 offers Analysis Management Objects (AMO) a complete library of classes designed to manage an instance of Analysis Services from a client application in managed code under the .NET Framework version 2.0. What I believe on the usage of these AMO in Analysis Services 2008 will alert you whenever best practice is not being followed: suggestions and warnings are delivered by AMO and are identified by a curvy blue line underneath the object in question. The message is displayed when you...(read... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: amo, Analysis Services, benchmarking, Best Practices, Books Online, management objects, Security, SQL Server
1
kudos
spam Kudos Remove

SQL Server - SSIS package transformation performance issues, follow up

published 209 days, 53 minutes ago posted by sasa 215 days, 15 hours, 38 minutes ago
Saturday, February 13, 2010 3:59:54 AM GMT Saturday, February 06, 2010 1:15:07 PM GMT
To followup from The buffer manager failed a memory allocation call for 20485670 bytes, but was unable to swap out any buffers to relieve memory pressure blog post, here are few findings that I would like to share. When you see that SQL Server instance throws the error as per above blog post, the amount of memory that can trigger this issue varies for different computers. If the package is really handling huge number of rows such as millions of rows during import/export operations, then allocate...(read ... (more)
category: News | clicked: 0 | comment | | source: sqlserver-qa.net
tags: benchmarking, Best Practices, etl, Memory, Monitoring, perfmon, Performance, SQL Server, task manager
1
kudos
spam Kudos Remove

No politRics here, comparison of a RDBMS product for best benchmarks and delivers trusted results?

published 347 days, 15 hours ago posted by sasa 350 days, 23 hours, 36 minutes ago
Sunday, September 27, 2009 1:52:35 PM GMT Thursday, September 24, 2009 5:16:49 AM GMT
Introduction This is the first post of Facts and Fixtures section here, as a good start I'm beginning this blog section that I could use some 'real world' opinions here, as you can see on this site which is a standard community type site with a motto of 'Knowledge Sharing Network'; being a found of this network I believe in providing real-world facts and figures to my community and users in Cyber World. Every one has got right to share their thoughts and opinion, but at the same it is not a 'good...(read... (more)
category: News | clicked: 1 | comment | | source: sqlserver-qa.net
tags: benchmarking, competition, editions, features, interop, marketing, mysql, RDBMS, results, SQL Server