Viewing 10 posts - 16 through 25 (of 25 total)
Lads,
You all done good. Thanks for de-mystifying the issue for me.
I'm not too keen on the @@rowcount check because it does not look logical. eg..
SELECT @variable_name = {some_data} FROM {some_table}...
October 24, 2002 at 1:39 am
quote:
Generally, probably true. Absolutely true? No
Finally a realist. I have been in this...
September 16, 2002 at 10:52 am
If you have to be a ludite and use a text editor to develop SQL, rather than as suggested by another responder - use GUI it's easier - then it...
July 2, 2002 at 12:31 am
Try using the standard ActiveX Copy feature within the Transform task.
Basically, Add a Text Source, Add a Database Table Targe, Connect using a Transformation, Identify the Source, Identify the Target...
April 10, 2002 at 3:07 am
Try creating a database table which contains the name(s) of the files to be imported.
The first step of the DTS would be to read the name of the file to...
April 10, 2002 at 2:59 am
What about creating a temporary table?
Prior to running the query create a temporary table into which you insert all the values in the @param field eg:
CREATE TABLE #TEMP_KEYS
(
KEY_FIELD nvarchar(x)
)....etc.....
CREATE INDEX...
April 10, 2002 at 2:46 am
-- #
-- ### Add as many comments as you can to all your T-SQL
-- ### Ensuring that a reader of your code knows
-- ### Exactly what it is the following...
April 9, 2002 at 10:16 am
quote:
I have two tables in my DB
Have you tried :-
INSERT INTO Table1 (
...
April 9, 2002 at 9:21 am
Connie,
I ran your script and all seems to work fine in WK2. There is however a typo in the code :-
strLenght = Len(strCurrentMonth)
It does not seem to cause a problem...
April 8, 2002 at 8:08 am
Your client asks you to import data currently maintained on Post-It notes via a DTS and are not surprised when you achieve it?
Your client thinks adding a new entity is...
April 8, 2002 at 7:40 am
Viewing 10 posts - 16 through 25 (of 25 total)