Viewing 15 posts - 2,251 through 2,265 (of 3,011 total)
I ignore all private messages. Not that I get many.
It might be good to have a setting to allow you to turn off private messages, so that people don't...
August 6, 2008 at 1:50 pm
Jeff Moden (8/5/2008)
Michael Valentine Jones (8/5/2008)
August 6, 2008 at 1:37 pm
Jeff Moden (8/1/2008)
DECLARE @sql VARCHAR(MAX)
SELECT @sql = COALESCE(@SQL+CHAR(10)+' UNION ALL --------------------'+CHAR(10),'')
+REPLACE(
' SELECT ''...
August 5, 2008 at 2:03 pm
Are you really sure about the size of this database? Maybe it is really 400 GB?
400 TB would make it one of the world’s largest databases and I seriously...
August 5, 2008 at 9:49 am
Take a look at these threads:
Truncate All Tables
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=65341
Find Table Reference Levels
August 1, 2008 at 3:15 pm
alucas (7/30/2008)
and like Charlton Heston said in Planet of the Apes:"Never trust anyone over 30!" (for advice on how to learn SQL 2005).
😛
Since Charlton Heston didn't say that, I'm not...
July 30, 2008 at 6:37 pm
The command line utility from Intel that I posted the link to seems to give all the info that is required.
I have used it with many servers, old and new,...
July 30, 2008 at 3:29 pm
jcrawf02 (7/30/2008)
GSquared (7/30/2008)
...who cares who number five is, either you're number one, or you're working for them.
If you aren’t the lead dog, the view never changes.
July 30, 2008 at 3:18 pm
Populate a temp table with the results of your dynamic SQL select statement, and then open the cursor on a select from the temp table.
July 30, 2008 at 12:39 pm
MrBaseball34 (7/30/2008)
Jack Corbett (7/30/2008)
Also it would be nice if people would use the IFCodes period. How many times is ... a url not in a url block?
*MOST* good...
July 30, 2008 at 12:27 pm
What Windows edition are you running: Standard, Enterprise, etc.
July 29, 2008 at 4:23 pm
select
EMPID,
SALARY,
MODDATE
from
MyTable a
join
(
select
bb.EMPID,
MODDATE = max(bb.MODDATE)
from
MyTable bb
group by
bb.EMPID
) b
on a.EMPID = b.EMPID and a.MODDATE = b.MODDATE
order by
a.EMPID
July 29, 2008 at 1:31 pm
I just ran it, and the info seems pretty clear to me: No Hyper-Threading, 8 cores, 4 cores per package, 2 physical processors, all cores in use.
Capabilities:
...
July 29, 2008 at 12:26 pm
Intel provides a command line utility for this:
July 29, 2008 at 12:16 pm
Here are three free online tutorials:
http://www.firstsql.com/tutor.htm
http://www.w3schools.com/sql/default.asp
These are the primary Microsoft SQL Server References:
SQL Server 2000 Books Online
http://msdn2.microsoft.com/en-us/library/aa257103(SQL.80).aspx
SQL Server 2005 Books Online
July 29, 2008 at 10:04 am
Viewing 15 posts - 2,251 through 2,265 (of 3,011 total)