Viewing 15 posts - 196 through 210 (of 789 total)
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...
December 15, 2003 at 4:56 am
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...
December 15, 2003 at 4:50 am
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
December 15, 2003 at 4:46 am
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...
December 15, 2003 at 3:11 am
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...
December 11, 2003 at 7:39 pm
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...
December 10, 2003 at 4:08 pm
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)...
December 10, 2003 at 3:00 pm
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...
December 9, 2003 at 8:56 pm
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...
December 9, 2003 at 12:08 am
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:
December 8, 2003 at 8:43 pm
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...
December 8, 2003 at 3:24 am
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...
December 8, 2003 at 1:59 am
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...
December 8, 2003 at 1:41 am
Try using the MEDIANAME parameter in the backup command.
Cheers,
- Mark
Edited by - mccork on 12/07/2003 6:47:12 PM
December 7, 2003 at 6:46 pm
Viewing 15 posts - 196 through 210 (of 789 total)