Viewing 15 posts - 23,311 through 23,325 (of 26,490 total)
Are you saying that if, for instance, column c is null for a particular row, don't return that row.
select
*
from
dbo.MyTable
where
...
December 15, 2008 at 9:26 am
I'm sorry, but I don't see any errors in your post. What errors are you receiving?
December 12, 2008 at 4:36 pm
darryl (12/12/2008)
First of all, the only code I tried was to select the records. If figured the first...
December 12, 2008 at 3:39 pm
Read the article that both Seth and I have in our signature block. It will walk you through the steps you need to do to get the best help...
December 12, 2008 at 3:21 pm
Looks like you want to do an INNER JOIN between the two tables. That's about as much as I can tell from your psuedo code.
Can't tell if you just...
December 12, 2008 at 3:10 pm
I received your email, but I'm at a lost as to what you are trying to accomplish as well. You really need to show us what you are trying...
December 12, 2008 at 3:00 pm
MrBaseball34 (12/12/2008)
How would I do that?
SELECT ResourceID, COUNT(ScheduleId) AS Count
FROM ptSchedule
WHERE (Status <> 5)...
December 12, 2008 at 2:58 pm
You can't change the sort order in the Object Explorer, but while the column folder in Object Explorer is highlighted, you can sort the column names in the Object Explore...
December 12, 2008 at 1:45 pm
I don't see the IT field going away. I think it's here to stay. What we do in the field, howver, can very easily change.
This is what I...
December 12, 2008 at 12:00 pm
This is what the code should look like:
DECLARE @batchsize INTEGER,
@rowcount INTEGER;
SET @batchsize = 100000;
SET @rowcount = @batchsize;
WHILE @rowcount = @batchsize
BEGIN
...
December 12, 2008 at 11:57 am
Jack Corbett (12/12/2008)
December 12, 2008 at 11:38 am
jcrawf02 (12/12/2008)
jcrawf02 (12/12/2008)
Lynn Pettis (12/12/2008)
So, having noticed items 2 through 4, where do you fall?? Also, I may be an old fart, but I can keep up with high...
December 12, 2008 at 10:36 am
You can disable the database trigger with the following sql statement (change the name of the trigger, as this is the name of the DDL trigger in my version of...
December 12, 2008 at 10:21 am
Christopher Stobbs (12/12/2008)
How can you tell from looking is sys.triggers which triggers are DDL?Will it be under the type_Desc?
The column parent_class_desc will say DATABASE for a DDL trigger.
December 12, 2008 at 9:59 am
You can find your Database Triggers under progammability in the object explorer.
December 12, 2008 at 9:56 am
Viewing 15 posts - 23,311 through 23,325 (of 26,490 total)