Viewing 15 posts - 91 through 105 (of 117 total)
Hey everyone thanks for your help. I got the green light to use partitioning on the production database. Basically we have a database where we keep 31 days of logs...
December 15, 2008 at 7:46 pm
I will post requested scripts as soon as I get a free moment.
Skull Killer, I think your sample code will create an infinite loop - but I get the point.
December 12, 2008 at 8:19 am
Steve/Jeff thank your for your replies.
Jeff, I would be interested in learning more about the "chunk" routines.
Also, alternatively do you think this would be a good time to try out...
December 11, 2008 at 8:25 am
shirmanov (12/11/2008)
December 11, 2008 at 8:18 am
Well I am allowed some margin of error with the time range, so this turns out to be the best solution I came up with:
First aggregate the data:
declare @time_divisor float
select...
November 7, 2008 at 9:46 am
bang.prashant (9/30/2008)
I want to insert this data into other tables column2 having datatype -bit.
how to...
September 30, 2008 at 12:34 pm
I figured out how they did it. The sp that is called for the main dataset has several parameters that by default are null, but if something is passed into...
September 29, 2008 at 3:03 pm
perry.pierce (9/23/2008)
When I query this table with...
September 23, 2008 at 12:11 pm
Activescript is used for Adobe Flash my friend. 🙂
On the other hand, ActiveX scripting is very a large arena, and not something one can teach you in one forum post....
September 23, 2008 at 10:43 am
ramaanujamr (9/23/2008)
I have an issue, i just want to find school days between S and E for the students. I added school days column but it didnot work. in...
September 23, 2008 at 10:31 am
You can do this in a job-
Set first step to type ActiveX Script and create code (using the Scripting.FileSystemObject) throw an error # of files are not there.
Second step...
September 23, 2008 at 9:51 am
timothy.j.little (9/23/2008)
September 23, 2008 at 9:20 am
You can join the table with itself like so:
select t1.student_id, t1.date_time startdate, t2.date_time enddate, datediff(dd,t1.date_time,t2.datetime) attendance_days
from attendance t1 join attendance t2 on t1.student_id = t2.student_id
and t1.type = 'S' and t2.type...
September 23, 2008 at 9:07 am
How do you know what row is a start date, and what row is an end date? Is there a field, or are you making assumptions based on which date...
September 23, 2008 at 8:58 am
I think I can make something happen with that.... Thanks!
August 27, 2008 at 11:48 am
Viewing 15 posts - 91 through 105 (of 117 total)