Viewing 4 posts - 31 through 34 (of 34 total)
Partitioning is a good option, however, is a little more complicated to implement I will suggest using the profiler, move non-cluster indexes to their own file group and drive, and...
March 20, 2008 at 12:40 pm
http://www.sqlservercentral.com/articles/Security/61678/
This talk about security and will give you everything you need.
March 20, 2008 at 12:31 pm
You can do this using sqlcmd:
batch file sample:
set servername=SQLInstance,port#
set databasename=sampledb
set tablename=sampletb
sqlcmd -S %servername% -i NameOfScriptFile -o OutputFileName -v db = "%databasename%" tb = "%tablename%"
sqlscript file:
use [$(db)]
select * from $(tb).column
You will...
October 8, 2007 at 1:45 pm
http://www.sql-server-performance.com/articles/clustering/log_shipping_70_p1.aspx
http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1254458,00.html
Good information hope this help..
September 18, 2007 at 1:27 pm
Viewing 4 posts - 31 through 34 (of 34 total)