Viewing 15 posts - 1 through 15 (of 31 total)
yeah, that was easier, works perfect thank you so much
March 3, 2006 at 2:06 pm
This is the result set it presented and I don't understand.... I am running a summary on activity for the year...my columns being the different activities and the months -...
May 25, 2005 at 12:53 pm
This is what I got to work.....in case anyone was interested
SELECT COUNT(*) AS Total
FROM records
WHERE (DATEPART(year, reportsentdate) = @year) AND (DATEPART(month, reportsentdate) = '01')...
May 25, 2005 at 12:29 pm
Maybe I should have been more specific Ignore Column_b and Column_c - as they are values derived in a completely different way. All I...
May 25, 2005 at 11:58 am
right....the query I have listed above gave me all the records that were "lost" or or did not have a value that could reference my primary key table, center.
Once I...
April 27, 2005 at 9:39 am
ok, think I got it....did this:
SELECT center.clinicname, center.clinicphone, records.recordnum
FROM records
LEFT JOIN center on
center.clinicphone = records.clinicphone
WHERE center.clinicphone is null
then it executed successfully.
thanks for your help!!!!!
kristin
April 26, 2005 at 11:44 am
hahahah! you lost me how do I do that?
sorry!!!!!
April 26, 2005 at 11:27 am
This is the error I get...what do you make of it??
Server: Msg 547, Level 16, State 1, Line 1
ALTER TABLE statement conflicted with COLUMN FOREIGN KEY constraint 'FK_records_center_FKNAME'. The conflict...
April 26, 2005 at 10:19 am
Yeah! EM boots me, and also makes the Database Hang on all my users. Can you help with the script I would need to run in Query Analyzer?
And as for...
April 22, 2005 at 3:27 pm
right....but if I try to change the length of some of my fields in the design view, I get booted.
Another strange thing is this. I copied the table and...
April 22, 2005 at 1:47 pm
Thanks for all your help guys, worked like a charm I went with the simpler alter table route:
ALTER TABLE TableName
ALTER COLUMN ColName bigint
really appreciate...
April 21, 2005 at 3:34 pm
hahahah, touche! And quick question, as long as I have your
In your first code example, can I use a variable like that in...
October 14, 2004 at 2:12 pm
nice hat paul, thanks did you give me that nice rookie pic? hahahah!
October 14, 2004 at 10:36 am
wow, super sorry if I offended anyone by posting in the wrong forum, my mistake, won't happen again.
Thanks for the help anyway! I'll post in the other forum.
regards
October 13, 2004 at 3:44 pm
Viewing 15 posts - 1 through 15 (of 31 total)