Viewing 7 posts - 1 through 8 (of 8 total)
Hi - You have to do more than just add a user to a login; they need to have access granted, etc.
August 29, 2004 at 7:10 pm
Billy - I would use a stored procedure to do this. Every insert and update I do is through a stored procedure. You can save the first table, then query...
July 18, 2004 at 9:36 pm
Thanks - This does work for what I am trying to do.
I changed the From clause to
FROM Test t1 INNER JOIN
Test t2 ON t2.ID > 1 AND t1.ID =...
July 16, 2004 at 12:27 pm
Hi - Your "b" table has a field "tableb_tablea_id" that needs to be populated with a value related to your "a" table. Your
insert into dd1(tablea_value, tableb_value)
values('eee1b','eee1b');
does not...
July 16, 2004 at 11:47 am
You want to truncate the value to 2 decimal places
Multiply by 100, convert to an integer then convert to a Numeric(18,2) (or currency) and divide by 100
CONVERT(Numeric(18,2), CONVERT(int, <value> *...
July 9, 2004 at 10:17 am
Thanks - But if I can't figure out how to name the CONSTRAINT in the first place, I won't be able to rename it either. If I list my constraints...
December 23, 2003 at 5:35 am
Thanks - That gets the "NOT NULL" job done but is there any way to name the CONSTRAINT as I try to get in the habbit of naming every contstraint...
December 22, 2003 at 5:31 pm
Viewing 7 posts - 1 through 8 (of 8 total)