Viewing 15 posts - 2,446 through 2,460 (of 6,486 total)
Sergiy (10/8/2008)
karthikeyan (10/8/2008)
Actually we (mine and my manager) new to this project. My manager has looked some procedure few days back. He is not happy with the procedure case format....
October 8, 2008 at 9:00 pm
Jeff Moden (10/8/2008)
October 8, 2008 at 8:44 pm
The table is too small. No - really. There is something about the rebuild process that makes it essentially not work hardly at all on small tables,...
October 8, 2008 at 6:25 pm
You could simply instruct the data flow task to ignore the error as well. You should see that option if you right click on the right data flow component.
October 8, 2008 at 2:15 pm
jlp3630 (10/8/2008)
I like EXCEPT when I need to do "compound" comparisons.
What do you mean by "compound" comparisons?
When I'm trying to find differences across multiple columns.
As in something like
SELECT name, address,...
October 8, 2008 at 12:01 pm
bhovious (10/8/2008)
For what it's worth, I always use the left join format too. It's simple to remember, fast to execute, and...
October 8, 2008 at 10:34 am
You're right - it's easier to describe with an example!:)
Thanks for the assist.
October 8, 2008 at 10:07 am
rbarryyoung (10/7/2008)
Jeff Moden (10/7/2008)
BWAA-HAA! Did you leave any redmarks on your cheeks from the slingshot kickback? :hehe:Is that the tough chewy part?
I wonder if they're serving up Porkchops at...
October 7, 2008 at 8:58 pm
dr_csharp (10/7/2008)
Jason Shadonix (10/7/2008)
You might also need to give that inner query an Alias?SELECT Tab.A,Tab.B FROM (SELECT * FROM Table) Tab
thanks Jason you are right,but why we do this ?
i...
October 7, 2008 at 6:36 pm
If you are looking to pull the top 2000 values, including any duplicates of those values, you might care to combine what Barry was demonstrating with the WITH TIES clause.
So...
October 7, 2008 at 6:21 pm
Clint -
Jeff is pointing you to a high speed solution to your running totals problem. He's written a couple of articles on the topic. Follow the link...
October 7, 2008 at 6:12 pm
If you want to improve performance - ditch the cursor altogether. The overhead this has to be generating (with redundant calls against the SAME table over and over again)...
October 7, 2008 at 3:42 pm
bitbucket (10/7/2008)
http://www.sql-server-helper.com/tips/read-import-excel-file-p01.aspx
http://www.sql-server-helper.com/tips/read-import-excel-file-p03.aspx
these will...
October 7, 2008 at 3:04 pm
While I think Jeff's article explains it better - the running total/running count relies essentially on two pieces: 1. enforcing the order during an update, and 2. being able...
October 6, 2008 at 3:36 pm
Viewing 15 posts - 2,446 through 2,460 (of 6,486 total)