Viewing 15 posts - 1 through 15 (of 21 total)
Yes, I was trying to get a head count by date.
I will use the calendar table and try this.
Appreciate your help.
June 2, 2016 at 8:33 am
Multiple races are allowed to help identify individuals of many races - for e.g., dad could be one race and mom could be another.
Thanks
November 19, 2015 at 11:36 am
Thank you Lucky for your prompt reply. I have now started the SQL Server agent - however, when i schedule for it to backup, it just does not do...
March 6, 2007 at 1:56 pm
This gives me 6 rows altogether - I need to be able to select 6 cons_id for each emp_id..Any ideas?
January 8, 2007 at 7:32 am
Thank You for your quick reply Remi. I did exactly what you said. But was not very sure on how 'to make sure that it registers in the trace'. I...
July 14, 2005 at 1:06 pm
How do I 'start a trace' and go back to it?
Please advise.
Thanks
July 14, 2005 at 12:22 pm
I don't think soundex will work - if the first names are the same but last names are different soundex will still consider it a match, am i right?
Can some...
June 10, 2005 at 1:26 pm
Am aware of the design concerns - The license table is coming from an external source - am trying to get a list of members in my database that are...
June 10, 2005 at 10:53 am
set nocount on
create table #temp
(product_id int not null,
prod_desc char(1) null)
insert into #temp
select 1, 'A'
insert into #temp
select 1, 'B'
insert into #temp
select...
May 16, 2005 at 9:23 am
I was able to get option 2 to work. However, what Remi suggested brings only one line of output - Farrell's method works without a glitch. How is the efficiency...
May 16, 2005 at 8:14 am
I tried the second method suggested - this pulls all the descriptions - however, has it in the reverse order - C,B,A instead of A, B, C - any ideas?...
May 13, 2005 at 8:39 am
I tried the first script as below - picks only one description - am I missing something?
CREATE FUNCTION dbo.concatdesc(@product_id INT)
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @Output VARCHAR(8000)
SET @Output = ''
SELECT @Output...
May 13, 2005 at 8:35 am
I was installing MS SQL Server 2000 Standard Edition on Win 2003 Server- ignored the error message and proceeded - did not have a problem. The Microsoft Site does say...
February 10, 2005 at 1:56 pm
Thank you both - I have SQL Server loaded locally on my machine - to get some work done before the server arrived and was just a stop gap option....
January 31, 2005 at 12:16 pm
Viewing 15 posts - 1 through 15 (of 21 total)