Home » CodeProject (Page 18)
Category Archives: CodeProject
How to move file through FTP by CMD ?
CMD code to upload file direct into root of FTP site of server @ echo off REM ******** this batch file is to upload file echo user username> ftpcmd.dat echo password>> ftpcmd.dat echo bin>> ftpcmd.dat echo lcd D:\Filelocation>>ftpcmd.dat echo put filename.csv>> ftpcmd.dat echo quit>> ftpcmd.dat ftp -n -s:ftpcmd.dat 172.xx.xx.xxx del ftpcmd.dat CMD code to upload … Continue reading
What happen, If SQL Server new instance try to use exitsing named instance name?
We all know that SQL Server can have 1 default instance & many named instance. But I want to check, How SQL Server Setup behave, If I tries to use instance name that is already being used by some existing SQL server on my system. I am already having 2 instances running on my system, … Continue reading
SQL Server 2012 SP1 CU1 Is Now Available !
The 1st cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft Support site. SQL Server 2012 SP1 CU1 contains fixes released in SQL Server 2012 RTM CU 3 & 4. For those who are upgrading to Service Pack 1 from SQL Server 2012 RTM CU3 or … Continue reading
SQL Server 2008 SP3 CU8 Is Now Available !
The 8th cumulative update release for SQL Server 2008 Service Pack 3 is now available for download at the Microsoft Support site. Cumulative Update 8 contains all the hotfixes released since the initial release of SQL Server 2008 SP3. Those who are facing severe issues with their environment, they can plan to test CU8 in … Continue reading
Restoring a SQL Server 2005 Full-Text Catalog to SQL Server 2012
Upgrading fulltext data from a SQL Server 2005 database to SQL Server 2012 is to restore a full database backup to SQL Server 2012. The full database backup will include the full-text catalog is required for upgrading & importing a SQL Server 2005 full-text catalog. Backup from SQL Server 2005 When the database is restored … Continue reading