Viewing 15 posts - 841 through 855 (of 1,241 total)
I am still confused on the existence of the looping task. If you want to pull data hourly you can simply schedule the job to run hourly. Are you setting...
December 9, 2014 at 1:47 pm
Is this what you are looking for ?
with MYcte as (
select studentUID, qual, max(regyear) as throughYear
from #AAA_Mytable
group by studentUID, qual
)
SELECTt1.termCalendarID, t1.regyear, t1.studentUid, t1.qual
,coalesce(oa.rollover, 0) as Rollover
from #AAA_Mytable as t1...
December 9, 2014 at 1:10 pm
You probably have here the table being more index than data. The covering index helps but know the cost.... longer inserts, updates, deletes and makes maintenance plans (such as backups)...
December 9, 2014 at 12:09 pm
When the process is ran by a job, is the job step using a credential to run? If so it could be an account different from the one the Agent...
December 9, 2014 at 11:31 am
From reading the posts on this topic, an idea is to use sort of a hybrid system . That is, I would explain the purpose of the report and anything...
December 9, 2014 at 11:15 am
Are you doing a lot of transformations to this data? SSIS is effiecient in its resource use when you have non blocking data movements. (IE.. no aggregating, sorting....). How is...
December 5, 2014 at 6:52 pm
The Data Profile Viewer is installed through the SQL Server installation , not something that you can download for free (as of yet). In the install wizard one would uncheck...
December 5, 2014 at 1:45 pm
I am wondering if it is possible that the sql server service on that host machine has eaten up most of the available ram, to where the other processes have...
December 5, 2014 at 11:45 am
DonlSimpson (12/2/2014)
Jeff Moden (10/25/2008)
As soon as something needs to "go in in a hurry", all notions of standards and well intended code reviews will go by the wayside.+1
You may even...
December 2, 2014 at 5:49 pm
I'm assuming you are deleting/archiving based on the date here. I would try to build a clustered index on your table by date if it is not there already. Take...
December 2, 2014 at 1:50 pm
Hmm, he may be interested in having the time portion to report what time of day he has the most business. In this case it would be ideal/wise to just...
December 1, 2014 at 8:36 pm
You could schema bind a view to a table , so that the columns the view depends on are not altered until the binding is removed. This would have no...
December 1, 2014 at 6:33 pm
Be aware to first sort by the actual date field , then your derived time field in the report. Else although your time filed will be ascending, the dates will...
December 1, 2014 at 12:47 pm
Jeff Moden (11/24/2014)
Sean Lange (11/24/2014)
paul s-306273 (11/24/2014)
Reading 'XYZ', I'm surprised that the use of views is discoraged.
You read that document (which btw is more than 6 years old) and you...
December 1, 2014 at 12:41 pm
revanappa.shivanagi (11/22/2014)
Thanks!!!. In my project column names of source and destination table are diffrent. So is ther any way to map individual column between source and...
November 22, 2014 at 1:07 pm
Viewing 15 posts - 841 through 855 (of 1,241 total)