Viewing 15 posts - 196 through 210 (of 1,160 total)
From the error message it seems that the network path is not accessible from the source path.
Check if "\\MYIP\" is accessible from the Server hosting the SQL Server instance. If...
December 20, 2010 at 6:34 am
I concur with Gail. The network drive is inaccessible in the middle of the backup. Please try taking the database backup on the local server and then move it to...
December 20, 2010 at 5:49 am
vinayak.v (12/20/2010)
hi .. pradeep..can we take backup of public IP system..
You can take the backup of any database onto any location provided you have requisite permissions on the SQL Server...
December 20, 2010 at 5:44 am
The reason for this is by default SSIS packages are saved with the "EncryptSensitiveWithUserKey" option. This ensures that the package is encrypted with the credentials of the user creating it....
December 19, 2010 at 8:24 pm
When the create database statement is running, it requires exclusive access to model database. Now that you have killed the sessions, do you see any other session blocking it?
select *...
December 17, 2010 at 12:19 pm
The procedure cache makes some objects remain in the tempdb. I had a similar issue[/url] and clearing the procedure cache helped me reduce the tempdb size.
Note: Please do not clear...
December 16, 2010 at 12:43 pm
Connect to that using SSMS and execute select @@servername
Enter the same server name in the ODBC connection.
December 16, 2010 at 12:32 pm
Please spend some time exploring the features available within a database in SSMS.
Here is the screenshot of where you can find the Full Text Indexes.
December 15, 2010 at 4:30 am
Check for any unused FULL TEXT INDEXES on that database. Removing them would help you fix this issue.
December 14, 2010 at 11:18 am
In Task Manager check if any other application is consuming more memory. Try to free up some memory on the system.
December 14, 2010 at 11:14 am
You may find the response from Jonathan Kehayias in this post useful.
December 13, 2010 at 7:46 am
I was able to overcome that by checking the job status before starting it.
select @J_SSIS_Status=run_status from sysjobhistory where job_id=@SSISStepID
and run_status=4
print @J_SSIS_Status
if @J_SSIS_Status <>4
begin
Exec msdb..sp_start_job 'sptest'
end
December 13, 2010 at 7:23 am
The Cleanup task in Maintenance Plans is the easiest way of doing this. Since you do not want to create Maintenance Plans, you can make use of a custom as...
December 13, 2010 at 6:18 am
Is "CLIENT: SomeIP" is the IP Address of the system from which the query got timed out?
If not, you are seeing this message because of the some inventory/port scanner software...
December 13, 2010 at 4:18 am
Viewing 15 posts - 196 through 210 (of 1,160 total)