Viewing 15 posts - 3,526 through 3,540 (of 6,486 total)
Jeff Moden (4/25/2008)
GSquared (4/25/2008)
April 25, 2008 at 8:30 am
Gail (4/25/2008)
one when executing the original query you posted i get
The multi-part identifier "Ufn_GetLocationsInRadius.distance" could not be bound.
for the line in the select statement...
April 25, 2008 at 8:20 am
Well as with many situations - the answer to "the best way to parse" will be - it depends. T-SQL has some fairly decent built-in functions, but they fall short...
April 25, 2008 at 8:15 am
SQLServerLifer (4/24/2008)
Try this...
SELECT
mytable1.dbo.app_TelephoneDetails.FirstName,
mytable1.dbo.app_TelephoneDetails.LastName,
mytable1.dbo.app_TelephoneDetails.City,
mytable1.dbo.app_TelephoneDetails.State,
mytable1.dbo.app_TelephoneDetails.ZIPCode,
Ufn_GetLocationsInRadius.distance,
...
April 25, 2008 at 7:17 am
Sergei Zarembo (4/24/2008)
GSquared (4/24/2008)
Now, can that be added into Matt's regex easily, to deal with removing all other non-numeric symbols, but leaving complex numbers intact?
GSquared,
please tell me which Matt's regex...
April 25, 2008 at 6:56 am
Since you're in 2005 - you might care to sprinkle a few "with recompile" statements in there, especially if you use conditionals in the WHERE clause like Grant is talking...
April 25, 2008 at 6:50 am
Erik (4/24/2008)
Are you sure this is the case? I just created a proc which creates a temp table called "#temp" and ran the proc through SQL Management Studio. After the...
April 24, 2008 at 3:54 pm
WILLIAM MITCHELL (4/24/2008)
Matt,The OP was going to connect from VB6 thru Access to SQL Server, and I don't think that AutoExec would run in that scenario.
I guess I'm making assumptions...
April 24, 2008 at 11:33 am
Grant Fritchey (4/24/2008)
April 24, 2008 at 11:23 am
WILLIAM MITCHELL (4/23/2008)
In Access, when you create a link to an ODBC data source, Access will memorize the schema of the underlying table. If you make a change to...
April 24, 2008 at 10:23 am
Replace your WHERE's with ON's...
April 24, 2008 at 10:16 am
Grant Fritchey (4/24/2008)
I just checked, squealservercentral.com is available. Steve?Or maybe we should set up a parody site. We could use Brandy's pirate themes...
I've already come across the right...
April 24, 2008 at 10:11 am
karthikeyan (4/24/2008)
if i execute the below one, it is giving 3 as the output.
Declare @Nm varchar(25),@Null int
--select @Nm = 'Age'
select @Null = count(*)...
April 24, 2008 at 10:08 am
Timothy (4/24/2008)
Jack Corbett (4/24/2008)
April 24, 2008 at 10:00 am
Steve Jones - Editor (4/23/2008)
April 24, 2008 at 8:15 am
Viewing 15 posts - 3,526 through 3,540 (of 6,486 total)