ImLearner
Wednesday, October 12, 2011
How to check Full Text search is installed in your sysem SQL Server2008?
select SERVERPROPERTY('IsFullTextInstalled')
if this query returns 1 then its installed , if it returns 0 then its not installed.
Tuesday, October 11, 2011
Copy a file to another file by creating implicity
#include
main( )
{
FILE *fp,*fw ;
char ch,ch1 ;
fp = fopen ("C:\pr1.txt", "r" ) ;
fw = fopen ("C:\pr2.txt","w");
while(1)
{
ch=getc(fp);
fputc(ch,fw);
if(ch==EOF)
break;
}
}
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)