Viewing 10 posts - 1 through 10 (of 10 total)
Thanks John,
Will try weitzera's suggestions.
August 27, 2011 at 1:10 am
Thanks John.!! For your kind reply.
This problem is not related to just presentation. I wanted to create SP on it, which will work for millions of records. And i m...
August 25, 2011 at 1:33 am
Hi buddy,
This error comes because there is problem with your data length.
Whenever you convert data type, please check your max(Len).
Regards,
prashavhad
July 18, 2011 at 12:11 am
Aggregate function error at your subquery.
Remember if you are using group by, you must have all columns in the select clause :-).
July 5, 2011 at 9:17 am
You must use DATEADD (datepart , number , date ) function to increment your Date.
See below what i had done.
select getdate()
Select Dateadd(yy,1,getdate())
Create table DateData(EName varchar(20), TDate Datetime)
insert into DateData values('Prashant',getdate())
insert...
June 24, 2011 at 2:03 am
While inserting data into a table, you should remove starting and ending brackets between each column data.
Please see below for this.
insert into #Personel values('deneme1','deneme2','deneme3')
insert into #Masa values('Masa1','masa2','masa3')
June 24, 2011 at 12:59 am
Use Bcp Utility for this,
create your format file without mentioning -t in format file
Thanks & Regards,
Prashant Avhad
May 31, 2011 at 12:20 am
You can use Export SSIS tool from Sql-2005 or DTS tool from Sql-2005.
It will surely work to out your table into same data type
Thanks & Regards,
Prashant Avhad
May 30, 2011 at 6:09 am
Viewing 10 posts - 1 through 10 (of 10 total)