Viewing 15 posts - 4,021 through 4,035 (of 8,416 total)
Hugo Kornelis (4/8/2010)
...hard question list...
I got all those questions wrong - except the 15% one :blink:
And I've got two new questions lined up; they are scheduled for April 20th and...
April 8, 2010 at 4:39 am
Ninja's_RGR'us (4/7/2010)
Think of it this way...You have 4 persons in a room, how many different "couples" can do a handshake.
N-way handshaking combinations...
USE tempdb;
GO
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
GO
DROP FUNCTION dbo.Numbers;
GO
CREATE ...
April 8, 2010 at 4:34 am
SQL Server's response to an error depends on the error, and session settings.
Overflow and divide-by-zero errors are affected by the following session settings:
In this case, your...
April 8, 2010 at 3:20 am
RBarryYoung (4/7/2010)
Paul White NZ (4/7/2010)
There are rumours of fuller support for this sort of requirement in the next major release of SQL Server.(R2 is not a major release).
Paul: random tangent...
April 8, 2010 at 12:06 am
I would like to suggest:
DECLARE @Database SYSNAME;
SET @Database = 'master'
IF -- See http://msdn.microsoft.com/en-us/library/ms190328.aspx
OBJECT_ID(@Database...
April 7, 2010 at 11:07 pm
SELECT D.name, P.name
FROM sys.databases D
JOIN sys.server_principals P
ON P.sid = D.owner_sid
ORDER BY
...
April 7, 2010 at 10:53 pm
Ask a hardware engineer, the manufacturer, or look it up :w00t:
Also, see Pricing and Licensing FAQ
April 7, 2010 at 10:47 pm
See the Operating Systems sections of:
Hardware and Software Requirements for Installing SQL Server 2005
and also
Microsoft SQL Server 2005: Compare Features
Memory Limits for Windows Releases
The simple answer is that yes, it...
April 7, 2010 at 10:44 pm
Jeffrey Williams-493691 (4/7/2010)
...but it is kind of a pet peeve of mine.
I am usually fastidious about schema qualification - except for trigger definitions, for some reason.
April 7, 2010 at 10:29 pm
AndrewSQLDBA (4/7/2010)
I found this link that you can download the map for SQL 2005, there is also a link for SQL 2008.
Thanks Andrew! All I need to do now...
April 7, 2010 at 10:27 pm
SELECT parent_schema = QUOTENAME(PS.name),
parent_table_name = QUOTENAME(PT.name),
child_schema = QUOTENAME(RS.name),
...
April 7, 2010 at 10:26 pm
Steve Jones - Editor
My kids settle down when my voice raises.
You go all squeaky? :unsure:
April 7, 2010 at 9:38 pm
Heh...bit of a guess - and rewarded with one point!
Odd name for it - no doubt there is a reason for the '2006' part...:unsure:
April 7, 2010 at 8:50 pm
RBarryYoung (4/7/2010)
Yup, AFAIK SQRT, LOG and maybe POWER are the only things that return this error.
Ooo - I had never tried POWER. Have now, and you're right - though...
April 7, 2010 at 8:34 pm
Viewing 15 posts - 4,021 through 4,035 (of 8,416 total)