Viewing 15 posts - 2,371 through 2,385 (of 3,678 total)
Best practice would be to
If you truly need dynamic SQL look at sp_executesql rather than exec. sp_executesql will...
July 7, 2006 at 3:34 pm
Hope the article on Symetric Keys and Certificates comes soon!
July 6, 2006 at 5:22 am
SELECT C1,C2 FROM dbo.YourTable AS YT WHERE C1 IN ( SELECT C1 FROM dbo.YourTable GROUP BY C1 ...
July 5, 2006 at 1:24 pm
Try the new SQL2005 table partitioning as a starting point but read up on backing up of the database first.
If your system is web based and .NET based then you...
July 5, 2006 at 1:21 pm
At one place I worked the difference between the testing and production hardware was that the testing hardware was slightly more beefy than the production environment. The idea was...
July 5, 2006 at 1:15 pm
You can only use INNER JOIN for an indexed view.
I take it that a MedicRecs record might not have a record in
Where possible I design my databases so that LEFT/RIGHT...
July 5, 2006 at 1:09 pm
If you don't need double-byte characters (in SQL2000) use TEXT rather than NTEXT.
Phil, have you tried sp_executeSQL as a possible alternative to EXEC, it might give you a bit more...
July 5, 2006 at 5:13 am
CTRL R toggels the results pane off and on just like in QA.
By the way performance is almost acceptable if you stick 2Gb in your development machine.
My dev machine is...
June 29, 2006 at 2:44 am
No problems Daryl, there is actually a typo in your data because it has
2,1,8 AND 3,2,8 which is against the rules as 8 would be in the same 1st...
June 26, 2006 at 12:46 pm
Daryl, as posted earlier there are Sudoko puzzles where there is no automated solution and you have to make a choice at some point. You can make the wrong...
June 25, 2006 at 5:09 pm
Assuming you don't have SQL2005 and therefore the PIVOT function you could always resort to
DECLARE @display TABLE(ID INT IDENTITY(1,1),Display VARCHAR(50)) DECLARE @lRow TINYINT SET @lRow = 0 DECLARE @NewRow VARCHAR(50) INSERT INTO @display (Display)...
June 24, 2006 at 6:53 am
My apologies for the missing stored procedure.
When I started building my solution I prototyped it by bouncing values through tables and the procedure was used to remove solved cells from...
June 23, 2006 at 6:10 am
Tad William's Otherland series.
Arthur C Clarke was pretty good.
Jules Verne was probably the most prophetic.
June 16, 2006 at 2:15 pm
Viewing 15 posts - 2,371 through 2,385 (of 3,678 total)