Viewing 15 posts - 211 through 225 (of 433 total)
My apologies, I misread that totally :blush:
September 24, 2007 at 5:40 am
September 24, 2007 at 5:36 am
Vladan,
I think that this is possible using the two temporary table method. However, would the two temporary tables joined on emp_no and unique ID not require that the users log...
September 24, 2007 at 5:27 am
Because of the performance degradation a cursor so happily supplies this could take anything up to 30 minutes to perform. At the moment, I can't see a set-based answer to...
September 24, 2007 at 4:25 am
Jonas,
Hi, if this is a one off you could use a cursor (:sick:) to run through each row in the table to transform it to the new structure. I'm guessing...
September 24, 2007 at 4:03 am
Can you provide the DDL (Create statments) for both of the tables? If you could also point out which columns from table A roughly equate to table B, we should...
September 24, 2007 at 4:00 am
Hi,
Is there a common column (foreign key) between the tables or is it just a list of dates? If it's just dates you can:
SELECT dateColumn FROM tableA WHERE dateColumn NOT IN (SELECT...
September 24, 2007 at 2:33 am
Hi, with reference to the BCP command:
The temporary table is a global temporary table (## prefix, not #). This type of table can be used between processes. To check the...
September 24, 2007 at 2:07 am
Sorry, I missed the Header spec.... All this experience and can't read!! Apologies...
September 21, 2007 at 9:55 am
Robert,
Using a DTS package you could have 4 steps that create the 4 different format requirements and write them to files. You could then use an ActiveX script and the FileSystemObject...
September 21, 2007 at 9:37 am
Hi Guys, let me jump in here...
How are the headers supposed to be presented in the first line? Are they to be Character separated (using a comma, space, anything)? If...
September 21, 2007 at 8:52 am
Adam,
DTSRun is pretty much what you're stuck with as far as I'm aware... I'd be inclined to investigate why the package was hanging. Things like:
1. What task is the package execution...
September 21, 2007 at 8:34 am
Just a quick one Steve, to say good luck and I hope all goes well tonight (and the rest of the week) for everyone from SSC....
Sadly, I couldn't talk my...
September 18, 2007 at 2:11 am
As always, formatting results is best left to the front-end application if possible. SQL Server is a RDBMS system for transactions and formatting options are limited.
However, for the second value...
September 6, 2007 at 2:21 am
I'd have to agree with Matt on this one. DTS has built-in workflows, so why not use them:
On Success - The next task executes when the previous task completes...
September 6, 2007 at 2:12 am
Viewing 15 posts - 211 through 225 (of 433 total)