Viewing 15 posts - 61 through 75 (of 89 total)
yes, thank you. Not having to import '.' is good.
February 18, 2005 at 10:12 am
ok this is funny. Everyday I deal with at least one rabid pro-Microsoft nut who forgets that business see IT as nothing more...
February 14, 2005 at 7:04 am
weird.. my reply yesterday never posted.
Add the switch -r to your bcp command.
February 10, 2005 at 11:06 am
I have a header and footer text file and use dos copy to glue them together after export. The header also maps the schema and template.
Barbara
February 8, 2005 at 1:27 pm
Had the same problem...
export the data in a data stream - ado or bcp work.
February 8, 2005 at 4:00 am
I had a similar type of problem. I was getting data from a large supplier that had inconsistent data layouts, despite requests otherwise. Sometimes they would even add columns in...
February 5, 2005 at 8:21 pm
is this a one time deal? You could make this dynamic if not. I think this is what you want:
Insert sqltable (D_pKey,D_code1, D_code2)
select P_Key,
CodeA1, CodeA2
From exceltable
where CodeA1...
February 4, 2005 at 2:33 pm
My exp is often that the functions are slightly slower but usually not enough to supercede the benefits over views...
I have found functions to be a really good choice when...
February 4, 2005 at 2:23 pm
This is a column header:
XML_F52E2B61-18A1-11d1-B105-00805F49916B
You can turn off headings in qa or dts export. SET NOCOUNT ON will take care of the rowcount. Neither should effect an export..but
The problem i...
February 4, 2005 at 9:28 am
good tips, thank you.
I found i had to order it by something in the second union to get them "nested".
February 4, 2005 at 9:22 am
XML mapping. Export the data as xml (for xml auto will work). The template would be an excel wkbk with xml mapping. Neither portion is hard to implement. (must be...
February 4, 2005 at 9:18 am
Since you're just getting the year, would the year() function perform any better? Probably a wash, but maybe worth trying in addition to other suggestions.
Year() simply calls Datepart - so...
February 3, 2005 at 10:29 am
I dont know if this helps to know but it is likely this that is slowing down your qry:
order by datepart(yyyy, start_date) desc
Theoretically, if the clustered index is on date...
February 3, 2005 at 8:44 am
Thanks for the great insights!
I always think the analyst role is more related to understanding the why's and hows where the programmer role is more involed with process. I think...
January 27, 2005 at 4:31 pm
I believe the question to ask is where the workload is and plan according to that instead. I am assuming this is one server - so what is the filegroup...
January 20, 2005 at 5:04 pm
Viewing 15 posts - 61 through 75 (of 89 total)