Viewing 15 posts - 2,791 through 2,805 (of 2,837 total)
Steve Jones - Editor (6/9/2010)
Football? I know minicamps [/url]are going on, but we're over a month away from football 😛
What do you mean? The playoffs are just about to start![/url]
June 9, 2010 at 1:03 pm
Got it. I thought the bad characters were appearing both inbetween and outside. Sorry about that.
June 9, 2010 at 12:18 pm
matt.parry (6/9/2010)
Stefan - thanks for the post but I used the replace function and the characters where too inconsistent and on the...
June 9, 2010 at 11:42 am
There's a very simple way: Use the REPLACE function.
For example
SELECT REPLACE(REPLACE(SampleColumn, '*', ''), '-', '')
FROM SampleTable
[/Code]
Just nest the REPLACE for each character you want to remove and replace it with...
June 9, 2010 at 11:15 am
Gianluca Sartori (6/8/2010)
Can anyone take a look at this one?I'm sure my solution sucks and I'm pretty sure the OP is lost and clueless.
Your solution was fine, but the OP...
June 9, 2010 at 9:06 am
Consider the difference between
SELECT E.EmployeeID, E.LastName, E.FirstName, D.DepartmentID, D.Department,
P.Project, P.ProjectID, PD.ProjectDetailID, PD.ProjectDetail PD.Comments
FROM Employee E
INNER JOIN Department D
ON E.DepartmentID = D.DepartmentID
INER JOIN ProjectInterim PRI
ON PRI.EmployeeID = E.EmployeeID
INNER JOIN Project P
ON...
June 9, 2010 at 6:41 am
David.Poole (6/8/2010)
June 8, 2010 at 10:57 am
meichner (6/8/2010)
I am using SQL Server 2005. Your idea however was interesting. I didn't know about the sparse setting.
Ah, sorry. Sadly, it is only available in 2008.
In older...
June 8, 2010 at 10:07 am
Thomas-282729 (6/8/2010)
Stefan Krzywicki (6/8/2010)
June 8, 2010 at 10:02 am
June 8, 2010 at 7:15 am
meichner (6/7/2010)[hr
Before I go about changing anything I just want to re state something so I can be sure of my design going forward. We are saying that its...
June 8, 2010 at 6:31 am
Thomas-282729 (6/7/2010)
June 8, 2010 at 6:24 am
Thanks! I've bookmarked it so I can rad it this weekend when I have the time.
June 4, 2010 at 12:12 pm
Gopi Muluka (6/4/2010)
Another assumption .. 🙂I think he need this
Yeah, that could work if he doesn't want to use the TallyTable for some reason. Though from his examples, I think...
June 4, 2010 at 8:10 am
Raju The Leader (6/4/2010)
we need to spilt the Varchar and Numeric data
Is it always alpha then numeric? In the example you sent me, it was the other way around.
June 4, 2010 at 6:45 am
Viewing 15 posts - 2,791 through 2,805 (of 2,837 total)