Viewing 15 posts - 6,766 through 6,780 (of 7,191 total)
Michael
You will find a table with the meanings of the columns in Books Online. For your report, I think you will need to create your own lookup tables with this...
October 3, 2006 at 8:11 am
Tryst
Here's a way of doing it without a CASE statement
--DataCREATETABLE #MyTable (TableID int,...
October 3, 2006 at 8:03 am
I would set it to the size of the disk (assuming you don't use the disk for anything else) and then leave it. Make sure you grow the file out...
October 3, 2006 at 7:04 am
Richard
More information, please. Is it all the indexes on this table, and if so have you rebuilt them all, including the clustered index (if there is one)? How do you...
October 2, 2006 at 7:27 am
Frances
To see the Taskpad View, click on the database in Enterprise Manager, then right-click and choose View and then Taskpad. Unused DB and log space are the amount of space...
October 2, 2006 at 7:19 am
Dan
In a cluster environment, the operating system regularly polls SQL Server to check that it is still alive. I think it does this by connecting as a Windows account and...
October 2, 2006 at 7:02 am
It all depends what the requirement is. A view can be thought of as a virtual table. It can be queried, joined to other tables or views and, under some...
September 27, 2006 at 3:18 am
MK
As far as I know, this isn't possible. Just as a matter of interest, why do you want to do it?
John
September 26, 2006 at 4:50 am
Casper
I think the fact that you have to register to download your document is putting a lot of people off. Search these forums for "coding standards" - you will find...
September 26, 2006 at 4:14 am
You should be able to do that with a trigger. Unfortunately I'm not the person to ask about that. I recommend that you spend half a day reading about triggers...
September 25, 2006 at 3:57 am
Not the most elegant solution, but it works...
John
--Data
create
table #John (data varchar(20),
September 22, 2006 at 8:02 am
If you have already done the update, you will not be able to do what you have been asked. You'd have to restore a copy of the database from a...
September 21, 2006 at 4:01 am
Mitesh
I think you've stumbled on one of the pitfalls of using Enterprise Damager: that you have to refresh before you do almost anything.
John
September 20, 2006 at 10:17 am
Jude
I think all you need to do is turn your IIF statement into a CASE statement (look this up in Books Online) and alias your subquery, thus:
...
ResearchStudent.EnrollmentCategory, q.Suspension
FROM...
September 19, 2006 at 7:45 am
Sushila
Yes - you're right - I hadn't noticed the CASE statement higher up that traps the 0.
John
[Edited when realisation dawned on me!]
September 19, 2006 at 5:37 am
Viewing 15 posts - 6,766 through 6,780 (of 7,191 total)