Eric Z Beard

9,984
Reputation
576 views

Registered User

Name Eric Z Beard
Member for 1 year
Seen 10 hours ago
Website
Location Clearwater, FL
Age 37
VP Engineering at Loop, LLC

ericzbeard at yahoo dot com
1d
awarded  Mortarboard
Dec
4
answered Deleting Database Rows and their References-Best Practices
Nov
30
accepted Direct link from Yellow Screen to line in code
Nov
16
comment Database Change Management using hand generated scripts
Well, my migration scripts tend to involve millions of records, so transactions are out - that would lock up the database for way too long. I am using Sql Server.
Nov
13
comment Difference between a inline function and a view
Yep, I missed "inline", you're right.
Nov
13
answered Database Change Management using hand generated scripts
Nov
13
comment Database Change Management using hand generated scripts
As much as I love RedGate's tools, I've got issues with SqlCompare - it tends to drop and re-create indexes on tables when you make changes, and it re-creates all indexes on the PRIMARY filegroup, not where they used to be.
Nov
13
answered Explain this obscure ASP.NET bug
Nov
13
answered Converting asp.net/sql web app to be ime zone savy
Nov
13
comment Difference between a inline function and a view
That's not correct for functions, not for Sql Server. Functions are a black box, and don't get expanded into the containing query - that's why performance is horrific if you use functions that query anything. It turns into a bad nested loop since the function is handled separately for each row.
Nov
4
awarded  Popular Question
Oct
13
awarded  Popular Question
Sep
18
comment Are Foreign Keys really necessary in a database design?
@jcollum, I made that comment during the beta of Stack Overflow, when pretty much everybody here knew who Jeff and Joel were, and most were probably listening to the Podcast, so Fog Creek was on everybody's radar.
Sep
11
accepted Adaptive Database
Sep
4
awarded  Popular Question
Sep
1
awarded  Taxonomist
Aug
25
awarded  Notable Question
Aug
24
accepted Is there ever any reason not to take the advice of the Database Engine Tuning Advisor?
Aug
21
comment How good are Redgate’s SQL tools?
My only complaints so far are that the data generator doesn't allow you to specify custom foreign key values, and Sql Compare insists on dropping and re-creating all indexes when making minor column changes, and then puts all indexes back in the PRIMARY filegroup with all extended properties ignored. It takes hours to re-create my indexes, and they don't fit in one filegroup.
Aug
21
comment How good are Redgate’s SQL tools?
It's funny that you posted here today... I just started using RedGate's entire toolbelt, and the backups, within the last week or so. The backups are fantastic - compressed and split into multiple files, which is great for my daily backups which uncompressed were nearing 1Tb.
Aug
20
accepted How to Access Cursor Columns Without FETCH .. INTO
Aug
19
answered Do stored procedures have the ability to delete a file from the OS?
Aug
19
comment How to Access Cursor Columns Without FETCH .. INTO
@pjp, sometimes cursors are useful to run some complex logic on a row-by-row basis, often by calling a stored procedure for each row returned. Also, if you need to do something like delete a few million rows, a single set-based query can lock up your database for a long time. Deleting one row at a time with a cursor takes a lot longer but allows the database to breathe while it's happening.
Aug
19
answered How to Access Cursor Columns Without FETCH .. INTO
Aug
14
awarded  Yearling
Jul
25
comment How do I speed up deletes from a large database table?
I don't want to post the actual plan but I can describe it easily enough: a clustered index delete at far right with 66%, then under that 29 seeks for the FKs at approximately 1% each.
Jul
24
comment How do I speed up deletes from a large database table?
The problem is that I'm not talking about 30 minutes. I'm talking about tens of millions of rows which are taking me more than 1 second per row to delete. That adds up to months.
Jul
21
comment How do I speed up deletes from a large database table?
That might be something I could try, but we're talking about tables with tens of millions of records, several Gigs for the clustered index. It would have to be possible inside of a normal maintenance window.
Jul
21
comment How do I speed up deletes from a large database table?
@AdaTheDev, for new shards it's not such a problem but my initial deployment was a backup-restore, and on each copy, mark half of the data as virtually deleted. So those two shards are huge. @Mitch, the point of shards is to use cheaper equipment, so I won't spend money to solve the problem. @ck, I'm not sure the FKs are the real problem. I think the biggest percentage of time spent is the clustered index delete.
Jul
21
asked How do I speed up deletes from a large database table?
Jul
8
awarded  Disciplined
Jun
26
comment C# - SQLClient - Simplest INSERT
It's recommended to put a using statement around any disposable object, so you get the try-finally-dispose logic guaranteed without any chance of messing it up and not releasing resources.
Jun
15
comment Wait until file is unlocked in .Net
Are you talking about 2 threads in the same app calling WaitForFile on the same file? Hmm, not sure, since I mostly use this to wait for other processes to let go of the file. I've had this code in production for a long time and it has worked well for me. Should be pretty simple to write a an app to test your theory.
Jun
15
awarded  Popular Question