Viewing 15 posts - 91 through 105 (of 1,412 total)
David, both XP x64 and Server 2003 x64 where released back in April.
http://www.microsoft.com/windowsserversystem/64bit/default.mspx
December 16, 2005 at 1:28 am
And that function does a lousy job.. Here is an example of a function that does it much more efficiently.
CREATE FUNCTION dbo.fnListToSet (@list VARCHAR(8000), @delimiter VARCHAR(3))
RETURNS TABLE
AS
RETURN
...
December 16, 2005 at 1:19 am
Well, the error message is pretty much telling you where to look. The column IsActi*** (*** means whatever should really come here) seems so have a double quote character in...
December 16, 2005 at 1:16 am
What exactly do you mean by a complete rewrite? I am fairly certain that they did not start from scratch, if that is what you mean.
December 16, 2005 at 1:10 am
I am not sure exactly what you mean by "SS2005 fully integrated with Source Control". I would definitely not say that is true. SQL Server Management Studio (and BIDS) is...
December 16, 2005 at 1:00 am
"[Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket."
I have not tried accessing SQL Server 2005 with a JDBC driver (did some work with it on 2000, but not a lot there...
December 16, 2005 at 12:55 am
Can Enterprise Manager in 2005 access and manage a SQL 2000 server?
Well, there is no Enterprise Manager, but the new tool called SQL Server Management Studio (SSMS) can access and...
November 16, 2005 at 12:29 am
I am not in that camp.
I am in the "There is no such thing as denormalization"-camp.
Anyway, my primary concern when designing is data...
November 15, 2005 at 12:49 pm
Without knowing the requirements behind this design we cannot say it is incorrect. For instance, if a Reactions should always have 4 mineral ids, then the original design would probably...
November 15, 2005 at 8:36 am
If the table is called bar and the column where Peter is stored is called foo, then this would give the result you want:
SELECT '' + foo + '' AS...
November 15, 2005 at 3:38 am
Do you mean that Table2 has 4 columns that refer to different rows (Min_IDs) in Table1? If so, then create the four columns with different names and you're set.
November 15, 2005 at 3:35 am
Are they saying that the problem is caused by a memory leak in SQL Server or the application (which I suspect they wrote)? If the former, how would they know...
November 10, 2005 at 12:57 am
I thought so, but I could not see what SQL Server would have to do with Java Server Pages. But since that was actually the original question of the thread...
November 10, 2005 at 12:54 am
Uhm, please specify what you mean exactly. At least, if not this works:
SELECT * FROM [tablename]
November 8, 2005 at 7:17 am
Can't remember for sure, but I see no reason to reboot the box after enabling AWE. SQL Server must be restarted of course. However, /PAE requires reboot of box, same...
November 8, 2005 at 2:15 am
Viewing 15 posts - 91 through 105 (of 1,412 total)