User Brent Ozar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:12:45Z http://stackoverflow.com/feeds/user/26837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1069870/how-can-i-efficiently-transfer-data-from-a-vertical-databaselayout-to-a-horizonta/1069905#1069905 0 Answer by Brent Ozar for How can I efficiently transfer data from a vertical databaselayout to a horizontal one. Brent Ozar 2009-07-01T15:43:03Z 2009-07-01T15:43:03Z <p>Break it up into smaller chunks and don't wrap the whole thing in a single transaction. First, create the table, and then do groups of inserts from the old table into the new table. Insert by range of ID, for example, in small enough chunks that it won't overwhelm the database's log and take too long.</p> http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1052991#1052991 0 Answer by Brent Ozar for Database or flat file for 600K records? Brent Ozar 2009-06-27T15:07:37Z 2009-06-27T15:07:37Z <p>My guess is that you're doing transactional inserts: inserts that look like this:</p> <pre><code>INSERT INTO dbo.MyTable (Field1, Field2, Field3) VALUES (50, 100, 150) </code></pre> <p>That'll work, but like you've found, that doesn't scale. In order to push a lot of data into SQL Server very quickly, there are tools and techniques to pull it off.</p> <p>Probably the simplest way to do it is with BCP. Here's a couple of links about it:</p> <ul> <li><a href="http://sqlfool.com/2008/12/bcp-basics/" rel="nofollow">http://sqlfool.com/2008/12/bcp-basics/</a></li> <li><a href="http://sqlserverpedia.com/wiki/BCP_Overview" rel="nofollow">http://sqlserverpedia.com/wiki/BCP_Overview</a></li> </ul> <p>Next, you'll want to set up SQL Server in order to insert as many records as possible. Is your database in full recovery mode or simple recovery mode? To find out, go into SQL Server Management Studio, right-click on the database name, and click Properties. Full recovery mode will log every transaction, but simple recovery mode will run somewhat faster. Are the data files and log files located on separate arrays? How many drives are in each array, and what RAID type is it (1, 5, 10)? If both the data and log files are on the C drive, for example, you'll have poor performance.</p> <p>Next, you'll want to set up your table, too. Do you have constraints and indexes on the table? Do you have other records in it already, and do you have other people querying it at the same time? If so, consider building an empty table for data loads with no indexes or constraints. Dump all the data in there as fast as possible, and then apply the constraints or indexes, or move the data into its final destination.</p> http://stackoverflow.com/questions/1009154/how-to-create-sql-server-table-schema-from-a-xml-schema-with-net-and-visual-st/1011704#1011704 2 Answer by Brent Ozar for How to create SQL Server table schema from a XML schema? (with .NET and Visual Studio 2008) Brent Ozar 2009-06-18T09:23:45Z 2009-06-18T09:23:45Z <p>Disclaimer: I haven't done this myself, but I bookmarked these links a little while ago when I was thinking about doing this. This guy's T-SQL is usually brilliant, so I'd recommend it highly:</p> <p><a href="http://weblogs.sqlteam.com/peterl/archive/2009/03/05/Extract-XML-structure-automatically.aspx" rel="nofollow">http://weblogs.sqlteam.com/peterl/archive/2009/03/05/Extract-XML-structure-automatically.aspx</a></p> <p><a href="http://weblogs.sqlteam.com/peterl/archive/2009/06/04/Extract-XML-structure-automatically-part-2.aspx" rel="nofollow">http://weblogs.sqlteam.com/peterl/archive/2009/06/04/Extract-XML-structure-automatically-part-2.aspx</a></p> http://stackoverflow.com/questions/1011311/mssql-how-do-i-increase-the-size-of-the-transaction-log/1011686#1011686 1 Answer by Brent Ozar for MSSQL: How do I increase the size of the transaction log? Brent Ozar 2009-06-18T09:21:34Z 2009-06-18T09:21:34Z <p>The most important part is the last line of your scenario: "Restore the size of the transaction log." You mean shrink the log back to its original size.</p> <p>This is really dangerous for a lot of reasons, and we've covered them in a couple of stories over at SQLServerPedia:</p> <ul> <li><a href="http://sqlserverpedia.com/wiki/Shrinking_Databases" rel="nofollow">http://sqlserverpedia.com/wiki/Shrinking_Databases</a></li> <li><a href="http://sqlserverpedia.com/blog/sql-server-backup-and-restore/backup-log-with-truncate_only-like-a-bear-trap/" rel="nofollow">http://sqlserverpedia.com/blog/sql-server-backup-and-restore/backup-log-with-truncate_only-like-a-bear-trap/</a></li> <li><a href="http://sqlserverpedia.com/blog/sql-server-bloggers/i-was-in-the-pool-dealing-with-sql-shrinkage/" rel="nofollow">http://sqlserverpedia.com/blog/sql-server-bloggers/i-was-in-the-pool-dealing-with-sql-shrinkage/</a></li> </ul> http://stackoverflow.com/questions/521402/how-do-you-simulate-frequent-database-activity-for-realistic-testing/989773#989773 0 Answer by Brent Ozar for How do you simulate frequent database activity for realistic testing? Brent Ozar 2009-06-13T02:21:56Z 2009-06-13T02:21:56Z <p>There's a few commercial packages that do this. I work for Quest Software, makers of one of the packages, but I'm going to list three because I've worked with all of 'em before I came to work for Quest:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/teamsystem/dd408381.aspx" rel="nofollow">Microsoft Visual Studio Test Edition - it has load testing tools added on. It lets you design tests inside Visual Studio like simulating browsers hitting your web app. Recording the initial macros is kind of a pain, but when you've done it, it's easy to replay. It also has agents that you can deploy across multiple desktops to drive more load. For example, we installed it on several developers' desktops, and when we needed to do load testing after hours, we could throw a ton of computing power at the servers. The downside is that the setup and ongoing maintenance is kinda painful.</li> <li>HP Quality Center</a> (used to be Mercury Test Director and some other software) - also has load testing tools, but it's designed from the ground up for testers. If your testers don't have Visual Studio experience, this is an easier choice.</li> <li><a href="http://www.quest.com/benchmark-factory/" rel="nofollow">Quest Benchmark Factory</a> - this tool focuses exclusively on the database server, not the web and app servers. It captures load on your production server and then can replay it on your dev/test servers, or it can generate synthetic transactions too. There's a <a href="http://www.quest.com/benchmark-factory/freeware.aspx" rel="nofollow">freeware version</a> you can use to get started.</li> </ul> <p>If you know and love Visual Studio, and if you want to test your web servers and app servers, then go with Visual Studio Test Edition. If you just want to focus on the database, then go with Benchmark Factory.</p> http://stackoverflow.com/questions/391585/documentation-for-creating-a-custom-sql-server-data-source-data-provider/989751#989751 2 Answer by Brent Ozar for Documentation for creating a custom SQL Server "Data Source" data provider Brent Ozar 2009-06-13T01:56:05Z 2009-06-13T01:56:05Z <p>That's just an <a href="http://en.wikipedia.org/wiki/Microsoft%5FData%5FAccess%5FComponents" rel="nofollow">ODBC driver</a>. If you build an ODBC driver and install it, any system-wide ODBC driver will show up in that dropdown box. It's not SQL-specific.</p> http://stackoverflow.com/questions/243223/how-do-the-servers-for-fogbugz-handle-load-balancing/989746#989746 0 Answer by Brent Ozar for How do the servers for Fogbugz handle load balancing? Brent Ozar 2009-06-13T01:51:56Z 2009-06-13T01:51:56Z <p>Got a few questions in here so I'll break these out:</p> <p><strong>If a one of the hosting facilities goes down, how can he switch over to the other one?</strong></p> <p>There's several ways to do this, including database mirroring (new in SQL Server 2005), log shipping, and replication. I've recorded a <a href="http://sqlserverpedia.com/wiki/Log%5FShipping" rel="nofollow">podcast on SQL Server high availability and disaster recovery options</a> at SQLServerPedia.</p> <p><strong>(Or is it just going to be a DNS change that will take 24-72 hours to propagate?)</strong></p> <p>Like the other post mentioned, you can set your DNS time-to-live numbers very slow, but the cooler method uses database mirroring. With mirroring, you can set both the primary and secondary server names in your connection string, and your application will automatically try the second server when the first one doesn't respond.</p> <p><strong>How can a single SQL Server instance have so many databases on it? FB has a completely separate database per account. I can't see a single SQL Server instance having more than say 200-250 databases on it! And I'm sure they have more customers than that.</strong></p> <p>The largest SQL Server I've worked with had over a thousand databases, and I've talked to a couple of other DBAs who have worked on systems with more than 2,000 databases on a server. It certainly makes management much more challenging, that's for sure.</p> http://stackoverflow.com/questions/743237/publishing-sql-2005-database-to-remote-host/989741#989741 2 Answer by Brent Ozar for publishing SQL 2005 Database to Remote Host Brent Ozar 2009-06-13T01:46:38Z 2009-06-13T01:46:38Z <p>Got a few questions in here, so I'll break them each out.</p> <p><strong>1)How can I merge these two databases into one</strong></p> <p>Devmania mentioned Red Gate Data Compare, so I'll mention <a href="http://www.toadsoft.com" rel="nofollow">Quest Toad for SQL Server</a>, which also does the same thing. Disclaimer, though - I work for Quest. You can download the v4.5 beta, which is free right now, and it has the data &amp; schema compare functions.</p> <p><strong>and also update all pages with the change occuring in accessing the corresponding database, and then publish it.</strong></p> <p>Unfortunately, nobody's tool is going to change your code.</p> <p><strong>2)I want to rename the aspnetdb to some other name, as I'm getting error when I publish the database with the name aspnetdb to the server, (it says the database already exists, but I was not able to find it). So how can I effectively rename it.</strong></p> <p>Go into SQL Server Management Studio, connect to the database server, right-click on the database name, and click Rename.</p> <p><strong>3)How to publish the merged database correctly to the remote location, do I have to take the connection strings into account as well?</strong></p> <p>Check with your hosting provider, because not all of them will allow SSMS access remotely. If they do, then you'll need to script out your database and then apply it to the remote database. Toad includes the ability to script out the schema and data inside your database.</p> <p><strong>So far since I was the local user, I didn't provide any username and password, but on the site I'd to create a user for the SQL server. So how can I integrate it securely into my project.</strong></p> <p>In SQL Server Management Studio, go into the database, Security, Logins. You can right-click there, create a new login, and use SQL Authentication. Specify the username and password, and you can give the login just the permissions you want. I would use a separate one for your web application that only had db_datareader and db_datawriter, not db_owner. Owner has the ability to change the schema, and your app shouldn't be doing that. In case you get hacked and somebody steals the username/password, at least they won't change your schema.</p> http://stackoverflow.com/questions/93462/mssql-express-db-is-in-recovery-how-to-detect-know-when-it-is/989728#989728 1 Answer by Brent Ozar for MSSQL Express DB is 'in recovery' - how to detect / know when it is Brent Ozar 2009-06-13T01:37:05Z 2009-06-13T01:37:05Z <p>That's kind of a trick question. Instead of connecting to that particular database, you still need to connect to the server itself, but specify a different database. When connecting, your default database might be the one that's in recovery. In that case, you'll need to specify a different database upon connecting, and THEN issue a query to check the database's extended properties.</p> <p>Unfortunately, this means your SQL login will need permissions to that other database you'll be connecting to, AND it'll need permissions to query the database's extended properties.</p> http://stackoverflow.com/questions/165703/how-to-use-datamining-feature-of-sql-server-2008-with-asp-net/989726#989726 0 Answer by Brent Ozar for How to use DataMining feature of SQL Server 2008 with ASP.Net Brent Ozar 2009-06-13T01:35:07Z 2009-06-13T01:35:07Z <p>In a nutshell, you want to:</p> <ul> <li>Build cubes to model your data</li> <li>Build a prediction calculator (or whatever kind of calculator you're looking to use)</li> <li>Expose that via a web service</li> <li>Call the web service in your app</li> </ul> <p>For example, if you want to model whether or not a customer is likely to abandon their shopping card, you would figure out what characteristics of a shopper you want to capture and analyze. You set up your cubes to model what characteristics are indicative of a soon-to-be-bailing-out shopper. During the shopping process, your web app would send the shopper's characteristics to the SSAS server, which would return back a guess about whether or not the shopper is going to abandon the cart. Then your web app can take proactive measures before they leave.</p> <p>All of the steps in here are kinda complicated - your best bet is probably to refine your question to focus on the areas you're responsible for.</p> http://stackoverflow.com/questions/102019/sql-server-2005-multiple-database-deployment-upgrading-software-suggestions/989716#989716 0 Answer by Brent Ozar for SQL Server 2005 multiple database deployment/upgrading software suggestions Brent Ozar 2009-06-13T01:29:10Z 2009-06-13T01:29:10Z <p>As of this writing (June 2009) there's still no product on the market that'll do all this for multiple databases. I work for Quest Software, makers of Change Director for SQL Server, another database change automation system. Ours doesn't handle multiple databases like you're after, and I've seen the others out there. No dice.</p> <p>I wouldn't hold out hope for it either, given the directions I've seen in SQL Server management. Things are going more toward packaged applications being contained in a single database, and most of the code is focusing on that.</p> http://stackoverflow.com/questions/81521/scheduled-web-synchronization-with-ms-sql-server-2005/989713#989713 1 Answer by Brent Ozar for scheduled web synchronization with MS Sql Server 2005 Brent Ozar 2009-06-13T01:26:34Z 2009-06-13T01:26:34Z <p>Denny Cherry, a SQL Server MVP, is writing a replacement for SQL Server Agent.</p> <ul> <li><a href="http://itknowledgeexchange.techtarget.com/sql-server/tag/standalone-sql-agent/" rel="nofollow">Denny's blog about it</a></li> <li><a href="http://standalonesqlagent.codeplex.com/" rel="nofollow">His Standalone SQL Agent project on Codeplex</a></li> </ul> <p>Using this, you would be able to automatically initiate code on a scheduled basis. But it's either this, or writing your own .NET app to kick off jobs. SQL Server Express Edition doesn't include any kind of automated job scheduling.</p> http://stackoverflow.com/questions/39188/repairing-an-mdf-file/989707#989707 0 Answer by Brent Ozar for Repairing an MDF file Brent Ozar 2009-06-13T01:21:19Z 2009-06-13T01:21:19Z <p>The best articles I've seen for repairing database corruption are:</p> <ul> <li><a href="http://www.sqlservercentral.com/articles/65804/" rel="nofollow">Help, My Database Is Corrupt by Gail Shaw</a></li> <li><a href="http://www.sqlskills.com/BLOGS/PAUL/post/Misconceptions-around-database-repair.aspx" rel="nofollow">Misconceptions Around Database Repair by Paul Randal</a> - Paul wrote the DBCC utility when he was working for Microsoft. In fact, his whole blog at SQLskills.com is pretty useful, especially the <a href="http://www.sqlskills.com/BLOGS/PAUL/category/DBCC.aspx" rel="nofollow">DBCC category.</a></li> </ul> http://stackoverflow.com/questions/862133/sql-server-2008-r2/989670#989670 1 Answer by Brent Ozar for SQL Server 2008 R2 Brent Ozar 2009-06-13T01:00:55Z 2009-06-13T01:00:55Z <p>You've got a few different questions in here, so here's each one with the answers:</p> <p><strong>Am I correct, if you had SQL Server 2008, would you have to pay again if you wanted to upgrade to 2008 R2?</strong></p> <p>Yes. Microsoft is taking the approach that you get patches for free (Service Packs and Cumulative Update Packs), but new features cost money. SQL Server 2008 R2 contains new features. If you just want to stay current on patches, check out the <a href="http://sqlserverpedia.com/wiki/SQL%5FServer%5FRelease%5FDate%5FCalendar" rel="nofollow">SQL Server Release Date Calendar at SQLServerPedia.</a> I keep the free patches on there.</p> <p><strong>If you’re already running SQL Server 2008, would you say it’s still worth the upgrade?</strong></p> <p>It depends on what you're using it for. The main focus of 2008 R2 is business intelligence. If you're doing data warehousing or analytics, it'll be worth the upgrade.</p> <p><strong>With regard to programming, is there any extra enhancements/support in there which you’re aware of that will significantly help .NET Products/Web Development?</strong></p> <p>No.</p> <p><strong>I was wondering if anyone had anymore info to share on subject as I couldn’t find nothing on SO about it?</strong></p> <p>It's not even available as a beta yet, so you won't find much in the community. For insider tidbits, search for Project Gemini or Project Kilimanjaro in your favorite search engines. These were the pre-release codes for the big components in SQL Server 2008 R2. Several months ago, I collected some of the <a href="http://www.brentozar.com/archive/2008/10/project-kilimanjaro-gemini-announcements/" rel="nofollow">Kilimanjaro and Gemini stories on my blog.</a></p> http://stackoverflow.com/questions/878128/can-you-recommend-a-sql-server-2008-book-for-developers-that-only-addresses-the-n/878516#878516 0 Answer by Brent Ozar for Can you recommend a Sql Server 2008 book for developers that only addresses the new features? Brent Ozar 2009-05-18T16:15:10Z 2009-05-18T16:15:10Z <p>The new development features in SQL 2008 don't really merit a whole book by themselves, with one exception - geospatial data. If you're using geospatial, then check into specific books on that, but otherwise the improvements aren't really book-worthy.</p> <p>Andy Warren wrote up a short review of one 2008 developer-focused book, but that's the only review I've seen from a SQL expert focusing on a 2008 developer book.</p> <p><a href="http://www.sqlservercentral.com/blogs/andy_warren/archive/2009/03/10/book-review-murach-s-sql-server-2008-for-developers.aspx" rel="nofollow">http://www.sqlservercentral.com/blogs/andy_warren/archive/2009/03/10/book-review-murach-s-sql-server-2008-for-developers.aspx</a></p> http://stackoverflow.com/questions/877857/backing-up-sql-database-for-reports/878505#878505 2 Answer by Brent Ozar for Backing up SQL Database for Reports Brent Ozar 2009-05-18T16:11:07Z 2009-05-18T16:11:07Z <p>Log shipping is a great solution for this. We've got articles about it over at <a href="http://sqlserverpedia.com/wiki/Log%5FShipping" rel="nofollow">SQLServerPedia's Log Shipping section</a>, and I've got a video tutorial on there talking you through your different options. One thing to keep in mind about log shipping is that when the restores happen, your users will be kicked out of the reporting database. </p> <p>Replication doesn't have that problem, but replication is nowhere near "set-it-and-forget-it" - it's time-intensive to manage, and isn't quite as reliable as you'd like it to be. In addition, you may have to make schema modifications in order to use replication. Log shipping is more automatic &amp; stable, but at the cost of kicking users out at restore time.</p> <p>You can minimize that by having two log shipping schedules - one for daytime during business hours, and one for the rest. During business hours, you only restore the data once per hour (or less), and the rest of the time you do it every 15 minutes.</p> http://stackoverflow.com/questions/830123/tsql-parameterized-sproc-question/830158#830158 0 Answer by Brent Ozar for TSQL Parameterized SPROC question Brent Ozar 2009-05-06T15:22:25Z 2009-05-06T15:56:44Z <p>The update command doesn't accept dynamic field names.</p> <p>Instead, what you can do is build a string with the update statement that you want to execute, and then execute it, like this:</p> <pre><code>DECLARE @strToExecute VARCHAR(1000) SET @strToExecute = 'UPDATE MyTable ' IF @UserFieldNumber = 1 SET @strToExecute = @strToExecute + ' SET UserField1 = ' IF @UserFieldNumber = 2 SET @strToExecute = @strToExecute + ' SET UserField2 = ' </code></pre> <p>And so on to build your string, and then execute it.</p> http://stackoverflow.com/questions/435353/full-text-index-comparisons-in-sql-server-2005-express/830316#830316 0 Answer by Brent Ozar for Full-Text Index Comparisons in SQL Server 2005 Express Brent Ozar 2009-05-06T15:55:15Z 2009-05-06T15:55:15Z <p>Here you go, from the excellent Robert Cain:</p> <p><a href="http://arcanecode.com/2007/06/28/getting-started-with-sql-server-2005-full-text-searching-part-3-%E2%80%93-using-sql/" rel="nofollow">http://arcanecode.com/2007/06/28/getting-started-with-sql-server-2005-full-text-searching-part-3-%E2%80%93-using-sql/</a></p> http://stackoverflow.com/questions/820004/integrated-sql-server-authentication-from-untrusted-domain/830302#830302 1 Answer by Brent Ozar for integrated SQL-server authentication from untrusted domain Brent Ozar 2009-05-06T15:51:54Z 2009-05-06T15:51:54Z <p>To rephrase your question, you want to use domain authentication without domains.</p> <p>No, that's not possible.</p> <p>You can set them each up on domains and use trusts between the domains, or you can use SQL authentication.</p> http://stackoverflow.com/questions/822974/how-much-is-the-network-determing-network-overhead-in-sql-server/830197#830197 0 Answer by Brent Ozar for How much is the network - determing network overhead in SQL Server Brent Ozar 2009-05-06T15:31:56Z 2009-05-06T15:31:56Z <p>Open SQL Server Management Server on the remote machine. Start a new query. Click Query, Include Client Statistics. Run your stored procedure. In the Client Statistics tab of the results, you'll see some basic information about how many packets were sent back &amp; forth over the network. My guess is that for one read, you're not going to see that much overhead.</p> <p>To get a better idea, I'd try doing a plain select of 60,000 records (since you said it's returning 60,000 records one by one) over the network from your remote machine. Again, that doesn't give you an idea of the stored procedure overhead, but it'll give you a quick seat-of-the-pants idea of the network speed between machines.</p> http://stackoverflow.com/questions/813248/dynamic-filename-for-sql-server-backups/813275#813275 1 Answer by Brent Ozar for Dynamic filename for SQL Server backups? Brent Ozar 2009-05-01T21:03:25Z 2009-05-01T21:03:25Z <p>Here's what you really want to know - don't reinvent the wheel. Here's a fantastic script to automate backups that does what you're describing:</p> <p><a href="http://blog.ola.hallengren.com/" rel="nofollow">http://blog.ola.hallengren.com/</a></p> http://stackoverflow.com/questions/748449/css-like-fallback-cascading-data-in-sql-server-2005/748814#748814 1 Answer by Brent Ozar for "CSS-like" fallback cascading data in SQL Server 2005 Brent Ozar 2009-04-14T18:30:43Z 2009-04-14T18:30:43Z <p>Wow, you guys are trying way too hard. Here's the easy way: use the COALESCE command, which takes the first non-null value.</p> <pre><code>SELECT COALESCE(st.Price, rg.Price, gn.Price) AS Price FROM dbo.Prices gn /*General price*/ LEFT OUTER JOIN dbo.Prices rg /*Regional price*/ ON rg.Product = @Product AND rg.Region = @Region AND rg.Store IS NULL LEFT OUTER JOIN dbo.Prices st /*Store price*/ ON rg.Product = @Product AND rg.Region = @Region AND rg.Store = @Store WHERE gn.Product = @Product AND gn.Region IS NULL AND gn.Store IS NULL </code></pre> <p>That way, you'll get the store price if that's not null, or the regional price if that's not null, or the general price if all else fails.</p> http://stackoverflow.com/questions/744351/can-i-use-sql-server-partitioning-to-optimize-fulltext-searches/747384#747384 0 Answer by Brent Ozar for Can I use SQL Server Partitioning to Optimize Fulltext Searches? Brent Ozar 2009-04-14T12:49:06Z 2009-04-14T12:49:06Z <p>GBN's right - it won't help.</p> <p>Usually my recommendation is to avoid changing your schema to solve a hardware problem. Follow best practices for FTS setup, and you can scale really well. If you can clarify what you mean by a "very large table" and what kind of hardware it is, we can probably help give better answers. For example, is it a 1 million row table on a 2-cpu 16gb ram box with 6 drives in a slow raid 5, or is it a 10 million row table on a 4-cpu 64gb box with a 100-drive SAN in RAID 10?</p> http://stackoverflow.com/questions/586526/database-properties-mirroring-page/747370#747370 0 Answer by Brent Ozar for Database Properties "Mirroring" Page Brent Ozar 2009-04-14T12:45:23Z 2009-04-14T12:45:23Z <p>I don't have the answer, but I ran across the same symptom yesterday, and I remembered your question here, hahaha. My problem was that I set up database mirroring using the wizards, but one of the systems had a firewall blocking the mirroring port. The wizard setup went all the way to the final part of enabling database mirroring, and then errored out - but at that point, mirroring was already set up. Mirroring worked great, but there was something in the database metadata that wasn't set quite right. Even when I removed the firewall, parts of SSMS acted as if mirroring wasn't set up for that particular database, even though it was.</p> <p>I then set up additional databases for mirroring (with the firewall off) and they worked great. My solution was to remove mirroring on that database and then add it again, and it worked fine. Doesn't sound like that's worked for you, though.</p> http://stackoverflow.com/questions/724222/database-mirroring-replication-sql-server-2005/747352#747352 1 Answer by Brent Ozar for database mirroring/replication, SQL Server 2005 Brent Ozar 2009-04-14T12:41:20Z 2009-04-14T12:41:20Z <p>Your confusion is common - there's a lot of ways to do disaster recovery planning with SQL Server. I've recorded a <a href="http://sqlserverpedia.com/wiki/Backup%5F%26%5FRestore#SQL%5FServer%5FDisaster%5FRecovery%5FOptions%5FTutorial" rel="nofollow">10-minute video tutorial of SQL Server disaster recovery options</a> including log shipping, mirroring, replication and more. If you like that one, we've got a longer one at Quest called <a href="http://www.quest.com/events/listdetails.aspx?contentid=9185&amp;technology=34&amp;prod=&amp;prodfamily=&amp;loc=" rel="nofollow">Disaster Recovery Techniques</a> but that one requires registration.</p> <p>Instead of investigating a specific technology here, what you might want to do is tell us what your needs are, and then we can help you find out what option is right for you. The videos will give you an idea of what kinds of information you need to know before selecting a particular solution.</p> http://stackoverflow.com/questions/745190/what-is-a-good-sql-server-2008-solution-for-handling-massive-writes-so-that-they/747315#747315 3 Answer by Brent Ozar for What is a good SQL Server 2008 solution for handling massive writes so that they don't slow down reads for users of the database? Brent Ozar 2009-04-14T12:34:28Z 2009-04-14T12:34:28Z <p>Hi, Paul. There's two parts to your question.</p> <p><strong>First, why are writes slow?</strong></p> <p>When you say you have large databases, you may want to clarify that with some numbers. The Microsoft teams have demonstrated multi-terabyte loads in less than an hour, but of course they're using high-end gear and specialized data warehousing techniques. I've been involved with data warehousing teams that regularly loaded so much data overnight that the transaction log drives had to be over a terabyte just to handle the quick bursts, but not a terabyte per hour.</p> <p>To find out why writes are slow, you'll want to compare your load methods to data warehousing techniques. For example, have you tried using staging tables? Table partitioning? Data and log files on different arrays? If you're not sure where to start, check out my Perfmon tutorial to measure your system looking for bottlenecks:</p> <p><a href="http://www.brentozar.com/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/" rel="nofollow">http://www.brentozar.com/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/</a></p> <p><strong>Second, how do you scale out?</strong></p> <p>You asked how to set up multiple database servers so that one handles the bulk load while others handle reads and some writes. I would heavily, heavily caution against taking the multiple-servers-for-writes approach because it gets a lot more complicated quickly, but using multiple servers for reads is not uncommon. </p> <p>The easiest way to do it is with log shipping: every X minutes, the primary server takes a transaction log backup and then that log backup is applied to the read-only reporting server. There's some catches with this - the data is a little behind, and the restore process has to kick all connections out of the database to apply the restore. This can be a perfectly acceptable solution for things like data warehouses, where the end users want to keep running their own reports while the new day's data loads. You can simply not do transaction log restores while the data warehouse is loading, and the users can maintain connections the whole time.</p> <p>To help find out what solution is right for you, consider adding the following to your question:</p> <ul> <li>The size of your database (GB/TB in size, # of millions of rows in the largest table that's having the writes)</li> <li>The size of your server &amp; storage (a box with 10 drives has different solutions available than a box hooked up to a SAN)</li> <li>The method of loading data (is it single-record inserts, are you using bulk load, are you using table partitioning, etc)</li> </ul> http://stackoverflow.com/questions/743017/sql-managment-studio-express-project-and-solutions/744253#744253 2 Answer by Brent Ozar for SQL Managment Studio Express - Project and Solutions Brent Ozar 2009-04-13T15:26:56Z 2009-04-13T15:26:56Z <p>No, that functionality isn't available in Express. If you're looking for a freeware product to do that, check out Quest Toad for SQL Server, which is available in free and beta editions:</p> <p><a href="http://www.toadsoft.com/toadsqlserver/toad_sqlserver.htm" rel="nofollow">http://www.toadsoft.com/toadsqlserver/toad_sqlserver.htm</a></p> http://stackoverflow.com/questions/707197/how-would-a-sql-server-2005-database-lose-a-few-days-data/744088#744088 1 Answer by Brent Ozar for How would a SQL Server 2005 database lose a few days data? Brent Ozar 2009-04-13T14:35:07Z 2009-04-13T14:35:07Z <p>This isn't the answer you want to hear, but in a nutshell, SQL Server doesn't "lose" data. Someone deleted it. If you had the database in full recovery mode, you could use a product like Quest LiteSpeed to read the logs and identify exactly how it was deleted, but in simple mode...sorry, sir, but you're out of luck.</p> http://stackoverflow.com/questions/721734/statistical-calculations-in-sql-server/744066#744066 1 Answer by Brent Ozar for Statistical calculations in SQL Server Brent Ozar 2009-04-13T14:30:04Z 2009-04-13T14:30:04Z <p>The reason you probably don't want to do that is because these calculations are CPU-intensive. SQL Server is usually licensed by the CPU socket (roughly $5k/cpu for Standard, $20k/cpu for Enterprise) so DBAs are very sensitive to any applications that want to burn a lot of CPU power on the SQL Server itself. If you started doing statistics calculations and suddenly the server needs another CPU, that's an expensive licensing proposition.</p> <p>Instead, it makes sense to do these statistical calculations on a separate application server. Query the data over the wire to your app server, do the number-crunching there, and then send the results back via an update statement or stored proc. Yes, it's more work, but as your application grows, you won't be facing an expensive licensing bill.</p> http://stackoverflow.com/questions/719239/value-of-mcitp-database-developer-administrator/744039#744039 3 Answer by Brent Ozar for Value of MCITP: Database developer/administrator Brent Ozar 2009-04-13T14:22:25Z 2009-04-13T14:22:25Z <p>There's several parts to this question:</p> <p><strong>But I don't really know that how they affect my CV,</strong></p> <p>The cert is like icing on the cake, but nobody just wants to eat icing.</p> <p>If it's the best thing on your CV, then it's a help. For example, if you're fresh out of college and you have zero experience, then these certifications show that you've learned a technology that's new and relevant. Colleges don't teach the same information footprint that these certs cover - college degrees are great for the theory behind what you're doing, and the certs are a little more applicable to what you're doing hands-on as a developer or DBA on that particular technology.</p> <p>It's not as good as real experience, though. If you've got, say, 2 years of hands-on database development or administration, then that probably trumps a cert in most cases. </p> <p><strong>and, of course, my salary.</strong></p> <p>It's not going to matter significantly. If you have the choice between doing four weekends of consulting versus four weekends of studying for the cert, then you're going to make more out of the consulting. In theory, the certs will raise your billable rate, but if you're even asking that question, you're not at the point of your career where this is going to make a difference.</p> <p>Instead, go ask your manager what they wish they could accomplish in the next two months. Tell 'em you're willing to take on their pet project in your side time to help both of you. Deliver some new piece of code, some new utility, clean up a database, save them licensing, whatever it is, and you'll be more likely to get a raise than if you go get a cert.</p> <p>And when you're picking side projects, pick something that you can put on your resume. "Reduced licensing costs by $120k through a successful server consolidation project" says a lot more to employers than "MCITP."</p> <p><strong>Are they truly valuable?</strong> </p> <p>Things that are easy to get are not valuable. Some certs (like the Microsoft Certified Master) are valuable. The ones you can get in a few weekends of studying - not so valuable.</p> <p><strong>Do they make differences in your work</strong></p> <p>No, but the studying that you do to PREPARE for these exams will make a difference in your work. In the course of studying, you'll learn tips, tricks and features that you can leverage in your development/DBA work.</p> <p><strong>and your position before and after you get it?</strong> </p> <p>If you think you're going to get a raise simply by showing your MCITP, you're on the wrong track. Ask your manager for a frank and honest evaluation of your work. Tell them that you want to make sure your career keeps moving, and that you'd like their advice on what you should do next. If you don't like your manager, ask your mentor - find a programmer who's already doing what you wish you were doing, and ask 'em how they got there. It's probably not by getting a cert.</p> http://stackoverflow.com/questions/665926/understanding-sql-profiler-trace/670989#670989 Comment by Brent Ozar on Understanding SQL Profiler trace Brent Ozar 2009-10-02T20:44:20Z 2009-10-02T20:44:20Z The problem with looking at Profiler first is that you don't know what the hardware bottleneck is, and therefore which queries you should focus on troubleshooting first. You might have some nasty queries - say, UDFs burning up a lot of CPU - but if the box has tons of free CPU, and experiencing serious IO problems, then you want to know that in order to focus on IO-intensive queries first. http://stackoverflow.com/questions/528634/how-to-access-sql-server-from-cocoa-mac-os-x/528893#528893 Comment by Brent Ozar on How to access SQL Server from Cocoa (Mac OS X)? Brent Ozar 2009-09-28T19:15:59Z 2009-09-28T19:15:59Z Well, this answer is several months old, so I've forgotten my search terms. Usually I chain words together with periods, like sql.server os.x, and that works pretty well. http://stackoverflow.com/questions/536182/mssql2005-restore-database-without-restoring-full-text-catalog Comment by Brent Ozar on MSSQL2005: Restore database without restoring full text catalog Brent Ozar 2009-08-09T14:15:15Z 2009-08-09T14:15:15Z Yeah, the restore fails because it can't create the full text file on a drive that doesn't exist. Seen this myself, curious if there's a workaround. http://stackoverflow.com/questions/1056885/database-tools/1056932#1056932 Comment by Brent Ozar on Database tools Brent Ozar 2009-06-29T12:13:18Z 2009-06-29T12:13:18Z FYI - Quest does the same thing for SQL Server as well. We have Toad for SQL Server, Change Director for SQL Server, etc. http://stackoverflow.com/questions/951056/what-interesting-stats-can-i-obtain-from-the-stack-overflow-data-dump/966338#966338 Comment by Brent Ozar on What interesting stats can I obtain from the Stack Overflow data-dump? Brent Ozar 2009-06-27T22:03:23Z 2009-06-27T22:03:23Z Thanks! I'll add an explanation about it in the site too. http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1051837#1051837 Comment by Brent Ozar on Database or flat file for 600K records? Brent Ozar 2009-06-27T14:49:31Z 2009-06-27T14:49:31Z Lots of reasons - first, there's no logging. The plus side of that is that it's fast, but the downside is that if anything goes wrong, you're plain out of luck. You can't recover to a point in time with Access. http://stackoverflow.com/questions/951056/what-interesting-stats-can-i-obtain-from-the-stack-overflow-data-dump/966338#966338 Comment by Brent Ozar on What interesting stats can I obtain from the Stack Overflow data-dump? Brent Ozar 2009-06-27T14:03:19Z 2009-06-27T14:03:19Z The percentile means where you rank for that particular statistic. If your percentile is 86%, then that means you've performed better than 86% of the other people out there. If your percentile is 100%, then you've performed better than everybody. If your percentile is 15%, then that means you've got a lot of work to do, because 85% of the users are outperforming you on that statistic. http://stackoverflow.com/questions/999185/is-there-a-script-or-program-that-will-efficiently-and-quickly-load-up-the-so-dum/999484#999484 Comment by Brent Ozar on Is there a script or program that will efficiently and quickly load up the SO dump into SQL Server? Brent Ozar 2009-06-16T15:13:38Z 2009-06-16T15:13:38Z Can you add a compiled version? Us DBAs don't have the tools to compile it, unfortunately. http://stackoverflow.com/questions/951056/what-interesting-stats-can-i-obtain-from-the-stack-overflow-data-dump/966338#966338 Comment by Brent Ozar on What interesting stats can I obtain from the Stack Overflow data-dump? Brent Ozar 2009-06-16T12:04:34Z 2009-06-16T12:04:34Z Sam - looks interesting, but is there a compiled version? I don't have Visual Studio, and wouldn't know where to begin with that. http://stackoverflow.com/questions/391585/documentation-for-creating-a-custom-sql-server-data-source-data-provider/989751#989751 Comment by Brent Ozar on Documentation for creating a custom SQL Server "Data Source" data provider Brent Ozar 2009-06-13T12:18:10Z 2009-06-13T12:18:10Z You bet, glad I could help! http://stackoverflow.com/questions/67347/sql-2000-equivalent-of-sqlagentreaderrole/67550#67550 Comment by Brent Ozar on SQL 2000 equivalent of SQLAgentReaderRole Brent Ozar 2009-06-13T01:23:18Z 2009-06-13T01:23:18Z Correct, there's no such role for SQL 2000. http://stackoverflow.com/questions/854216/use-ms-sql-server-full-text-search-to-match-words Comment by Brent Ozar on Use Ms SQL SERVER full text search to match words Brent Ozar 2009-06-13T01:14:56Z 2009-06-13T01:14:56Z Can you maybe expand on this with a table-create script, insert-data script, and the results you expect to get? I'm having trouble understanding what you're after, and judging by the other answers, other people are having some difficulty too. Thanks! http://stackoverflow.com/questions/951056/what-interesting-stats-can-i-obtain-from-the-stack-overflow-data-dump/966338#966338 Comment by Brent Ozar on What interesting stats can I obtain from the Stack Overflow data-dump? Brent Ozar 2009-06-11T16:59:08Z 2009-06-11T16:59:08Z Yeah, that's fixed in the latest update. http://stackoverflow.com/questions/951056/what-interesting-stats-can-i-obtain-from-the-stack-overflow-data-dump/966338#966338 Comment by Brent Ozar on What interesting stats can I obtain from the Stack Overflow data-dump? Brent Ozar 2009-06-10T03:14:40Z 2009-06-10T03:14:40Z I think that's because they're typically PC help questions, not programming questions. They get closed when they're not programming related. One of the things I'm working on is tag correlations - seeing which tags show up in combination most often. I bet we'll see &quot;not-programming-related&quot; show up around those. http://stackoverflow.com/questions/877857/backing-up-sql-database-for-reports/878505#878505 Comment by Brent Ozar on Backing up SQL Database for Reports Brent Ozar 2009-05-22T12:40:42Z 2009-05-22T12:40:42Z You can set up manual log shipping between SQL 2005 and 2008 by writing your own T-SQL scripts, or use third party products to do it. It's not generally a good idea because you can't really use the SQL 2008 box as a failover method - once you fail over to 2008, you can't go back. To make a long story short, yes, you can do it but no, it's not easy or a good idea.