Viewing 14 posts - 1 through 14 (of 14 total)
http://support.microsoft.com/kb/283811
The account needs to be sysadmin in the SQL instance, but you do not want to add it to the local administrators group on the server.
March 7, 2007 at 6:06 am
As stated, you can update the MDAC on your SQL 7.0 machine to MDAC 2.6 or you could create an alias for your SQL 2000 instance on your SQL...
January 9, 2007 at 5:40 am
As stated, you can update the MDAC on your SQL 7.0 machine to MDAC 2.6 or you could create an alias for your SQL 2000 instance on your SQL 7.0...
January 9, 2007 at 5:39 am
If you don't have a backup of the msdb database, but you do have the .mdf and .ldf files, you can "restore" the old msdb by:
1. Shut down SQL Server.
2....
June 21, 2006 at 6:51 am
Have you had any problems with MDAC? Our service provider is saying that MDAC becomes a problem with the multiple versions.
Thanks for the reply!
May 26, 2006 at 12:12 pm
You can also use the stored procedure 'sp_changedbowner' to accomplish the same thing without the detach/reattach.
use yourdb
exec sp_changedbowner 'mydatabaseuser'
January 17, 2006 at 5:21 am
1. double click on AUTORUN.EXE.
2. on the next screen, click on SQL SERVER 2000 COMPONENTS
October 27, 2005 at 8:05 am
It's not clear from your problem description whether or not you are modifying the DTS package using the client tools on the server where you installed AS2K or on another client...
October 25, 2005 at 6:41 am
The embedded select statement in your update DML returns 6 values (658,628,678,648,688,698). The update will only work if the select statement returns ONE value.
October 21, 2005 at 5:46 am
Have you verified that the Oracle client is installed on all nodes of the cluster? Is the client the same version? Are the TNSNames.ora and SQLNet.ora files the same on all...
September 28, 2005 at 5:51 am
From your post:
chk = mid(strLinetoParse, 30,9) - to get first five chars of the description
Arguments for the mid function are (string, start, length). It looks to me like...
September 28, 2005 at 5:47 am
New Information - SQL Server 2000 SP3.
Includes all connection information necessary to access remote data from an OLE DB data source. This method is an alternative to accessing...
August 17, 2005 at 5:45 am
You definitely should NOT update system tables directly (see previous post regarding sysdtspackages).
If this is a one-time thing, you can transfer ownership of the package using the following undocumented...
June 28, 2005 at 6:26 am
One more small difference... You can grant an account delete permissions, but you cannot grant truncate.
March 31, 2005 at 6:32 am
Viewing 14 posts - 1 through 14 (of 14 total)