Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)

  • RE: Number of patients in a day

    Yes, I was trying to get a head count by date.

    I will use the calendar table and try this.

    Appreciate your help.

  • RE: Checking Multiple Fields in a Table

    Thank you very much Luis.

  • RE: Checking Multiple Fields in a Table

    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

  • RE: SQL SERVER 2000 Backup

    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...
  • RE: Random Row Selection

    This gives me 6 rows altogether - I need to be able to select 6 cons_id for each emp_id..Any ideas?

  • RE: temp table unavailable

    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...

  • RE: temp table unavailable

    How do I 'start a trace' and go back to it?

    Please advise.

    Thanks

  • RE: Char Datatype Match

    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...

  • RE: Char Datatype Match

    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...

  • RE: SQL CHAR field question

    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...

  • RE: SQL CHAR field question

    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...

  • RE: SQL CHAR field question

    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?...

  • RE: SQL CHAR field question

    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...

  • RE: MS SQL 2000 Operating System Compatibility

    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...

  • RE: Database size

    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....

Viewing 15 posts - 1 through 15 (of 21 total)