Viewing 15 posts - 3,541 through 3,555 (of 6,486 total)
Steve Jones - Editor (4/23/2008)
Those sound like very interesting projects. Are they written up anywhere? You want to write an update for me sometime ;)?
The greenness of technologies is always...
April 23, 2008 at 10:40 am
Karthik -
You're trying to backdoor in some dynamic SQL without writing it up as dynamic SQL. It's not going to use the variable as a column name, it's...
April 23, 2008 at 8:00 am
Since we're talking energy - this caught my eye the other day....
http://wral.com/news/state/story/2746305/%5B/url%5D
As always - there seems to be some amount of controvery as to how "green" this process is, but...
April 23, 2008 at 7:53 am
Tim Curtin (4/22/2008)
Access Issues:
- Multi-user/network corruption
- Huge Loss of indexing/performance
- Driver bottleneck.
- Jet engine vs sql engine
- scalability
Need I go on....
Convince your boss to byte the bullet and do the...
April 23, 2008 at 7:31 am
Jeremy (4/22/2008)
April 23, 2008 at 7:17 am
you'd have to use Dynamic SQL to do so.... It doesn't look like it like a variable in the Identity() call
April 22, 2008 at 10:22 pm
martin scott (4/22/2008)
The data is headcount data from the result of a pivot from which I get...
April 22, 2008 at 9:41 pm
Jeff Moden (4/22/2008)
create table NumberClean (
Number bigint,
Clean varchar(100))
go
set...
April 22, 2008 at 9:38 pm
GSquared (4/21/2008)
Which means just over half the time of the Regex version.
Which is what I would expect if you know the actual pattern (meaning get rid of exactly 2 lines,...
April 21, 2008 at 4:46 pm
remove the INTO statement, and then put an INSERT clause in front of your select.
As in
INSERT #DLFiltered (
...
April 21, 2008 at 12:21 pm
john.arnott (4/21/2008)
Please tell me that you don't believe in the myth of code portability...
--Jeff Moden
It's not so much code portability as developer portability. I prefer being able to...
April 21, 2008 at 10:29 am
I hear you Greg - I was actually more addressing the OP's where clause.
It just looked to me that he had put the values he wanted the columns SET to...
April 21, 2008 at 10:13 am
Well - SELECT DISTINCT tends to be a costly operation, so doing it over and over and over again is something to be avoided, IF it can be avoided. ...
April 21, 2008 at 10:10 am
Susan Shafer (4/21/2008)
April 21, 2008 at 10:05 am
RyanRandall (4/21/2008)
select replace(@var, char(10) + char(13), '')
This works on my machine. The string you gave is '1yxyx2yx3yxyx4yx5' where y = char(13)...
April 21, 2008 at 9:44 am
Viewing 15 posts - 3,541 through 3,555 (of 6,486 total)