Viewing 15 posts - 646 through 660 (of 683 total)
Siva,
It's not as easy as that. The number of concurrent users on the SQL Server is not that important. What is important is what those users are going to be...
June 14, 2005 at 4:25 am
I'd stick with cursors. That's what they're designed for so I don't see the need to re-invent the wheel. Plus it's likely to be more efficient as others have pointed...
June 6, 2005 at 3:21 am
1) Set up the database maintenance plan as normal.
2) configure the maintenace plan to delete files older than x days (or hours)
3) Once the maintenance plan is set up, find...
June 6, 2005 at 3:16 am
This isn't advisable.
If you want to put backup files in a location other than the local server I would always suggest backing it up locally and then copying it.
If your...
June 6, 2005 at 3:11 am
Try changing the maintenance plan so that it deletes files older than 48 hours, instead of 2 days. I can vaguely remember coming across problems when using the "days" option...
June 6, 2005 at 2:52 am
In this kind of scenario I would opt for log shipping over replication. Assuming you can cover the cost of Enterprise Edition.
There's less of an administrative burden with log shipping. ...
May 24, 2005 at 5:15 am
Don't know about a "free" tool but check out Lumigent Log Explorer. You might be able to get a trial version.
May 24, 2005 at 5:09 am
I would use a sub-query:
SELECT DISTINCT tot.po_tble_cod
FROM po_tabelatotal tot (NOLOCK),
po_tabelaitem itm (NOLOCK),
po_parametro par (NOLOCK)
WHERE tot.po_tblt_cod = itm.po_tblt_cod
AND itm.po_para_cod = par.po_para_cod
AND par.po_bloc_cod = 99
AND ...
May 19, 2005 at 6:50 am
When you say that you restore the database to your test machine.... where does that backup file originate from? The same test machine?
Anyway, sounds like you might be getting orphaned...
May 17, 2005 at 8:33 am
You can definately take log backups whilst running dbcc indexdefrag.
However, dbreindex and checkdb both place schema locks on tables so you won't be able to run a log backup. Well, you...
May 17, 2005 at 4:47 am
I would review using the update lock and make sure that it really does work. I did a test in Northwind and tried to update multiple rows in Customers (using...
May 13, 2005 at 9:27 am
ignore my last post, figured it out
May 12, 2005 at 7:34 am
I don't understand how you can tell what is part of a continuous claim....
For example, what tells you that the claims made on 3/1/2005, 3/11/2005 and the 3/21/2005 are all...
May 12, 2005 at 7:30 am
I suspect that what might be happening is this:
When you run the update statement SQL Server will take out an exclusive lock on the rows that you are updating. However,...
May 12, 2005 at 7:14 am
Almost forgot:
You could always set ANSI_NULLS OFF and then just run the one query as follows:
SET ANSI_NULLS OFF
SELECT * FROM table1
WHERE col=@parm
SET ANSI_NULLS ON
With ANSI_NULLS OFF, the equals sign...
May 12, 2005 at 6:40 am
Viewing 15 posts - 646 through 660 (of 683 total)