Viewing 15 posts - 23,311 through 23,325 (of 26,486 total)
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
Start in your current database with the following query and then move to the master database. You may find that there is a DDL trigger that is firing when...
December 12, 2008 at 9:50 am
Steve Jones - Editor (12/12/2008)
December 12, 2008 at 9:40 am
Steve Jones - Editor (12/12/2008)
I feel old until I read some of these posts.
Been driving on four wheels for 26 years, 25 cars in that time,...
December 12, 2008 at 9:24 am
jcrawf02 (12/12/2008)
December 12, 2008 at 8:13 am
Viewing 15 posts - 23,311 through 23,325 (of 26,486 total)