Forum Replies Created

Viewing 15 posts - 196 through 210 (of 789 total)

  • RE: Help!!

    Specify that the database be maintained in STANDBY mode rather than NORECOVERY.

    Be careful with read-only connections to the standby database though. Sysadmin logins will block log-shipping (ie. application of...

  • RE: ListAvailableSQLServers

    Brian,

    In my experience ListAvailableSQLServers has only returned listening servers and those servers explicitly defined in Client Network Utility.

    To list enumerate all my EM registered groups, subgroups and servers I use...

  • RE: Passing Parameters to trigger

    Not a pretty solution, but I have seen SPs and Applications that pass information to triggers through CONTEXT_INFO (See "Session Context Information" in BOL)

    Cheers,

    - Mark

  • RE: Log Space Estimate

    Rather than estimating, I would do it by taking regular transaction log backups whilst applying the transactions in test mode. Look at the size of the tlog backups (or...

  • RE: Absolute Beginner Troubles

    Barbara,

    This is going to sound stupid but...

    despite having an index on a table, SQL does not guarantee to return rows in any particular order unless you explicitly say "ORDER BY...

  • RE: T-SQL Failure

    Possibly implicit transactions are set on under QA but your VBA app needs either a BEGIN TRAN... COMMIT, or implicit transactions set on.

    The fact that you get no T-SQL errors...

  • RE: Catching error from trigger in a stored procedure

    If in a production database and the users are complaining about a trigger problem which I can't replicate, I sometimes temporarily insert statements to the effect of:

    RAISERROR('blah blah...', 0, 1)...

  • RE: SELECT ... INTO with clustered index ?

    'fraid not.

    Cheers,

    - Mark

  • RE: Jobs not running at all

    Anything interesting in the SQL Errorlog?

    Anything in your SQL Agent Error Log? (right-click SQL Server Agent and select "Display Error Log...").

    Is your maintenance plan configured to write a report...

  • RE: Reading the Log File

    Sachin,

    Hardly anywhere I'm afraid.

    Just a search of newsgroups to find out how to call it. I don't even know what can be substituted for the...

  • RE: Reading the Log File

    I think lumigent know how many competitors they've got... hence the insane price.

    You may be able to get something useful out of fn_dblog. For starters try:

     
  • RE: Help! Index corrupting? DBCC CheckTable failing?

    ARe you moving from SQL 7.0 to 2000? If so, the following KB article may apply: 298806 "PRB: Index Corruption Occurs in a Database That Is Upgraded from SQL...

  • RE: Remote Connection through VPN

    That's good! The server's listening on that port.

    Just close the cmd screen (that little X in the top right corner).

    So now, you should also be able to:

    OSQL -Sservername,portnumber -Ulogin

    If...

  • RE: Remote Connection through VPN

    Frank,

    Maybe they've selected the "Hide Server" option for that server.

    Do you know what port it's listening on?

    If so, do you get any success with: telnet ip_address portnumber

    or

    telnet servername portnumber

    (eg. telnet...

  • RE: Backup error question

    Try using the MEDIANAME parameter in the backup command.

    Cheers,

    - Mark

    Edited by - mccork on 12/07/2003 6:47:12 PM

Viewing 15 posts - 196 through 210 (of 789 total)