Viewing 10 posts - 1 through 10 (of 10 total)
Like the article.
I'd like to point to the fact that "PRINT @sql;" is limited to 4000 characters, therefore I use "SELECT CAST('<root><![CDATA[' + @sql + ']]></root>'...
May 6, 2019 at 12:17 pm
Luis Cazares (6/8/2016)
For a fast sequential read of a table to move data from one system to another, you could also use SSIS.You're doing ETL work, use the ETL tool.
Don't...
June 9, 2016 at 7:39 am
TheSQLGuru (6/8/2016)
tomd-982312 (6/8/2016)
I'm just trying to find simple code that reads sequentially row by row from table....
June 9, 2016 at 7:38 am
frederico_fonseca (6/8/2016)
tomd-982312 (6/8/2016)
drew.allen (6/7/2016)
June 8, 2016 at 1:06 am
Guys, this topic is not about efficiency, or RBAR, or order by, or dbms_output.put_line().
I'm just trying to find simple code that reads sequentially row by row from table. It's a...
June 8, 2016 at 12:52 am
drew.allen (6/7/2016)
June 8, 2016 at 12:34 am
Good article and not that good example.
September 9, 2013 at 5:24 am
1. Joining type - Inner Join
> intersection of two tables
2. Joining type - Left Outer Join (aka Left Join)
> all from left (first) table and only those from right (second)...
October 23, 2009 at 2:13 am
Yes, it is arrogance. :sick:
It's screaming "I am American/English/whatever and you're not!", "I speak perfect english and you don't", "I'm an arrogant bastard and you kiss my ...".
Arrogance at it's...
October 23, 2009 at 1:44 am
You can add an unconditional WHERE part.
... SET @sql = ' SELECT * FROM Production.Product WHERE 1 = 1 '...
Now you are sure that every other condition should...
September 28, 2009 at 2:59 am
Viewing 10 posts - 1 through 10 (of 10 total)