Viewing 15 posts - 61 through 75 (of 116 total)
Did you check your data?, dose it has any extra tab in between to columns?
June 16, 2006 at 8:45 am
May be your data is having tab in between the row's.
Why don't you try dts?
June 16, 2006 at 8:29 am
I found one more way to get the result, but I am not sure will this give the perfect result all the time.
select...
June 16, 2006 at 8:27 am
This query should work in best way....
SELECT *
FROM sysobjects
WHERE OBJECTPROPERTY(id,'IsMSShipped')=0
AND xtype = 'P'
June 16, 2006 at 8:24 am
I think the data in file for column 15 in first row is more then the column size in DB.
June 16, 2006 at 8:21 am
Let me first explain about MSDB.
if your db has some jobs shedule on it, all the information related to those jobs are stored in MSDB db which is system db,...
June 16, 2006 at 8:18 am
Following is the code i got of getting my result.
SELECT name FROM master..sysobjects WHERE xtype = 'P' and status > 0
June 16, 2006 at 8:03 am
Try this
FIELDTERMINATOR = ''\t'',-- this is for tab
ROWTERMINATOR = ''\n'' -- this is for new line
June 16, 2006 at 7:57 am
Try creating non-clustered index for table T2888_1900_1 on which your joning condition works.
June 16, 2006 at 7:49 am
This is some thing very usefull information which i was not aware of.
Thanks for the info.
June 16, 2006 at 6:42 am
Then you need to pass 3 parameter's, table name, column list & values.
It will be easy for you to do a direst insert instead of doing it through the sp...
June 16, 2006 at 3:59 am
Can you post the query?
As far as i know you can't join the DBCC command as its nothing but system sp & you con't join sp's.
June 16, 2006 at 3:13 am
Viewing 15 posts - 61 through 75 (of 116 total)