Viewing 11 posts - 1 through 11 (of 11 total)
You can always change your default database to one you use the most...
February 11, 2011 at 11:26 am
USE Test
GO
INSERT INTO Practice
select 'John', 'Jones', '99980', '45', 'Payson', 'Arizona'
union all
select 'Mary','Jones','99982','25','Payson','Arizona'
union all
select 'Eric','Edwards','88232','32','San Diego','California'
Cheers,
K
December 9, 2008 at 1:54 pm
J,
See if this does the trick...or maybe at least help you in the right direction, if I messed up the logic somewhere...
Left joining to table B and then eliminating...
September 16, 2008 at 9:31 am
Another way is to:
In management Studio...Right Click on the tablename...go to ViewDependencies.
That should give you objects dependant on that table, and object that table depends on.
K
September 16, 2008 at 9:19 am
If I understood you right...could you join to the same table a multiple times to get the different information...something like this...
You would join to the Fees table on the client,...
September 12, 2008 at 1:57 pm
Could you just generate the 'Create' scripts, and then do a find replace of 'Create' with 'Alter'...
September 3, 2008 at 9:33 am
You can either add a SQL statement at the end of the Procedure to allow the user Exec Permissions.
Grant EXECUTE ON [ProcName] TO [UserName];
or
in Management Studio, right click on...
September 3, 2008 at 7:54 am
Seeing the Same issue...have been trying to figure out for a little while now...If somebody knows of a solution please respond.
May 7, 2007 at 8:05 am
Viewing 11 posts - 1 through 11 (of 11 total)