Viewing 15 posts - 1 through 15 (of 18 total)
February 13, 2017 at 2:34 am
After increase the number of log files, I use a job to run weekly and create one new file for week.
https://msdn.microsoft.com/en-us/library/ms182512.aspx?f=255&MSPPError=-2147217396
This avoid larger error log...
February 10, 2017 at 6:22 am
Perry Whittle (3/6/2015)
FabricioLimaDBA (3/5/2015)
The problems with AVG is that only works with enterprise edition.Then I continue to use database mirroring in clients with SQL Standard.
Yes, but you're limited to synch...
March 6, 2015 at 5:14 am
Perry Whittle (3/13/2014)
March 5, 2015 at 11:02 am
you're welcome. This whitepaper is really great.
January 20, 2011 at 1:17 pm
This link has a great whitepaper about that migration. It can help you.
http://www.microsoft.com/sqlserver/en/us/product-info/why-upgrade.aspx
January 18, 2011 at 2:19 pm
This link has a great whitepaper about that migration:
http://www.microsoft.com/sqlserver/en/us/product-info/why-upgrade.aspx
January 14, 2011 at 3:23 pm
This link has a great whitepaper about that migration:
http://www.microsoft.com/sqlserver/en/us/product-info/why-upgrade.aspx
Fabrício França Lima
MCITP – Database Administrator
Twitter: @fabriciodba
January 14, 2011 at 6:40 am
I do this daily in all databases that I have.
August 12, 2010 at 5:09 pm
You can't do this:
SELECT COUNT(TableA.*) FROM TableA
SELECT COUNT(a.*) FROM TableA a
You can only put a column: select COUNT(Nome_Coluna) from TableA
August 11, 2010 at 8:17 pm
Do you make what Jeffrey Williams said?
Verified that the lock pages in memory policy has been set for the service account running SQL Server?
If that is not set, AWE...
May 23, 2010 at 7:11 pm
That's OK. I work with Sql Server 2000 and 2005 yet. I will make the upgrade.
Thank you.
March 12, 2010 at 6:26 pm
This query is very useful for me.
March 12, 2010 at 4:52 pm
I use this simple query to find this.
select distinct B.name ,
case type when 'P' then 'Stored procedure'
when 'FN' then 'Function'
when 'TF' then 'Function'
when 'TR' then 'Trigger'
when 'V' then 'View'
end
from syscomments...
March 10, 2010 at 7:09 pm
Viewing 15 posts - 1 through 15 (of 18 total)