Viewing 9 posts - 16 through 24 (of 24 total)
If I understand this correctly, you're looking for all the rows where the model is available in each listed color.
Maybe something like this:
select * from myTable a
where exists
(
select...
June 24, 2005 at 2:34 pm
You can grant permissions to 'public'. This has the effect of letting everyone who has access to the database (via sp_grantdbaccess or GRANT statement) inherit that permission. Very useful for...
June 17, 2005 at 10:40 am
We ran across something similar, but it had to do with the volatility of the data in the database causing the statistics to get out-of-date. We simply ran sp_updatestats periodically...
June 17, 2005 at 9:27 am
Or, try the following syntax:
Forms!Proposals.Controls!fkClientID.Value = NewClientLocationID
in the popped-up form.
June 17, 2005 at 9:12 am
We actually have the same thing going on. It turns out that when you get to a certain number of characters (8192) then CRLF is included in the query output. ...
June 16, 2005 at 10:11 am
You may also wish use the EM GUI to check and see if SELECT permissions have been granted to 'public' for all tables in the database. If they have, then...
June 9, 2005 at 9:22 am
We did the same as ccc24 with no changes. Did someone remove BUILTIN\Administrators, maybe?
June 9, 2005 at 9:12 am
I have actually run across this in a production environment. WinZip does not have a command line interface. They have a separate product (for a small fee, of course) called...
June 3, 2005 at 9:13 am
Save the DTS package under a new name, delete the old one, and see if anybody complains. If there is someone running it manually with DTSRUNUI on the command line,...
June 3, 2005 at 9:05 am
Viewing 9 posts - 16 through 24 (of 24 total)