Viewing 15 posts - 196 through 210 (of 253 total)
The certificate you used to sign your site, is created on a server with a higher cryptographic standard, than the client support. In order to support older browsers create a...
December 8, 2015 at 10:35 pm
You can also check out this article to export of XML data: https://msdn.microsoft.com/en-us/library/ms191184.aspx
December 8, 2015 at 9:52 pm
Check to see if your user is mapped to the DB you are trying to log into.
December 8, 2015 at 9:38 pm
Sometimes the TCP\IP wasn't listening to SQL Server when the service is restarted. So disabled TCP and reenabled after service restart
December 7, 2015 at 9:21 pm
Check out the following link https://technet.microsoft.com/en-us/library/cc781394(v=ws.10).aspx
December 6, 2015 at 9:31 pm
•Take the database offline.
•Bring it back online.
•Run DBCC checkdb to make sure everything is good.
•Set Auto Close = False.
December 4, 2015 at 10:30 pm
Corrupt NDF file had no data so removed it and the database will back online
December 4, 2015 at 10:24 pm
Add Administrators Group to the file security permissions with full control of the Data file (S:) and the Log File (T:).
December 2, 2015 at 10:17 pm
Verify that, the IP Address is set to the computer's IP address on the local subnet and make sure that TCP Dynamic Ports is blank
November 30, 2015 at 10:42 pm
in your publication databases try this
sp_removedbreplication 'PublicationName','both'
GO
November 30, 2015 at 10:24 pm
Check the username and the password you are entering is correct or check the Windows Authentication is enabled. To fix this issue you can take the help of this link:...
November 30, 2015 at 10:17 pm
tt-615680 (5/1/2012)
Would anyone be able to let me know how to resolve the following error message please?
Msg 911, Level 16, State 1, Line 1
Database 'databasename' does not exist....
November 29, 2015 at 10:34 pm
I am glad you resolve your problem :smooooth:
November 27, 2015 at 10:07 pm
batch file is capable of executing all .sql files in a folder which includes sub directory
@echo off
setlocal enabledelayedexpansion
set /p servername=Enter DB Servername :
set /p dbname=Enter Database Name :
set /p...
November 27, 2015 at 9:52 pm
try the following system tables which hold the various bits of information on the job
•msdb.dbo.SysJobs
•msdb.dbo.SysJobSteps
•msdb.dbo.SysJobSchedules
•msdb.dbo.SysJobServers
•msdb.dbo.SysJobHistory
November 27, 2015 at 9:38 pm
Viewing 15 posts - 196 through 210 (of 253 total)