Viewing 15 posts - 16 through 30 (of 153 total)
The DB belongs to a commercial (off the shelf) application that has not yet upgraded. I read and use data from their database.
February 11, 2010 at 6:12 pm
very much appreciate it. This means we go live with SQL 2008 this week. Thanks
Sam
October 20, 2009 at 12:11 pm
I've wondered about consolidating date and time into a single column. But I noticed that with SQL 2008, they now have capability for separate date and time, so I assumed...
August 21, 2009 at 6:03 am
Hi Jeff:
The reason I was adding a date from one column to the time of another column is because: This is a medical application and one surgical procedure might...
August 20, 2009 at 5:33 pm
both columns are smalldatetime.
DateAppointment is: 2009-07-17 00:00:00
TimeStart: 2009-07-16 12:30:00
August 7, 2009 at 7:45 pm
yes, I'd like to keep my job, so will work on the child SPs. That sounds like the best option. Thanks so much!!
Sam
May 20, 2009 at 6:17 am
It seems like my simplest option might be to pull lots of records over the network (one sp without a where clause) and then filter out what I want on...
May 17, 2009 at 3:07 pm
I had tried views before but performance was slow. I guess my best option may be what I'm doing. Just seemed redundant.
May 17, 2009 at 7:15 am
sorry for the trouble. I got it by adding the value in the select statement. Thanks
January 16, 2009 at 12:01 pm
THanks!
That seems so obvious now. Couldn't see it before.
Sam
July 12, 2008 at 8:26 am
I'm checking out some of the open source options in terms of perhaps porting over an application. I looked at MySQL and was stunned that they just now have stored...
April 20, 2008 at 6:19 am
kinda embarrassing but it was the
b.AppointmentID=a.AppointmentID
in the last line. I changed it to
b.AppointmentID=f.AppointmentID
the "f" alias referred back to the AppointmentAilment table. The "a" alias was referring back to...
April 12, 2008 at 8:37 pm
Viewing 15 posts - 16 through 30 (of 153 total)