Viewing 15 posts - 4,231 through 4,245 (of 14,953 total)
WayneS (5/20/2011)
Wondering what you'll think of the "Lack of good identifiers generators" section? Especially the...
May 20, 2011 at 1:19 pm
Chi Chi Cabron (5/20/2011)
Obviously, I am beyond help.
Nah.
The way you did it there is pretty much what you had to do in SQL 2000. In 2005 and beyond, you...
May 20, 2011 at 12:22 pm
There's a good overview of CTEs here: http://www.simple-talk.com/sql/t-sql-programming/sql-server-cte-basics/
Another: http://msdn.microsoft.com/en-us/library/ms190766.aspx
Start with those.
May 20, 2011 at 12:12 pm
Just to clarify: You don't want to calculate from the specific date given if it's in the middle of a series of YES values, you want to calculate from the...
May 20, 2011 at 11:58 am
Did you try running the third query more than one time? Since the fourth ran much faster, you may be running into SQL Server having to build stats and...
May 20, 2011 at 11:48 am
The options seem to lack a "we are upgrading soon" selection.
We're on SQL 2005 right now, upgrading to 2008 R2 in very short order (the project has already started).
May 20, 2011 at 11:44 am
Those look like reasonable technical screening questions.
Given the position and purpose, I'd probably incline towards:
What are the advantages and disadvantages of stored procedures compared to inline code?
What's SQL injection and...
May 20, 2011 at 11:41 am
It's not really "reserved", and the procedures will still work in 2005 or 2008. It's just a bad idea, because it can have performance issues while SQL Server looks...
May 20, 2011 at 11:36 am
Actually, if you want to write directly to pages, you could. You'd have to get a HEX editor, and write directly to the disk sectors the pages are stored...
May 20, 2011 at 9:59 am
Richard M Karpel (5/20/2011)
May 20, 2011 at 8:58 am
As mentioned, you need some way to tell SQL Server what order the rows are in. Is there a column in the real table that has that? Maybe...
May 20, 2011 at 8:52 am
I agree. While I could certainly rewrite the code, I wouldn't want to touch a banking system without a lot more information on what this does and why.
May 20, 2011 at 7:06 am
In cases where C# or other applications need a row ID before the row is inserted, I recommend GUIDs generated by the app.
They'll take more space than an ID, but...
May 20, 2011 at 7:02 am
Virtual database servers suffer a significant performance hit in almost all cases.
There are whole books of information on the subject. There are solutions to speed things up, but you'll...
May 20, 2011 at 6:59 am
I've spent a lot of time recently fixing bugs caused by a prior database dev who didn't actually understand SQL as well as he thought.
For example, an insert that had...
May 20, 2011 at 6:56 am
Viewing 15 posts - 4,231 through 4,245 (of 14,953 total)