Viewing 15 posts - 406 through 420 (of 1,409 total)
Pulivarthi Sasidhar (7/8/2014)
Msg 2555, Level 16, State 1, Line 2
Cannot move all contents of file "tempdev1"...
July 8, 2014 at 4:41 am
It would be very helpfull if you can give us some sample data and the desired result.
See this link on how to post sample data: http://www.sqlservercentral.com/articles/Best+Practices/61537/
July 8, 2014 at 4:10 am
Use this command to empty the contents of the file. Only when the file is not used it can be removed.
DBCC SHRINKFILE (N'{datafile_name}' , EMPTYFILE)
You can also just remove the...
July 8, 2014 at 4:00 am
I would prefer to execute the healthcheck locally by means of a SQL job and store the results in a table. The next step is to consolidate the data of...
July 8, 2014 at 3:18 am
If you replace the sub-selects to regular JOINs it will certanly clearify a lot and most likely improve performance. To make the query sargeble you also need to remove the...
July 7, 2014 at 8:29 am
The "SELECT @Emp_ID = Emp_ID" part assigns a value to a variable and does not return any records. Therefor it can't be used to insert records into a (temporary) table.
You...
July 7, 2014 at 8:14 am
If they re-appear automaticly, they could be started by an SQL Agent job or perhaps by an application (like a monitoring application). You need to find out the process that...
June 30, 2014 at 8:22 am
Can you give us the exact code of the procedure and the exact code you execute from the query window, instead of a descriptive text of your action? If possible...
June 26, 2014 at 7:55 am
I don't have a script myselef, but it looks like this http://www.sqlservercentral.com/scripts/Database+Mail/100073/ can give you a rather good starting point.
You can also create a script yourself using the [msdb].[dbo].[sysmail_add_....._sp] stored...
June 25, 2014 at 4:59 am
Do you have a (local) firewall that blockes all connections?
Are you and your co-worker on the same network?
Can you connect when you use your co-workers workstation?
Can your co-worker connect when...
June 25, 2014 at 4:30 am
Have you looked at the script section of SQLServerCentral?
http://www.sqlservercentral.com/search/?q=mail&t=s&sort=relevance
June 25, 2014 at 4:25 am
sestell1 (6/24/2014)
I like to set all my production server connections to red, to cut down...
June 24, 2014 at 7:21 am
Abhijit More (6/23/2014)
June 23, 2014 at 5:25 am
Abhijit More (6/23/2014)
June 23, 2014 at 5:17 am
Your problem is the text "HANDLING CHARGE" a complete value of its own, but also exists as a part in every other value. You need to alter the JOIN to...
June 23, 2014 at 4:14 am
Viewing 15 posts - 406 through 420 (of 1,409 total)