Viewing 15 posts - 5,941 through 5,955 (of 18,926 total)
Delete in smaller batches and take log backups every x loops.
May 19, 2011 at 7:36 am
Don't even know if this is possible but...
select into + partitioning? Should be under 5 sec.
May 19, 2011 at 6:35 am
Delete unsused data.
Otherwise leave it alone.
Shrink is shrink, it's the same process.
It makes sense to shrink after you've archived or dumped a massive % of the data in...
May 19, 2011 at 6:33 am
odanwada (5/19/2011)
I am looking at total hours worked for each single project.
Is the bonus affected only once per employee? Is it on the max # hours for a single...
May 19, 2011 at 6:26 am
colin.Leversuch-Roberts (5/19/2011)
Do I think you can get under 5 secs...
May 19, 2011 at 6:24 am
sachnam (5/18/2011)
I suspect that you have case sensitive collation on that server. could you pls check the server collation.Regards,
Sachin
Yup, I have the same "delight" here.
Here's a tested version with correct...
May 19, 2011 at 6:03 am
Is the hd full?
Sorry, missed that line in the op.
May 19, 2011 at 5:59 am
I'm with Grant here... there's no way around writting a query for this. Once that's done you can use it any way you want.
Are you looking at total hours...
May 19, 2011 at 5:56 am
Read the whole discussion here
and here's another great site for reportviewer.
May 19, 2011 at 5:36 am
you could do SET @cnt = @cnt + @@rowcount.
Or you could do
SELECT * IDENTITY() from (
select * 1
union all
select * 2
union all
select * 3) dtAll
May 19, 2011 at 5:33 am
What do you mean by dynamic rdl? What's the business need behind it?
May 19, 2011 at 5:31 am
Install it in master. It will work all the databases by default.
May 18, 2011 at 5:58 pm
Digs (5/18/2011)
Ok I run the back up daily.
With what frequency do I run or should I at all run Integrity check and index optimization.
And what about this code that I...
May 18, 2011 at 5:16 pm
try it with assigning the result to a variable... there's a implicit cast in there you're not seeing.
May 18, 2011 at 5:13 pm
Viewing 15 posts - 5,941 through 5,955 (of 18,926 total)