Viewing 15 posts - 316 through 330 (of 756 total)
Thanks for the tip Gail!
August 17, 2011 at 2:02 pm
Grant Fritchey (8/17/2011)
Perry Whittle (8/17/2011)
Steve Jones - SSC Editor (8/16/2011)
Best advice, use backup compression first. If you have Enterprise Edition, you can use that
not available in SQL Server 2005, you...
August 17, 2011 at 1:41 pm
Try to start SQL with this
sqlservr.exe -d"C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\master.mdf"
-e"C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG"
–l"C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\mastlog.ldf" -m -c -syoursqlinstance
August 17, 2011 at 12:57 pm
Following Perry's advice should solve your problem, the question is do you know how to set the location for the files?
August 16, 2011 at 3:53 pm
prem.budhu (8/12/2011)
some of my users are having some performance issues with an application that uses sqlserver 2005 and I am running the profiler to get some stats....
August 16, 2011 at 1:29 am
prem.budhu (8/15/2011)
here is what I see after running the command
select name,filename,size/128"Actual Size",maxsize/128"Maxsize",fileproperty(name,'spaceused')/128"spaceUsed" from sysfiles
Database -- actual size =78981, max size =0 space used = 68741
DB_Log -- Actual size = 170806,...
August 16, 2011 at 1:26 am
WasimAli (8/12/2011)
Not much other than SSIS packages which does the ETL.I will probably go ahead and apply 'lock pages in memory' and check it out how it behaves.
Did you...
August 15, 2011 at 2:09 pm
How much space you have on your C drive?
August 15, 2011 at 2:01 pm
Roy Ernest (8/12/2011)
August 15, 2011 at 1:54 pm
Are you able to see something on the SQL Server Errorlog or on the Server eventlog?
August 15, 2011 at 1:45 pm
It is possible, you can create file groups and backup the file groups, you can find a lot of information on the internet regarding this, check this link. In case...
August 15, 2011 at 1:38 pm
Ninja's_RGR'us (8/10/2011)
For an amazing crash-course on recovery (75 minutes by the guy who wrote the code for microsoft) :http://channel9.msdn.com/Events/TechEd/NorthAmerica/2008/DAT375
Nice link Ninja, thank you for sharing!;-)
August 15, 2011 at 1:28 pm
muthukkumaran Kaliyamoorthy (8/13/2011)
What "log_reuse_wait_desc" it shows in sys.databases
You should run the following script and post the results select name, log_reuse_wait, log_reuse_wait_desc from sys.databases where [name] = 'yourdb'
August 15, 2011 at 1:22 pm
If you have log shipping enable for that database, the transaction log backups must have been already taken. Check this.
August 12, 2011 at 2:00 pm
Viewing 15 posts - 316 through 330 (of 756 total)