Forum Replies Created

Viewing 15 posts - 181 through 195 (of 1,409 total)

  • RE: SQL Backup running long

    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)."...

  • RE: SQL Backup running long

    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...

  • RE: Table Partitioning - Data column

    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...

  • RE: Always On log file Full

    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...

  • RE: Delete massive records and still can't shrink db

    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...

  • RE: Query to Dynamically Sum Sales Amounts By Month, Quarter, or Year

    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...

  • RE: Sql Server Agent Profile Error

    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...

  • RE: Rearrange Display 3 id per row(6 rows 3 columns to 2 rows 9 columns)

    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...

  • RE: Different database collation

    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]...

  • RE: sCHOOL.BAK

    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...

  • RE: ParallelPeriod dynamic set very odd behaviour

    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

  • RE: SQL Mail

    HappyGeek (10/21/2016)


    Is it possible to make contingency for when SQL sends a mail as a result of an alert but the mail server simply fails to deliver? I think I...

  • RE: SQL Mail

    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...

  • RE: SQL query to find the previous date, current date data

    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...

  • RE: Can I do this?

    BLandry474 (10/21/2016)


    ... Right now this is all done by 'eyeball' and I thought if I had a good query that could examine a column and its length, then be...

Viewing 15 posts - 181 through 195 (of 1,409 total)