Forum Replies Created

Viewing 15 posts - 91 through 105 (of 789 total)

  • RE: Strange results in master..syslogins

    I think it's something in the character representation of the password that causes QA to throw a column when in GRID mode.  When in column-aligned (CTRL-T) mode it lines up ok. ...

  • RE: Formatting result set

    Allen,

    Use varchar(nn) rather than char(nn) to reduce those gaps to 1 character.

    To eliminate the "(10 row(s) affected)" message SET NOCOUNT ON.

    To eliminate the colum headers:

    a) from Query Analyzer uncheck the...

  • RE: stored procedure does not work overnight

    What happens if you run the stored proc (not the sql therein) manually a couple of times?

    What happens if you invoke the scheduled job manually a couple of times?

     

  • RE: Question of the Day for 05 Apr 2004

    Boy did MS bury that little gem in the rear-end of their documentation.  Makes me wonder if a 16-CPU computer with HTT will perform better than a 24-CPU with HTT...

  • RE: how can a user see Jobs without sa permissions

    Thanks from me too rootman.

  • RE: how can a user see Jobs without sa permissions

    .... then I think you're (or he's) stuck when it come to viewing the jobs through EM, because a lot of the SPs relied upon by EM actually check the...

  • RE: how can a user see Jobs without sa permissions

    If he is the owner of the jobs (as shown on each job's General tab) he should be able to see them thru Enterprise Manager.

  • RE: SQL Server Memory

    Yes you can have AWE enabled without the /3GB switch.  The AWE setting is ignored (assumed OFF) if there's less than 3gb physical memory. 

    However, with your 4gb and AWE enabled...

  • RE: Error log message about TransactionDispenserInterface

    This is just an informational message meaning that the MSDTC service is

    unavailable at the time when SQL Server is started. It won't result in any

    problems with subsequent distributed transactions provided...

  • RE: Alert not firing ... what am I doing wrong ?

    The trouble is that sev 15 errors are not event logged by default.  So setting up the alert for sev 15 doesn't achieve anything because the trigger for alerts is...

  • RE: SQL 6.5 DB Space

    'tis hard to remember my SQL stuff.    However, I do recall being able to do a:

    DBCC checktable('syslogs')

    ...when in the database in question, to correct...

  • RE: SQL 6.5 DB Space

    The reserved and data figures are derived from data in the sysindexes table.  These are inconsistent.  Nothing to worry about though - it happens all the time - even in...

  • RE: Jobs still run, even when DISABLED

    GaryA,

    Look in the column "message" for job step 0.  It should contain something like:

    The Job was invoked by Schedule nn

    (if invoked by SQLAgent's schedule)

    or

    The Job was invoked by User xxxxxxxx

    (if...

  • RE: SQL Server is confused about 2 instances using same data files

    It could be that you've registered the same instance twice under EM with 2 different names.  When you think you're looking at server_TEST attributes it's really that of server_DEV.  If this is...

  • RE: Jobs still run, even when DISABLED

    I'm working on the theory that it is SQL Agent initiating the jobs, based on the statement "Only deleting the schedule stops them". 

    If the jobs were being initiated by some...

Viewing 15 posts - 91 through 105 (of 789 total)