Viewing 15 posts - 586 through 600 (of 6,678 total)
One of the best advantages to having extra space available in the data file is that space can be utilized for index maintenance. If you don't have enough space in...
April 24, 2022 at 3:10 pm
If the transaction log had to grow during this process - you can find out what process initiated that growth using the default trace. If there was no auto growth...
April 24, 2022 at 2:54 pm
And here is one more method - using the second parameter of EOMONTH:
Select *
, fom_date = datefromparts(year(getdate()), dt.mth + 1,...
April 22, 2022 at 9:23 pm
There isn't a need to build a tally table or calculate the month numbers. That can be done simply using VALUES to return 0 through 11 or 1 through 12...
April 22, 2022 at 9:12 pm
When will people finally realize that, quite frequently (usually, IMHO), the best way to do something faster is to slow down and do it right the first time?
Amen -...
April 22, 2022 at 7:22 pm
The application needs to pass the date/time as a datetimeoffset - but that won't provide you with the time zone. All that gives you is the offset for that client...
April 22, 2022 at 7:09 pm
If you can use VS to import the data - why do you need to use the import wizard? BTW - the import wizard is not going to use a...
April 22, 2022 at 6:36 pm
Thank you Michael, Jeffrey and ratbak.
@ Michael - thanks that makes more sense now, from your original post I was thinking I would see the parameter in plain text...
April 21, 2022 at 8:01 pm
Look at the permissions on the folder and each report. If the linked report is not inheriting from the parent folder - it may not have the correct permissions. Since...
April 21, 2022 at 7:49 pm
Unless you are performing multiple operations inside the loop - then there is no reason to begin/commit a transaction and really no reason to implement a try/catch. Now - if...
April 21, 2022 at 4:32 pm
In addition to Erland's comments - delete can be used to remove specific rows where truncate is all or nothing. There are additional side-effects to be aware of with truncate...
April 21, 2022 at 4:14 pm
The ideal solution would be to upgrade to Enterprise Edition - and then you could use a data-driven subscription. Or you could build out a process using powershell to automate...
April 20, 2022 at 9:09 pm
Those additional tabs are located under the Configuration tab. Click on that - and you will see the additional tabs and be able to modify the settings.
With that said, there...
April 20, 2022 at 8:20 pm
Homebrew01 - I have deleted the last "big" file but can try that if it does it again.
Micheal L John - no normal database activity. Nothing is purged unless...
April 19, 2022 at 8:38 pm
Viewing 15 posts - 586 through 600 (of 6,678 total)