Viewing 13 posts - 1 through 13 (of 13 total)
Yes, I've seen too many instances where the accidental DBA was shrinking data files every night.
Always fun to see their faces when you come in, see that, rebuild all indexes...
September 8, 2017 at 3:16 pm
No, of course not. This information is part of my daily run of checks on 50+ SQL Instances, goes into a dashboard and triggers proactive growth of data files when...
September 8, 2017 at 10:06 am
Jeff, i tend to disagree.
If you want to get the actual usage information (via fileproperty or sp_spaceused) is only available for the current database. So you need to loop...
April 5, 2017 at 9:01 am
April 5, 2017 at 7:43 am
The last query posted by SQL_Elvis is actually wrong:
CAST(FILEPROPERTY(name,''SpaceUsed'') AS INT) UsedSpaceMB,
should be
CAST(FILEPROPERTY(name,''SpaceUsed'')/128 AS INT) UsedSpaceMB,
April 5, 2017 at 4:19 am
hmm, can't believe noone has answered at all.
Come on folks, I am just asking about your experiences with this. Is a simple fulltext query really that much slower than a...
January 19, 2011 at 6:37 am
Hi SQLBuddy,
thanks for the answer. Yes, I realized that by now.
Only leaves me with one small problem.
I know how to move a normal index with Create index... DROP_EXISTING.
And I realize...
January 12, 2011 at 11:32 am
ok, even if I am talking to myself, maybe it helps others.
I was mislead from my SQL 2005 experience where the catalog was a real object.
Starting from SQL 2008, the...
January 12, 2011 at 9:48 am
allright, I played around a bit more and now I am even more unsure as to what's going on.
My fulltext index was based on 3 different tables.
I manually moved the...
January 12, 2011 at 9:28 am
xp_readerrorlog only queries the SQL server log(s), not the windows event log
January 12, 2011 at 6:16 am
sorry, posted to the wrong forum. could an admin please remove this thread?
I now posted to the correct forum
Thanks
/usenet
January 12, 2011 at 5:50 am
Hi Steve,
yes. But that requires to create them on the remote server. I ended up using linkedServers and local stored procedures to encapsulate the complex logic. The sample I posted...
May 19, 2010 at 5:10 am
yes, thanks. that solved the immediate problem - I was slapping my head tonight when i realized that i just didn't think about this solution 🙂
But the more general problem...
May 18, 2010 at 5:28 am
Viewing 13 posts - 1 through 13 (of 13 total)