Viewing 15 posts - 21,286 through 21,300 (of 26,484 total)
Give this a try:
CREATE PROCEDURE ...............
@LanguageID Int,
@Type Int,
@DateStart DateTime,
@DateEnd DateTime
AS
BEGIN
SET NOCOUNT ON;
with ClientExitCount(
ClientUrlID,
...
April 29, 2009 at 11:52 am
I think this is what you are looking for:
declare @PayWeek int;
set @PayWeek = 1; -- just a value for illustration purposes
select
jkt.Mechanic,
sum(case when...
April 29, 2009 at 10:59 am
It's simple why you wouldn't want to do that. First of all the data types VARCHAR(MAX), NVARCHAR(MAX), and VARBINARY(MAX) are blob data types that can hold up to 2...
April 29, 2009 at 10:49 am
I'd like to see a little more, including the DDL for the tables, some sample data for the tables (in a readily consumable format, not like how you posted the...
April 29, 2009 at 10:13 am
Luke L (4/29/2009)
Entirely too easy get to points for answering the QOTD instead of posting. Plus, there's no guarantee of the quality of any posts, just a number.-Luke.
Which is...
April 29, 2009 at 8:44 am
Gaby Abed (4/29/2009)
GilaMonster (4/29/2009)
tosscrosby (4/29/2009)
Lynn Pettis (4/28/2009)
April 29, 2009 at 8:26 am
Aneesh (4/28/2009)
Hello,Using SQL function in where condition is not a good practice.
That is dependent on how and where you use the SQL functions in the WHERE clause.
April 28, 2009 at 10:28 pm
GSquared (4/28/2009)
ROTFLMAO. All I could see was the commercial on TV where people started throwing candy bars at the deer!
I don't watch TV, so I have absolutely no clue what...
April 28, 2009 at 10:24 pm
Bruce W Cassidy (4/28/2009)
April 28, 2009 at 9:23 pm
Check COLUMNPROPERTY in Books Online. You can use this function to determine is a column is an identity column.
April 28, 2009 at 3:01 pm
gserdijn (4/28/2009)
SET ROWCOUNT 5000;
SELECT IDENTITY(INT,0,1) AS id INTO #Tally...
April 28, 2009 at 2:58 pm
William Plourde (4/28/2009)
April 28, 2009 at 2:52 pm
Well, if you must know... this is his latest thread
😉
April 28, 2009 at 2:49 pm
GSquared (4/28/2009)
Lynn Pettis (4/28/2009)
Bob Hovious (4/28/2009)
You know, I guess it is really hard to teach someone fish when you are in the middle of the desert...
Somewhere that man is getting...
April 28, 2009 at 2:40 pm
Viewing 15 posts - 21,286 through 21,300 (of 26,484 total)