Viewing 15 posts - 406 through 420 (of 522 total)
And just to mention that we all have made bad decisions in our past.
Some might not admit it, but thats how we function. We're not robots.
April 15, 2008 at 6:48 am
Hello,
The proposed solution doesn't work with other languages:
SET LANGUAGE GERMAN
SELECT Datename(m, TheDate)TheMonthName, TheDate, Month(TheDate) TheMonth FROM (
SELECT '19000101' AS TheDate
UNION ALL SELECT '19000201'
UNION ALL SELECT '19000301'
UNION ALL SELECT...
April 15, 2008 at 3:06 am
Hi Jamie,
there is a footnote with the following text in the link you mentioned:
2You can upgrade an instance of SQL Server 2005 Evaluation Edition to any other edition of SQL...
April 11, 2008 at 12:39 am
Hi Steve,
What you are saying is, that the question was about
/1/, /1/1/, /1/2/, /1/2/3/
and not about
/1/, /1/1/, /1/2/, /1/2/3/, etc.
?
Thanks!
March 15, 2008 at 1:45 pm
Can someone please explain this to me?
As far as my knowledge goes, the following tree
represents a possible implementation of the tree
posted by the author. Node /1/1/2/ has been
added since...
March 15, 2008 at 8:08 am
Great Article! Just one comment on indexing table variables: It actually is possible, just a little limited: You can create unique or primary key constraints on single columns.
Example:
DECLARE @MyTable TABLE...
February 28, 2008 at 12:38 am
You're talking about this Conor? 🙂
February 14, 2008 at 11:07 am
Hello,
could you please let me know the output of the following query?
SELECT MAX(DATALENGTH(LEGAL_ENTITY), MAX(DATALENGTH(DESCRIPTION)
FROM table_1 WITH (NOLOCK)
Thanks!
February 14, 2008 at 4:25 am
Yes, the same error is raised.
I posted a comment on the blog, maybe Conor will be able to explain this.
Thanks!
February 14, 2008 at 3:31 am
Hm, should have checked this link first...
Still I am not yet convinced, or at least a little confused:
Given a table "a" with columns "cola" and "colrestricted".
User "Test" only has access...
February 14, 2008 at 12:33 am
Ah, good to know! Thanks for the heads up!
February 13, 2008 at 2:21 pm
I am a little confused by this thread.
Ignore my post if you meant the same as I write now:
I am pretty sure that SQL Server does NOT make a...
February 13, 2008 at 2:16 pm
Hm, I thought I had tried the SCHEMABINDING before already but that really works now.
I have also tried to use a non-deterministic function within a function - that actually is...
February 13, 2008 at 1:49 pm
Like this?
CREATE FUNCTION dbo.fnDateAdd(@intA int)
RETURNS int
AS
BEGIN
RETURN @intA
END
GO
Still no luck... 🙁
February 13, 2008 at 1:09 pm
Viewing 15 posts - 406 through 420 (of 522 total)