Viewing 15 posts - 211 through 225 (of 335 total)
Yes, for new, uncertain/timid posters this av comes off bad, intimidating, etc.
Even for those not so timid, one is uncertain what to make of it.
If you do not want...
April 19, 2005 at 12:37 pm
Left field question: Are these numbers actually there or are they a floating point margin of error on the client side? (some numeric values may be interpreted/flipped by client side...
April 19, 2005 at 12:29 pm
I'm pretty sure someone else will have a better solution than this:
SELECT COALESCE( a1.id, a2.id, a3.id) as id, a1.val1, a2.val2, a3.val3
FROM (
select distinct id, val1 from #t
...
April 18, 2005 at 5:34 pm
OK, insert standard disclaimer about what you need this for and this not necessarily being the best solution..., but, I have done this in the past:
select a + char(13) +...
April 18, 2005 at 5:24 pm
(in regards to intellectual property)
The battle has been over and lost for a long time. What you see as conflict now is just scattered feeding frenzy resolutions.
IP is a bad...
April 18, 2005 at 1:24 pm
I can't answer that question directly, but here's what I do:
I have an "Execute SQL" step at the start of my data load DTS which issues a truncate on each...
April 14, 2005 at 12:37 pm
This is a tough subject. It has been going on for as long as there have been journals, online or not. I've had friends offered hardware and other rewards for...
April 12, 2005 at 5:00 pm
This is one of those issues...
When I have clients call me up with problems like this I tell them: If you have SA access I'll spend ten minutes with...
April 12, 2005 at 3:08 pm
He meant that the client application has to be coded in such a way as to provide it (hostname) when logging in. If the client app doesn't provide it, you...
April 12, 2005 at 3:03 pm
BEGIN TRAN
update tablename with (HOLDLOCK)
set somecolumn = 'X' WHERE anycolumn = nopossiblematch
and then don't issue a commit tran
but the bigger question is why or what are you really trying to do?
April 12, 2005 at 2:25 pm
(From what I know...)
Yes it includes the text (varchar) column. (even though you think it's 4k because of nvarchar it may be 2 bytes per position).
So, in order to do...
April 11, 2005 at 4:58 pm
Only for the duration of each individual delete. That is DML from other connections will pause and continue after each pass of the loop.
April 11, 2005 at 4:51 pm
Unfortunately you may eventually lose the war. The seductive sloppiness of microsoft development environments will continue to lead developers down the dark side.
Connection issues like this are very common in...
April 7, 2005 at 7:18 pm
I don't have a good answer for you. That is, (as far as I know) it gets really tricky to change the replication settings on a db once you've copied...
April 7, 2005 at 6:54 pm
Send me a PM if you don't find an answer to this.
I wrote a few generic utility functions for this specific task (scrambling data for testing) and they're all ready...
April 7, 2005 at 6:46 pm
Viewing 15 posts - 211 through 225 (of 335 total)