Viewing 15 posts - 1,006 through 1,020 (of 5,356 total)
As has been mentioned, if you only have 1 of these in your table, it makes no difference if you use BIT or TINYINT. Both will consume 1 byte. All...
February 14, 2005 at 2:10 am
Also, see if this helps explaining further:
http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part3/c1161.mspx
February 14, 2005 at 1:58 am
Before looking for SQL Server 7.0, see if this helps:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;261334
http://support.microsoft.com/default.aspx?scid=kb;en-us;818550
February 14, 2005 at 1:37 am
Brilliant idea, Adam!!! May I suggest, that we can improve this even further? How about making it generic and use dynamic sql here?
What...
February 14, 2005 at 1:31 am
Can you imagine, that I am not allowed to install any spam filter here? I use Outlook 2000 and asked for this spambayes tool. Our network admins said my company...
February 14, 2005 at 1:11 am
Dave,
found this in my link library
http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part2/c0761.mspx
Though it's originally the other way round, it might turn out useful.
And finally:
http://www.handels.gu.se/epc/archive/00002948/01/Nr18_MIB.pdf
A comparison of SQL Server, Oracle and DB2 with Codd's rules....
February 14, 2005 at 1:07 am
Can't find the link right now, but I remember some time ago an 18?!? year old German pupil spreading some virus got now a job offering from an Anti-Virus software...
February 11, 2005 at 7:48 am
but how does one find them in compiled code?
Too much time and not much else to do, I guess
February 11, 2005 at 7:18 am
Also, this and a whole lot more useful informations can be found in the link I've posted above.
February 11, 2005 at 7:17 am
See if this helps:
http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part3/c1161.mspx
February 11, 2005 at 7:14 am
Drum rolls, please....
http://sqljunkies.com/WebLog/amachanic/archive/2004/11/10/5065.aspx?Pending=true
February 11, 2005 at 6:41 am
Is this a trick question???
SET-based is a SELECT statement for example, while ROW-based is a cursor.
February 11, 2005 at 6:38 am
Well, I don't work in the IT business at all. My main duties are the asset management for our insured persons. So, no position that usually deals with creating enterprise...
February 11, 2005 at 6:20 am
AJ,
When I run
USE NORTHWIND
GO
DECLARE @MAX1 FLOAT, @MAX2 FLOAT, @MAX3 FLOAT, @MAX4 FLOAT
SET @MAX1 = (SELECT MAX(UnitPrice) FROM [Order Details])
SET @MAX2 = (SELECT MAX(UnitPrice) FROM [Order Details] WHERE MAX(UnitPrice) < @max1)
I...
February 11, 2005 at 6:06 am
There is no such thing as a last record. You might want to consider this:
USE NORTHWIND
GO
SELECT
(SELECT
OrderDate
FROM
Orders
WHERE
OrderID =
(SELECT MIN(OrderID)
FROM Orders)) AS First_Order
,
(SELECT
OrderDate
FROM
Orders
WHERE
...
February 11, 2005 at 4:09 am
Viewing 15 posts - 1,006 through 1,020 (of 5,356 total)