Viewing 15 posts - 15,091 through 15,105 (of 15,381 total)
It sounds like you are looking for three pieces of information. given the amount of people that have looked and the lack of anybody responding I will take a stab...
December 21, 2010 at 12:29 pm
I think you may need to brush a bit on the concept of views also. You do not put a trigger on a view nor does anything update a view....
December 21, 2010 at 12:23 pm
Assuming Date_Stamp is a datetime datatype you should make the variables datetime and not varchar otherwise you are forcing sql to do an implicit conversion over and over. If you...
December 21, 2010 at 10:17 am
and numeric 6??? Are you trying to store mmddyy instead of the actual datetime?
December 21, 2010 at 7:32 am
Ok thanks, we are considering implementation here. Any pointers about your experience and or better solutions out there?
Well in all fairness, Navision is probably a better system than what...
December 21, 2010 at 7:29 am
Ninja's_RGR'us (12/21/2010)
Sean Lange (12/20/2010)
December 21, 2010 at 7:19 am
Who is the owner in this case and does that account have permission to execute sp_send_dbmail?
For the trigger itself, It looks syntactically correct but I am not sure the logic...
December 20, 2010 at 8:29 am
Ugh! Navision aka No Vision. Just went through a lengthy migration away from that product for one of our companies. Interesting that their licensing is based on the number of...
December 20, 2010 at 8:04 am
Why are trying to kill off these sessions? This sounds like you are having problems with the connection pool?
December 20, 2010 at 7:49 am
True that it is dialect. Guess what? This site is about sql server and it's dialect. It is not called sql programming for ISO compliant dba. 😛
December 17, 2010 at 2:48 pm
Yeah i too was guessing he was forcing time to 00, I was really just suggesting doing the conversion once rather than over and over. 😉
December 17, 2010 at 2:15 pm
Why don't you use datetime variables instead of varchar and convert them over and over and over and over???
MMD.[DateTime]>= convert(datetime, @strStartTime , 101) and
MMD.[DateTime]<= convert(datetime, @strEndTime , 101)
Additionally you...
December 17, 2010 at 2:05 pm
Can you just remove the where clause to get all rows???
To look at your error:
Your subquery does not have an alias. You also should not use select *
December 16, 2010 at 2:27 pm
Viewing 15 posts - 15,091 through 15,105 (of 15,381 total)