Viewing 15 posts - 18,106 through 18,120 (of 18,926 total)
Are you inserting like this??
Insert into dbo.MyTable (Col, Col2, Col3) exec dbo.MySP
..cause if you're not specifying the columns of the insert you can have a lot of problems.
April 19, 2005 at 6:36 am
I certainly hope you have more than that left in you
.
April 19, 2005 at 6:23 am
BTW I've already created a report that looks a lot like a calendar (only 1 week at the time). I too will resuggest that you use dynamic sql only...
April 18, 2005 at 12:44 pm
Can you post the query (at least pseudo-code) so that we can help developping it?
April 18, 2005 at 12:35 pm
I'm obviously way over my head in this thread... I'll let the gurus handle it.
April 18, 2005 at 11:34 am
INSERT dbo.Contacts(compID, first, last, phone, email)
SELECT compID, fname, lname, phone, email
FROM dbo.import_contact IC
WHERE not exists (Select * from dbo.Contacts C where c.compID = ic.compID AND c.first...
April 18, 2005 at 11:22 am
When are you increasing the alert count?
April 18, 2005 at 11:17 am
The Curse and Blessings of Dynamic SQL
I would strongly suggest a set based solution but this might be a hard one compared to dynamic sql.
April 18, 2005 at 10:14 am
The question is more "Why are you designing the table like that instead of having a single date column?".
April 18, 2005 at 9:58 am
We can't help you without the trigger code. Can you send us the relevant part of the script?
April 18, 2005 at 9:58 am
Strange, maybe the bookmark lookup cost was too high compared to the scan... Would have too see the ddl and the data to be more sure.
April 18, 2005 at 8:43 am
You're right ron k .. I forgot to take in consideration midnight on the 2nd day with the between operator.
April 18, 2005 at 6:14 am
Viewing 15 posts - 18,106 through 18,120 (of 18,926 total)