Viewing 15 posts - 436 through 450 (of 499 total)
Wow thats some CTE :w00t:
I can't see anything obvious, and without the table structures and sample data, its difficult to help.
In ASP.NET I use the built-in sorting and paging facillities...
March 12, 2009 at 2:28 pm
OK I've found the application I was thinking of and my solution was to remove the noise words before they got to SQL
In my case the VB front-end read...
March 12, 2009 at 1:43 pm
Sorry I can't help you immediately but I've come across this before (using english) - a couple of years ago - I'll look at my archive stuff tonight and let...
March 12, 2009 at 9:23 am
I've been using this script for years - never had any problems with it. Run in the database you just restored - its very similar to the other solutions...
March 12, 2009 at 6:05 am
Found this on sqlDumbAss - http://sqldumbass.com/2008/01/09/turbo-button.aspx#Comment
/* Recruit a DBA */
-- Create the post
DECLARE @DBAPost TABLE (
[Name] varchar(50) Default 'Dave',
Qualifications INT NOT NULL,
HeadSize BigInt,
SocialSkills TinyInt )
-- and get the best...
March 12, 2009 at 3:41 am
If I run these statements I get zero and zero, etiher separately or as a batch.
If I add in the GO immediatly after the DECLARE, I still get zero and...
March 6, 2009 at 1:40 am
Jeff Moden (11/26/2008)
When you get done with your CLR, lemme know...
Jeff
Tried to PM you - but your PM mailbox is full.
I'm ready with my CLR - in fact I've...
December 5, 2008 at 3:00 am
I did use the + operator in the end
CREATE FUNCTION dbo.fn_ConcatBin(@pKey AS INT)
RETURNS VARBINARY(MAX)
AS
BEGIN
DECLARE @VAR varbinary(MAX);
SET @VAR = 0x;
SELECT @VAR = @VAR + convert(varbinary(max), fValue)
FROM pcvBlock AS B
WHERE B.fk_BlockRef =...
December 4, 2008 at 3:17 pm
I randomly chose an answer, just to get at the answers to see which was right - but now I'm even more confused. :unsure:
December 1, 2008 at 10:20 am
Thanks GilaMonster, I've found out how to check a poster's timezone.
And I see you're in South Africa too - So its early summer there? which just reinforces how...
December 1, 2008 at 3:26 am
Stewart Bailey-Smith (11/28/2008)
November 29, 2008 at 4:17 am
Yes, but you will still need the .NET command line compiler to create an assembly dll from your source.
November 29, 2008 at 12:37 am
But of course ChrisM's is more elegant 😉
November 28, 2008 at 8:44 am
You can't treat the Route column as both an int and a varchar
To get the sort right you can try this, it won't work for all situations but it...
November 28, 2008 at 8:42 am
I find a lot wrong with IE Beta 8 - my iGoogle is all wrong for a start.
I've tried to find a way to uninstall it - but can't
I now...
November 28, 2008 at 5:16 am
Viewing 15 posts - 436 through 450 (of 499 total)