Viewing 15 posts - 91 through 105 (of 166 total)
The SQL 2008 documentation covers it very well.
July 28, 2010 at 9:17 am
Is this an indexed view? Also are you just doing a raw select on the view or do you have some sort of qualification on the select?
July 28, 2010 at 7:58 am
Do you want quick or do you want minimally disruptive. They are both options...
July 27, 2010 at 3:06 pm
So is it confirmed that rebuild clustered index WILL ONLY DROP AND CREATE CLUSTERED index. Period, full stop. It only reindexes the index you specifically asked it to...
July 27, 2010 at 2:34 pm
Try
SELECT
Table1.DocumentDate,
Table1.EmployeeNumber,
count(*)
FROM Table1
WHERE User_id='1076'
AND Timeslip LIKE '%99'
Group by Table1.DocumentDate,
Table1.EmployeeNumber
Having count(*) > 1
or even
select a.* from
Table1 a,
(SELECT
Table1.DocumentDate,
Table1.EmployeeNumber,
count(*)
FROM Table1
WHERE User_id='1076'
AND Timeslip LIKE '%99'
Group by Table1.DocumentDate,
Table1.EmployeeNumber
Having count(*) > 1) b
where...
July 27, 2010 at 2:15 pm
About 98% sure that in 2005 and higher that rebuilding the clustered index does not force a rebuild on all of the other indexes in the table.
Actually I just confirmed...
July 27, 2010 at 2:09 pm
Is your IIS instance using SQL Server? Is it on the same server?
July 27, 2010 at 10:01 am
Yeah that would work, we have code that basically does the same thing.
July 27, 2010 at 9:55 am
Any chance you are doing this on a cluster?
July 26, 2010 at 9:58 am
I think SharePoint is designed so that it can deal with the crawl being the victim in a deadlock. So in this case it might be annoying but it...
July 26, 2010 at 9:57 am
Why do you have to shrink them? Are you running out of space? Is it a charge back thing?
If you are in simple mode, if anything I would...
May 18, 2010 at 9:04 am
Well....
If you are in simple mode the log is generally that big because that is how big it needs to be to complete all of the open transactions at that...
May 18, 2010 at 8:28 am
Yeah, that's kind of what I figured but it never hurts to ask... 🙂
May 18, 2010 at 8:24 am
Yes in the best of all possible worlds this would be addressed via the application.
I am not looking for suggestions on application development.
May 18, 2010 at 7:02 am
Viewing 15 posts - 91 through 105 (of 166 total)