Viewing 15 posts - 2,161 through 2,175 (of 6,679 total)
My general approach to this type of problem is:
September 27, 2019 at 6:03 pm
The issue is only happening to Large tables with over few mil records.
I'm thinking to use PERSIST_SAMPLE_PERCENT or a separate job with fullscan for the tables in question for...
September 25, 2019 at 6:34 pm
Yes, new file will be in the same filegroup. Driver is that, how I now one big file is not good for best practices. Our database grows and this...
September 25, 2019 at 6:25 pm
Something like this?
@[User::Path] + "\\" + (@[User::IsActive] == "0" ? "Test1_" : "Test2_") + (DT_WSTR,4)YEAR(GETDATE()) + RIGHT("0" + (DT_WSTR,2)MONTH(GETDATE()), 2) + RIGHT("0" + (DT_WSTR,2)DAY( GETDATE()), 2)+ RIGHT("0"... September 24, 2019 at 10:02 pm
I don't use this tool - so I cannot say whether or not it is using a sampling rate to update statistics. If the index is rebuilt - statistics will...
September 24, 2019 at 9:53 pm
This doesn't appear to be a problem with the utility - rather, the problem appears to be auto-updated statistics. When you see the rows_sampled column as a small percentage of...
September 24, 2019 at 5:43 pm
If your report parameter is not defined as a date - it should be...if you are calling a stored procedure and the input parameter is not defined as a date/datetime/datetime2...
September 23, 2019 at 6:59 pm
You can download and install developer edition.
To change where items are deployed - you change the project properties (Project | {project name} Properties). This is where you define the server...
September 23, 2019 at 6:55 pm
There is no reason you need to store 'shared' datasources and datasets in the default folder. You can create any folder structure you need to support your organization.
For deployment purposes...
September 21, 2019 at 3:58 pm
I have seen this quite often - especially in the health care industry. A small department level application that does everything the users want it to do - and has...
September 20, 2019 at 7:10 pm
is it a heap? (does it have a clustered index)
if you process things nightly and delete data then the space can remain allocated but the data content is a...
September 19, 2019 at 7:12 pm
Ok - so it seems a command such as backup log <database> to disk='nul:' will sort this
it truncates the transaction log, so if I do that just before a...
September 19, 2019 at 7:09 pm
Is there a reason native SQL Server backups won't work?
Native compression from 2012 and higher has comparable performance to other tools now - and is the reason I no longer...
September 17, 2019 at 8:02 pm
Hmmm... interesting. I just found out that a 3rd party database on my system has this problem and the tables are NOT heaps. Multiple Clustered and Non-Clustered indexes have...
September 17, 2019 at 7:38 pm
Yes - you can restore to both the primary and the secondary in an AG. I would recommend trying it out - you have the new system available so you...
September 16, 2019 at 7:02 pm
Viewing 15 posts - 2,161 through 2,175 (of 6,679 total)