Viewing 15 posts - 286 through 300 (of 1,170 total)
ScottPletcher (11/4/2015)
river1 (11/4/2015)
Hi,
I saw this job below which runs from 20 to 20 minutos on my production server.
Is it normal to have a statistics update every 20 minutos?
...
and ...
November 5, 2015 at 6:23 am
river1 (11/5/2015)
How can I see if the statiscts of other tables are ok or if they need to be updated?
You can run this query:
SELECT
[sch].[name] + '.'...
November 5, 2015 at 6:21 am
river1 (11/5/2015)
I was using performance monitor to check the activities on my disks.
I saw that with frequence it goes to 100% . Although it's an OLTP system should this be...
November 5, 2015 at 6:06 am
Hi,
There are performance counter for the disks.
You can measure for example
Avg. Disk Sec/Read and Avg. Disk sec/Write counters
in the Performance monitor tool (perfmon.exe). You can find them under Physical...
November 5, 2015 at 6:01 am
vishalsendmail (10/26/2015)
Thanks, the jobs would not be making changes as anticipated, however need to take into account any sort of data change.
You'd better not make a data/schema comparison after and...
October 26, 2015 at 6:03 am
Are there any jobs that could make update/insert of data?
Do you need data compare, schema compare or both?
October 26, 2015 at 4:56 am
It's definitely not desired read/write per sec times. We had a case with a SSD disk that went gone ... first starting with 0ms response times and increasing to 1.5sec....
October 20, 2015 at 2:38 am
Hugo Kornelis (10/7/2015)
I don't understand the discussion on...
October 7, 2015 at 4:02 pm
Thanks for the great articles. The SQL folks definitely need this knowledge.
October 7, 2015 at 2:32 pm
happygeek (10/7/2015)
Back to basics, nice timely reminder, thank you.
Yes, it's an easy question. It's a way how to prevent TRUNCATE on a table(s), especially in datawarehouses.
October 7, 2015 at 2:30 pm
Use this
SELECT t.ProductID,tmp.MaxSeqNo,t.Balance
FROM YourTable t
JOIN
( SELECT ProductID , MAX(SeqNo) [MaxSeqNo]
FROM YourTable
...
August 3, 2015 at 1:09 pm
Jacob Wilkins (7/31/2015)
1) Creating and populating the table. Nothing special to see in this bit.
2) Running the SELECT * from the Query2 window....
July 31, 2015 at 11:35 am
Question is not formed well.
The Query Store feature is not enabled for which databases?
- It's not enabled for all user databases by default. And you cannot enable the...
July 30, 2015 at 8:11 am
Viewing 15 posts - 286 through 300 (of 1,170 total)