Viewing 15 posts - 226 through 240 (of 253 total)
MSDTC is an acronym for Microsoft Distributed Transaction Coordinator. It is a separate Windows service which coordinates distributed transactions across SQL Server instances and only needed for transactions etc.
November 15, 2015 at 10:55 pm
Added the Administrators Group to the file security permissions with full control for the Data file (S:) and the Log File (T:).
Attached the database
November 9, 2015 at 9:27 pm
You can also do this
SELECT Dividend / ISNULL(NULLIF(Divisor,0),1) AS Result
November 8, 2015 at 9:58 pm
Try this syntax to drop full text catalog
DROP FULLTEXT CATALOG catalog_name
November 8, 2015 at 9:48 pm
The most common reason for uncontrolled log growth is being in Full Recovery mode without having any log backups.
November 8, 2015 at 9:23 pm
Nice explanation, thanks for sharing this informative article with us
November 7, 2015 at 3:47 am
Script to disable index:
ALTER Index indexname ON tablename.columnname DISABLE;
Script to enable index:
ALTER Index indexname ON tablename.columnname REBUILD;
November 6, 2015 at 10:38 pm
check out this link: - https://social.technet.microsoft.com/Forums/windows/en-US/a69b325e-c809-48c6-bf88-b90132fe0dfb/dbf-file-corrupted?forum=itprovistaapps
November 5, 2015 at 10:38 pm
I have found one article on the same error, maybe this will help you out, see form here: http://www.sqlserverlogexplorer.com/fix-error-message-40/[/url]
November 5, 2015 at 5:34 am
Enable TCP/Ip, Piped Protocol
From Computer Management ->SQL and Services, ensure the Service is On. Enable the port on the Firewall. Try to login through Command Prompt -> as Admin;...
November 4, 2015 at 11:43 pm
If Aliases are totally blank, then check SQL Server Browser service is running and is kept in automatic Start mode.
From start -> click on run- > type services.msc -> click...
November 4, 2015 at 11:12 pm
reddychaitanyakrishna (11/4/2015)
Getting an error while connecting to SQL Server Management Studio (SSMS) i.e connecting via Database Engine.
Go to Control Panel -> Administrative Tools -> Computer Management
Expand Services And Application-> SQL...
November 4, 2015 at 9:36 pm
USE AdventureWorks;
GO
SET ANSI_WARNINGS OFF;
SET NOCOUNT ON;
GO
WITH agg AS
(
SELECT
last_user_seek,
last_user_scan,
...
November 4, 2015 at 9:22 pm
use [master]
go
create proc dbo.sp_Drop_OrphanedUsers
as
begin
set nocount on
-- get orphaned users
declare
@user varchar(max)
declare c_orphaned_user cursor for
select name
from sys.database_principals
...
November 3, 2015 at 10:13 pm
Viewing 15 posts - 226 through 240 (of 253 total)