Viewing 15 posts - 8,131 through 8,145 (of 22,214 total)
Koen Verbeeck (5/15/2014)
Grant Fritchey (5/14/2014)
... So, if you need to have a mixed access table, ....
What do you mean with this?
The table becomes read-only, so you can access it only...
May 15, 2014 at 4:33 am
I'm a little confused. Let's verify that backups work. Can you run something like this from your T-SQL window in SQL Server Management Studio:
BACKUP DATABASE yourdbname
TO DISK = 'x:\yourdriveandlocation.bak'
WITH INIT,...
May 14, 2014 at 7:22 pm
isuckatsql (5/14/2014)
http://www.statisticsparser.com/Is this good enough?
Ha! Well that is one way to do it I suppose.
You're still dealing with the fact that some of the time you're seeing is just because...
May 14, 2014 at 5:08 pm
Oh, and welcome to SQL Server Central. We try to provide a nice, helpful place around here. If you ever get attitude from anyone, let me know.
May 14, 2014 at 3:39 pm
This web site [/url]does a nice job of summarizing the differences between the two. The big difference is that mirroring actually provides an automated stand by situation where the mirror...
May 14, 2014 at 3:38 pm
The big one for me would be that you can just add a nonclustered columnstore index to the table, but still have the table stored as a regular SQL Server...
May 14, 2014 at 3:29 pm
First thing I'd suggest is not trying to do this with stats. It's fine when collecting information for one query. As soon as you start collecting two, three, etc., it...
May 14, 2014 at 3:20 pm
Why are you using common table expressions here? You define this:
WITH results
AS (SELECT id,
...
May 14, 2014 at 12:47 pm
How are you measuring the time? From the SSMS client? That includes the time to transmit across the wires and isn't a good measure of server performance. If you really...
May 14, 2014 at 12:27 pm
I'm assuming you're getting the fragmentation information from sys.dm_db_index_physical_stats. If so, are you using the DETAILED mode to gather your metrics? I've never seen SAMPLED or LIMITED take very much...
May 14, 2014 at 10:50 am
The only way to get a really accurate count would be to use extended events or trace. Since you're 2008 trace will be easier since there is no GUI for...
May 14, 2014 at 10:48 am
That's a client testing issue. You're not going to see any problems from it during your upgrade in SQL Server, side-by-side or in-place. But you could see issues on the...
May 14, 2014 at 8:51 am
It's absolutely using sys.dm_os_waits_stats. But if you want to know which query, just run extended events/trace to capture it.
May 14, 2014 at 8:07 am
SQLRNNR (5/14/2014)
Grant Fritchey (5/14/2014)
Ed Wagner (5/14/2014)
Koen Verbeeck (5/14/2014)
GilaMonster (5/14/2014)
Koen Verbeeck (5/14/2014)
This was a funny topic 😀 (especially the last replies)Sorry, am a little short on patience today.
I pretty much laughed...
May 14, 2014 at 8:01 am
Again, if you do a search on the internet, there are tons of articles on this. Not just one. Here's a blog entry from MS on troubleshooting the issue. This...
May 14, 2014 at 8:00 am
Viewing 15 posts - 8,131 through 8,145 (of 22,214 total)