Viewing 15 posts - 76 through 90 (of 149 total)
seems like table has all the records... still this error. I guess it is due to size issue... I was importing from flat file to sql using wizard.. file size...
August 1, 2009 at 8:09 pm
Oh topic has sql 2006 instead of sql 2005... typo sorry!
August 1, 2009 at 11:35 am
Awesome...Thank you.
August 1, 2009 at 9:11 am
This works:
declare @temp_table_name varchar(255), @temp_table_name2 varchar(255)
set @temp_table_name = '[staging1]'
set @temp_table_name2 = '[staging2]'
Exec ('SELECT RowNum ,
WholeRow = dbo.fn_true_csv_split(WholeRow,char(9))
INTO ' +...
August 1, 2009 at 2:53 am
Jeff,
First of all thank you so much again for assisting me on this. Since we cannot use the UDF in dynamic sql what do you suggest.. CLR might be too...
July 31, 2009 at 8:56 pm
Use the key to join the table to this subquery and delete .... one way to do that
July 29, 2009 at 11:23 pm
What do you mean by no relationship? Based on which columns are you looking for relationship or no relationship between the tables?
July 29, 2009 at 10:05 pm
I know that Jeff. Thanks for all ur help...hope I am not ruining your weekend.
July 25, 2009 at 11:18 pm
Jeff Moden (7/25/2009)
1st field - never quoted
2nd field - always...
July 25, 2009 at 11:04 pm
First, some data from your post...
6053339541,"11 LONG CIRCULAR ROAD ,ST,JAMES,",05,this is a sample,"tiger, scott"
__________ ________________________________ __ ________________ ____________
6053339542,"11 LONG CIRCULAR ROAD ,ST,JAMES,",05,this is a sample,"tiger, scott"
__________...
July 25, 2009 at 10:58 pm
Guys thanks for all the info... definitely helped me to understand few things...
My issue was solved by updating the compatibility level I think..
exec sp_dbcmptlevel 'dbname', 90
July 25, 2009 at 10:09 pm
As far as number of rows are concerned, most of the files will be small around 100,000 to 200,000 rows with around 10 fields, but small number (1 a day)...
July 25, 2009 at 9:46 pm
Viewing 15 posts - 76 through 90 (of 149 total)