Viewing 15 posts - 1 through 15 (of 565 total)
Assuming the Agent XPs configuration option is good to go, check out - https://thelonelydba.wordpress.com/2012/08/09/sql-database-misteriously-read-only/[/url]
March 9, 2016 at 1:25 pm
dan-572483 (3/9/2016)
I have added an Active...
March 9, 2016 at 1:11 pm
Referenced an example below
USE [master]
GO
EXEC master.dbo.sp_addlinkedserver @server = N'ADSI', @srvproduct=N'Active Directory Service Interfaces', @provider=N'ADSDSOObject', @datasrc=N'adsdatasource'
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'ADSI',@useself=N'False',@locallogin=NULL,@rmtuser=N'SOMEDOMAIN\UserName',@rmtpassword='*******'
GO
EXEC master.dbo.sp_serveroption @server=N'ADSI', @optname=N'collation compatible', @optvalue=N'false'
GO
EXEC...
May 1, 2015 at 8:18 am
If you are uncertain as to the source, might want to start by launching a command prompt and issuing a ping -a XXX.XXX.XXX to identify the source. Once you have...
September 11, 2013 at 11:42 am
I know this is a really old thread....did you ever find a solution via SSIS for importing BAI files?
Thanks,
July 26, 2013 at 6:24 am
Which edition are you using? Are you aware of the new core licensing model in SQL Server 2012?
http://www.microsoft.com/en-us/sqlserver/get-sql-server/how-to-buy.aspx
June 13, 2013 at 12:07 pm
Have you tried querying AD using a linked server via the OLE DB Provider for Microsoft Directory Services?
Check out -
http://msdn.microsoft.com/en-us/library/ms190803(v=sql.105).aspx
June 13, 2013 at 11:58 am
The packages aren't automatically upgraded to the SQL Server 2012 package format.
Per BOL -
"At runtime DTEXEC uses temporary upgrade process for an existing SQL Server 2005 or 2008...
June 13, 2013 at 11:54 am
In our case, this was remediated in CU4 for SQL Server 2012 SP1.
An update is available for SQL Server 2012 Memory Management
http://support.microsoft.com/kb/2845380
CU4 for SQL Server 2012 SP1
http://support.microsoft.com/kb/2833645/en-us
http://www.sqlservercentral.com/Forums/Topic1415833-2799-3.aspx#bm1458905
June 13, 2013 at 8:30 am
CU4 for SQL Server 2012 has been released which corrects this issue.
http://support.microsoft.com/kb/2845380
CU4 is available for download via:
May 31, 2013 at 5:54 pm
FYI, it would appear CU4 for SQL Server 2012 SP1 is immanent based on KB2828205. It is my understanding CU4 will correct the memory management issue which was broken in...
May 28, 2013 at 12:04 pm
You may also want to take a look at this thread on SSC -
http://www.sqlservercentral.com/Forums/Topic708053-146-1.aspx
May 15, 2013 at 10:27 am
Good point. There are other options available. Have you consider the potential for data loss? The following thread may be helpful.
http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/76e99d3a-0d6b-4ee3-8f22-6d56c3c6e50c/[/url]
May 15, 2013 at 10:13 am
FYI, I believe this was the fix SQLRNNR was referring too -
http://support.microsoft.com/kb/2509302
CU2 for SP1 available via -
May 14, 2013 at 7:54 pm
Which DB2 client are you working with, IBM? Have you tried Microsoft's OLEDB provider for DB2?
http://www.microsoft.com/en-us/download/details.aspx?id=29100
May 14, 2013 at 11:22 am
Viewing 15 posts - 1 through 15 (of 565 total)