Viewing 15 posts - 256 through 270 (of 549 total)
30% is usually the rule of thumb (below 30%, you REORGANIZE or do nothing, above it you REINDEX)
Take a look at Books Online from Microsoft (sample script uses 30%)
DBCC INDEXDEFRAG
Defragments...
December 1, 2008 at 10:56 am
I am interested to know as well
Personally I think
Certifications like 70-431, 443, 444 for MCITP: DBA
and advanced books like
Inside T-SQL series
It's a never-ending road, sadly 🙁
December 1, 2008 at 10:48 am
I am in Canada, about to take my 70-431 soon too (should've done it a year ago)
but now a year later, I have learned a lot more that's beyond the...
December 1, 2008 at 10:45 am
SQL Server installation includes
SSDE (Database engine)
SSIS
SSRS
SSAS
so yes, it's part of the install
If you see "Reporting Service Configuration Manager" in Start Menu, it should mean that SSRS is installed
check your "Configuration...
November 28, 2008 at 5:38 pm
Thanks for the code
I think you missed the @DBName declaration at the top
Declare @sqlstmt varchar(5000);
declare @DBName sysname;
set @DBName = DB_NAME()
set @sqlstmt = 'use ['+@DBName+']' + char(10)
November 28, 2008 at 8:15 am
Even Full-Text may not be 100% to your request, but it's a start
You can assign weights to terms/words, but not the columns (which I hate)
Maybe take a look at this...
November 28, 2008 at 8:12 am
LiteSpeed Rapid Access to Backups: Save Time with Object Level Recovery
Backup and recovery activities divert expert resources from high-gain IT initiatives to role processes. Using LiteSpeed for SQL Server, you...
November 28, 2008 at 7:50 am
martincjones (11/27/2008)
November 28, 2008 at 7:49 am
I find that SSIS 2008 has improved much better
I had issues/errors involving truncation and unicode (despite nothing was in unicode column nor data) from Access 2003 to SQL Server
2008 automatically...
November 27, 2008 at 10:27 am
You should use GROUP in the Table/Matrix, that's what it's created for
Then you can just leave the Group Footer blank to have your blank row
November 27, 2008 at 10:23 am
Tough to guess without knowing too much
But it could depend on the workload at the job execution time, the fragmentation of the indexes, blocking processes...
Are these OFFLINE re-indexes? are they...
November 27, 2008 at 10:19 am
It's typical for a discussion forum
I just subscribe to a thread with no email notification for a favorite
For articles, I use the "Briefcase" feature
November 27, 2008 at 9:29 am
Thanks for the help Gail
Yeah, "fortunately" we are moving away from this server (it's being migrated)
Otherwise I don't know how easy it is to convince others to go on a...
November 26, 2008 at 11:28 am
I know about the Broadcom Gigabit NIC driver, and it's updated as well (I'll re-check it)
We have
2 Broadcom BCM5708C NetXtreme II GigE NIC
2 Intel PRO/1000 PT Dual Port
and this...
November 26, 2008 at 8:13 am
Mnn, if you assign the users appropriate limited permissions
Won't they just use the same SSMS interface, just with less options?
They don't see everything a sysadmin would see
Beyond that, either write...
November 26, 2008 at 7:58 am
Viewing 15 posts - 256 through 270 (of 549 total)