Viewing 15 posts - 586 through 600 (of 1,409 total)
If the solution from Abu Dina is oversimplified, below is a more practical solution.
SELECT GroupName, SUM(NumberOfCases) as NumberOfCases
FROM #TempTable
GROUP BY GroupName
UNION ALL
SELECT 'Grand Total' as GroupName, SUM(NumberOfCases)
FROM #TempTable
December 18, 2013 at 5:48 am
Are the backups of the other databases written to the same folder?
Does the SQL Agent service account has the correct permissions to that folder?
December 18, 2013 at 4:18 am
It is not possible to detach/attach a database from a higher version (SQL2008 R2) to a previous version (SQL 2008). You also can not restore a backup to a previous...
December 18, 2013 at 4:14 am
Can u give some more information? Perhaps add some samples to clarify your question?
I assume you have a table with a column with datatype BIGINT. You use that column...
December 18, 2013 at 4:05 am
The error message indicates the SQL Agent error logfile is locked by another proces. This proces could be for example an Anti-Virus application. When this error occurs you can use...
December 18, 2013 at 2:26 am
See if you are able to hold the last used report parameters in a table. For the next report read the parameters from the table and determine the new parameters...
December 18, 2013 at 1:33 am
Getting mountpoint info is a bit harder in older versions of SQL Server. I used to get the info by using XP_CMDSHELL and WMIC. I changed the output of WMIC...
December 18, 2013 at 1:19 am
The error message indicates problems connecting to the source. Do you see any errormessages in MySQL? Can you setup a monitoring in MySQL to record connections, connection-endings and connection-attemps?
You could...
December 16, 2013 at 5:36 am
A stored procedure cannot be changed without the ALTER PROCEDURE statement. Your statement the stored procedure "has changed itself" indicates someone executed code to drop/recreate or alter the existing stored...
December 16, 2013 at 5:29 am
First follow the advise given by Grant and Gail.
But also consider archiving some data. Does the business really need all the 400GB of data? Try to move parts of data...
December 16, 2013 at 4:56 am
double post
please only reply to http://www.sqlservercentral.com/Forums/Topic1523063-1550-1.aspx
December 16, 2013 at 4:49 am
When I read your posted error log, I see the following error:
MSI (s) (14:88) [10:06:28:569]: Product: Microsoft SQL Server Setup Support Files (English) -- Error 1402. Could not open key:...
December 16, 2013 at 4:14 am
In SQL Server you can see most of the connected application-names, but you cann't see if they connect through a DNS-alias or not. You have to look at the connection...
December 16, 2013 at 4:06 am
What happens when you recompile the query after it executed with slow response. Does that generate another queryplan once executed again? P.S.: don't update stats in between...
December 3, 2013 at 1:00 pm
- look for blocking processes during the moments the stored procedure takes a long(er) time to complete.
- capture the actual query plan of the stored procedure for both executing times...
December 3, 2013 at 8:00 am
Viewing 15 posts - 586 through 600 (of 1,409 total)