Forum Replies Created

Viewing 9 posts - 16 through 24 (of 24 total)

  • RE: Select Exclusivly IN

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

  • RE: Help for a newbie plz!!!! Permissions for a User

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

  • RE: SP performance/recompile issue...

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

  • RE: Refreshing a Control

    Or, try the following syntax:

    Forms!Proposals.Controls!fkClientID.Value = NewClientLocationID

    in the popped-up form.

  • RE: Exporting medium sized SQL tables to a xml file

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

  • RE: Help for a newbie plz!!!! Permissions for a User

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

  • RE: Sysadmin Role

    We did the same as ccc24 with no changes.  Did someone remove BUILTIN\Administrators, maybe?

  • RE: Winzip Problem with xp_cmdshell

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

  • RE: Finding last execution date of DTS Package

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

Viewing 9 posts - 16 through 24 (of 24 total)