Viewing 15 posts - 76 through 90 (of 137 total)
Is there a chance that the database is growing in size automatically? I've seen some processes appear to "hang" while the DB grows in size. Just a stab in...
January 3, 2003 at 4:33 pm
One option is to use Microsoft Network Load balancing on the front-end to route requests to multiple machines. If one goes down, then requests will be routed to the...
December 30, 2002 at 5:37 pm
If you MUST use the current method, why not move the ASP call from a trigger to a stored proc. You could insert the row in the stored proc, then...
December 30, 2002 at 5:11 pm
I think what Yoeri is getting at is the ability from within the procedure, to print out the names and values of each parameter as it was passed to the...
December 30, 2002 at 4:24 pm
Just another comment about sp_spaceused...Even after an "update statistics" the rowcount can still be reported incorrectly in sp_spaceused. You must run a "DBCC UPDATEUSAGE ... WITH COUNT_ROWS" command to...
December 12, 2002 at 2:52 pm
Could I get some clarification on why the "Modified" date of the MDF file is not a valid indicator of the last time the database was expanded or shrunk?
Doing the...
December 10, 2002 at 4:45 pm
What about looking at the Modified Date on the MFD file?
-Dan
December 10, 2002 at 2:52 pm
Here is one method using sp_OACreate/DMO. You can set the timeout value to whatever you think fits your network speed, etc. I've ommitted the error handing for simplicity.
December 10, 2002 at 11:40 am
I would have to agree with Antares' last comment, that writing a master/slave style proc with all possible combinations will give you the best performance. This can add up...
December 6, 2002 at 3:50 pm
Just a few comments...I just recently switched from Sybase to SQL Server and here are a few of the differences that I've noticed. Some of these may be supported...
November 27, 2002 at 8:13 am
I just tried on a color printer, and was unable to get the colors to print.
-Dan
November 26, 2002 at 3:57 pm
In QA you can turn them off in Text-Results mode only from the menu: Tools->Options->Results->Print Column Headers.
If you use the isql command-line utility you can specify the "-h-1" parameter. ...
November 26, 2002 at 1:44 pm
Also, you could use a scheduled DTS package to accomplish this.
-Dan
November 25, 2002 at 3:37 pm
You could create a stored proc in SQL Server that uses a linked server to your Oracle server to pull the data across. This proc could be scheduled to run...
November 25, 2002 at 3:35 pm
Viewing 15 posts - 76 through 90 (of 137 total)