Viewing 15 posts - 3,601 through 3,615 (of 6,486 total)
Vicki Peters (4/17/2008)
I actually had coded that way initially, to just bring back the first day of the month. But the problem I'm having is...
April 17, 2008 at 9:19 am
Are they reporting performance issues? If so - what?
what is the usage pattern for the table? inserts vs updates vs deletes?
how do they mostly pull data? are...
April 17, 2008 at 9:01 am
Already answered over here:
http://www.sqlservercentral.com/Forums/Topic486502-8-1.aspx#bm486513
April 17, 2008 at 8:53 am
It might be better to send excel the date itself, and let it display it whichever way it likes. If you want to group things together by month, then...
April 17, 2008 at 8:52 am
It is a shame that they're all centralized up in Redmond. I can kind of understand why, but still - it seems like it could use having multiple dev...
April 17, 2008 at 8:16 am
Well - whichever way you decide to go - it sounds like you should hang on to this thread in case something changes. Given that each method seems to...
April 17, 2008 at 7:55 am
Given that a common mantra in SQL Server you might hear is "physical order has no meaning during inserts", I'm not sure that you will EVER be able to maintain...
April 17, 2008 at 7:05 am
Ben Sullins (4/16/2008)
SET NOCOUNT...
April 16, 2008 at 6:35 pm
Jeff Moden (4/16/2008)
Heh... you saw the definition of "users" right after my 3 rules... developers ARE users and they can be the worst///
Quick ruling here - do middle managers who...
April 16, 2008 at 5:22 pm
Primary key violation means that you are trying to insert duplicates of existing values already in table1 (or that table2 has multiple instances of the same field1/field2 combination).
Are you SURE...
April 16, 2008 at 5:15 pm
Ben Sullins (4/16/2008)
Tung,You cannot insert into a table variable via stored proc call...
With all due respect - it seems that you can. It certainly works for me...
April 16, 2008 at 5:08 pm
You have to use the grouping scope parameters.
Assuming your grouping looks like:
GroupA
Group B
...
April 16, 2008 at 3:24 pm
Correct. For all intents and purposes - it exists only within the confines of that create trigger statement.
Inserted (the new values) and deleted (the old values) are "virtual...
April 16, 2008 at 2:37 pm
wait a second.... The ON clause must link a field from one table to a field from the OTHER table, not to itself (that wouldn't do anything...).
The ON clause...
April 16, 2008 at 2:34 pm
Every place you see T2.courseID, replace with T1.courseID (there's a second one in the ON clause)....
April 16, 2008 at 2:25 pm
Viewing 15 posts - 3,601 through 3,615 (of 6,486 total)