Viewing 15 posts - 8,926 through 8,940 (of 14,953 total)
You won't end up with a collation conflict with an inline query, because they're both being done in the same context.
For example:
;with CTE (ParsedString) as
select substring(@String...
July 29, 2009 at 7:18 am
Jeff Moden (7/28/2009)
July 29, 2009 at 7:11 am
I'm not saying it's somehow not allowed. I'm not saying it's not supported in any way. I'm saying it's got overkill issues. Express or Workgroup on XP,...
July 29, 2009 at 7:07 am
It took a paragraph for you to explain what you were doing in one of the examples. That's what I mean by harder to document. The one with...
July 29, 2009 at 7:03 am
sjsubscribe (7/28/2009)
Lynn Pettis (7/28/2009)
Freedom of something does NOT equate to Freedom FROM something.
You would certainly be considered a disruptive force in an orderly society that protects freedom of speech. Here...
July 29, 2009 at 6:55 am
I've never seen that one take any measurable amount of time, so I really can't say why it would in your case.
Can you provide table definitions and an insert statement...
July 28, 2009 at 3:11 pm
I'm not clear on what you're asking.
Do you need to do something beyond just query that column of data from the table?
July 28, 2009 at 3:08 pm
I haven't used ntext in SQL 2000 in a while, but I think it has to allocate space for it even if it's null. I could easily be wrong...
July 28, 2009 at 3:07 pm
You can use xp_cmdshell to query the files in a directory. Would that allow you to do what you want?
July 28, 2009 at 3:05 pm
I could be mistaken, but I think the XML for the query plan is built in tempdb. So, yeah, it could. Doesn't sound like it should in your...
July 28, 2009 at 3:03 pm
Jan Van der Eecken (7/28/2009)
john.arnott (7/28/2009)
Steve Jones - Editor (7/28/2009)
How about advanced pork chop aiming strategies for maximum developer damage?
Just be careful of starting an internecine battle. There are...
July 28, 2009 at 3:01 pm
Will this do what you need:
create table #temp1
(
name varchar(10),
ID int
)
insert into #temp1
select 'John',1 union
select 'Jane',1 union
select 'Fred',2...
July 28, 2009 at 11:50 am
I've always been on the notification list for my articles. I generally drop the subscription once the topic quiets down and has no activity for a few days, but...
July 28, 2009 at 10:31 am
Grant Fritchey (7/28/2009)
Luke L (7/28/2009)
Steve Jones - Editor (7/28/2009)
How about advanced pork chop aiming strategies for maximum developer damage?
And of course a ppt preso won't quite cut it. Perhaps...
July 28, 2009 at 10:29 am
Viewing 15 posts - 8,926 through 8,940 (of 14,953 total)