Viewing 15 posts - 181 through 195 (of 1,409 total)
What is logged in the SQL Error log for both (and previous) backup runs? Look for something similar like "BACKUP DATABASE successfully processed 3824 pages in 0.376 seconds (79.440 MB/sec)."...
October 25, 2016 at 4:07 am
In general the I/O is the limiting factor with backup operations. Does the size of the backup file differs much between the last and the previous one? Did you specify...
October 25, 2016 at 3:38 am
Can you show us the PARTION FUNCTION and the PARTION SCHEME (preferable by posting the DDL statements)? Without the definitions it is not possible for us to help you with...
October 25, 2016 at 2:19 am
The main question is: what were the actions executed on the database during the growth of the LOG file? Active transactions prevent a log-backup from releasing space inside the LOG...
October 25, 2016 at 2:12 am
Does the database consists of multiple files and/or multiple filegroups? When you want to shrink databasefiles using the GUI it will default show only the first datafile of the PRIMARY...
October 25, 2016 at 1:49 am
Are you able to modify the [tblMonth] to a more general calendar table (like this sample[/url])? That will allow you to join the table and use it as filter on...
October 25, 2016 at 1:32 am
Don't forget to look at the "Notifications" defined in the properties of each jobstep. Besides using the profile (by calling the sp_send_dbmail) through code, it could also be defined in...
October 25, 2016 at 1:07 am
With NTILE you are able to split the selection in groups of three. With a CASE statement on this NTILE column you can move the specific rows to columns. The...
October 24, 2016 at 8:34 am
I guess the different results are because the [tempdb] is always using the collations as set at instance level. So as soon as the queryplan decides to use the [tempdb]...
October 24, 2016 at 8:06 am
muhamadehsan (10/24/2016)
Actually I got the ...thanks
Go back to the source ;-). Ask the one who gave you the RAR file to unzip it, restore the BAK and just deliver the...
October 24, 2016 at 7:54 am
The weeknumber is determined different around the world, mostly depending on what is considered as first day of the week. Check the LOCALE settings of both environments.
information: http://www.epochconverter.com/weeknumbers
October 24, 2016 at 5:44 am
HappyGeek (10/21/2016)
October 24, 2016 at 5:37 am
The query below shows information about how mail has been processed according to SQL Server (see [sent_status] column). But if the mail failed on the SMTP-server without a proper feedback...
October 24, 2016 at 5:30 am
pietlinden (10/23/2016)
You may need to tweak the WHERE clause so it returns exactly what you want.
Your answer is perfect if you need to filter for the past 24 hours. As...
October 24, 2016 at 5:25 am
BLandry474 (10/21/2016)
October 21, 2016 at 8:12 am
Viewing 15 posts - 181 through 195 (of 1,409 total)