Viewing 15 posts - 5,821 through 5,835 (of 8,416 total)
Hi Chris,
I had to add a quick index on acct_no to get the table scale-up thing to work in my lifetime (the MAX gets out of hand without it!), but...
February 27, 2010 at 5:17 am
Dave Ballantyne (2/27/2010)
I have a blog entry on dynamic sql and unbalanced data loads which seems appropriate to pimp here 😉
Very nice. I seem to recall that there is...
February 27, 2010 at 4:28 am
Some code to illustrate my point:
DECLARE @Result
TABLE (
enrollee_id INTEGER NOT NULL,
...
February 27, 2010 at 4:22 am
lmu92 (2/27/2010)
Unless I'm overlooking something...
The reason for TYPE and the XQuery outside is to solve entitization issues.
Try including sample data embedded characters such as '&', '<', '>' (and so on)...you'll...
February 27, 2010 at 4:14 am
Matt Miller (#4) (2/22/2010)
WayneS (2/22/2010)
February 27, 2010 at 4:05 am
If you wanted to list all products which have all descriptors, you might use something like this:
DECLARE @product
TABLE (
product_id ...
February 27, 2010 at 3:22 am
-- Table 1
DECLARE @T1
TABLE (A INT NOT NULL);
-- Table 2
DECLARE @T2
TABLE (A INT NOT NULL);
-- Sample data for table 1
INSERT @T1 (A) VALUES (1);
INSERT ...
February 27, 2010 at 2:51 am
GilaMonster (2/27/2010)
Someone is a little over-sensitive to corrections and disagreements. Not just that thread, several previous ones too.
I had noticed that too, but thought 'Welsh Corgi' had improved in that...
February 27, 2010 at 2:41 am
Welsh Corgi
I regret if I came across as negative but the forum members that are crying that I am being a dick should closley examine themselves
I said "don't be a...
February 27, 2010 at 2:38 am
For completeness, I'm going to add a new method to the mix (before anyone else jumps in!).
This is a method called 'set-based iteration' by MVP Hugo Kornelis, which was first...
February 27, 2010 at 2:33 am
Michael Valentine Jones (2/27/2010)
Cutting off your head to avoid the pain is another possible solution. Again, most would consider it suboptimal.
I am just a mess of giggles here...:laugh: :laugh:...
February 27, 2010 at 12:53 am
ChrisM@home (2/26/2010)
ChrisMJunior Software Engineer
LMAO! :laugh:
February 26, 2010 at 11:56 pm
thummalalavanya (2/26/2010)
i want to insert bulk data in one field in a table without using txt file directly using insert statement .plese reply me.
Do you mean: You want to...
February 26, 2010 at 11:54 pm
Jeff,
Did you really just post:
The actions to take to counter intrusions should always be taken before the attempt at penetration and I'm careful to take those actions.
...? Have you...
February 26, 2010 at 11:50 pm
Kingston Dhasian (2/26/2010)
If you have a pain in your finger, chopping your hand off is not the solution.
In fairness, it is *a* solution, just probably not optimal :laugh:
February 26, 2010 at 11:40 pm
Viewing 15 posts - 5,821 through 5,835 (of 8,416 total)