-
Renamed sa causing problem during replication distribution setup
-
Find out version number of Reporting Services
-
Sql Server aliases can be handy at times
-
DTS runtime and Legacy Components are not supported on 64-bit
SQL Server 2005 provides a utility called DTS Migration Wizard to help you move your legacy DTS 2000 packages to SSIS format. It is not guaranteed to work perfectly, but it will make a best-effort attempt. Initially, you may want to install DTS runtime on the SQL Server 2005 box so you can continue running…
-
Connect to a different database server within command line utility
In sqlcmd, you can connect to a different server by this command: :connect MyServer The above command will attempt to use integrated / Windows Active Directory authentication. To use traditional Sql Server authentication, use this instead: :connect MyServer -U MyLogin You can do the same kind of thing in Oracle Sql Plus by using this…