Viewing 15 posts - 151 through 165 (of 253 total)
Check out the following link hope this link will help you: https://msdn.microsoft.com/en-us/library/ms161959.aspx
January 8, 2016 at 10:25 pm
Enable SQL Server Browser (in SQL server config manager), named pipes and TCP/P as well
January 8, 2016 at 9:59 pm
Why should I create separate schemas?
There may be an impact on the performance of the query optimizer, albeit a small one, depending on your coding style
January 7, 2016 at 10:39 pm
Hi everybody !
What happens if ...
1) Master.mdf from server A (sql2005) becomes corrupt and sql A won's start. There is no backup except those belongings of the production tables
This...
January 6, 2016 at 11:10 pm
you can also use ALTER AUTHORIZATION
ALTER AUTHORIZATION ON DATABASE::MyDatabaseName TO NewOwner;
GO
or alternately use sp_changedbowner statement
January 6, 2016 at 9:40 pm
To fix this problem you need to update the MP to the SQL related MPs 6.6.4.0
January 6, 2016 at 9:24 pm
USE AdventureWorks;
GO
SELECT definition
FROM sys.sql_modules
WHERE object_id = (OBJECT_ID(N'AdventureWorks.dbo.uspLogError'));
January 5, 2016 at 10:01 pm
Having multiple file in a filegroup helps you to increase sql server performance in some secnarios. Take a look at this article may this this will help you:
January 5, 2016 at 9:42 pm
I think you need to recreate the script and add the FQDN of the client in the host file
Or take a look at this article may be this will...
January 4, 2016 at 9:33 pm
SELECT instance_name, type_version FROM msdb.dbo.sysdac_instances
January 4, 2016 at 9:19 pm
I found another thread with the same error:https://social.technet.microsoft.com/Forums/sqlserver/en-US/b303f0f6-2966-4fcc-aa46-20b31c56bfd7/troubleshooting-service-bropker-error?forum=sqlservicebroker"> https://social.technet.microsoft.com/Forums/sqlserver/en-US/b303f0f6-2966-4fcc-aa46-20b31c56bfd7/troubleshooting-service-bropker-error?forum=sqlservicebroker
January 3, 2016 at 9:37 pm
Try this
select dateadd(minute, datediff(minute, 0, yourcolumn), 0) from yourtable
December 29, 2015 at 10:07 pm
Use ALTER AUTHORIZATION on the databases which have the NULL login match for dbo.
ALTER AUTHORIZATION ON DATABASE::Example TO sa;
December 29, 2015 at 9:49 pm
SQL Server Error 3013 occur
While executing the backup operation, the write failure might take place. Here is a link to a presentation that might help you to fix the...
December 29, 2015 at 9:43 pm
Viewing 15 posts - 151 through 165 (of 253 total)