Viewing 8 posts - 1 through 8 (of 8 total)
I am always willing to learn new method or idea. I think I am come to realization that how difficult to assign lanes.
Is it possible to create a grid ...
January 9, 2012 at 10:40 pm
Creating a round robin scoring grid is tougher than I thought...
January 9, 2012 at 9:05 am
I simplified the stored procedure and it works now.
Thank you all for your help.
February 22, 2010 at 12:16 pm
Changed to:
@MinWeight money = Null,
@MaxWeight money = Null,
and Print
Select Distinct zc.Distance
,tUsr.*
,tAdd.*
,tEx.*
,tPh.*
From tbl_Address tAdd with (nolock)
Join #tmpZipCode zc
On tAdd.AddressZipCode = zc.ZipCode
Join tbl_Users tUsr with (nolock)
On...
February 18, 2010 at 3:40 pm
so this is a SQL limitation?
February 18, 2010 at 2:53 pm
Hello,
Thank you for your help.
Select Distinct zc.Distance
,tUsr.*
,tAdd.*
,tEx.*
,tPh.*
From tbl_Address tAdd with (nolock)
Join #tmpZipCode zc
On tAdd.AddressZipCode = zc.ZipCode
Join tbl_Users tUsr with (nolock)
On tUsr.UserID...
February 18, 2010 at 10:59 am
Sorry I cut & pasted wrong
USE [DBCrew]
GO
/****** Object: StoredProcedure [dbo].[spSearchCrew] Script Date: 02/18/2010 09:02:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[spSearchCrew] (
@ZipStart char(5),
@Distance int...
February 18, 2010 at 10:08 am
Hello Thank you for the reply.
USE [DBCrew]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter PROCEDURE dbo.SearchCrewAdvanced
(
@ZipStart char(5) = Null,
@Distance int = 10,
@PositionID int = Null,
@MinWeight varchar(50) = Null,
@MaxWeight varchar(50) = Null,
@EventID int =...
February 18, 2010 at 9:36 am
Viewing 8 posts - 1 through 8 (of 8 total)