Viewing 15 posts - 166 through 180 (of 285 total)
Malcolm Daughtree (3/3/2010)
GO HERE !!!!
http://www.microsoft.com/emea/teched2008/itpro/tv/default.aspx?vid=78.
LEARN
Enjoy!
I did and have discovered the Power of DBCC page and...
March 4, 2010 at 12:48 pm
GilaMonster (3/1/2010)
GSquared (3/1/2010)
It's "DBCC Log()". The parameters that I know of are the database name and a numeric "style" that determines the columns you get back.
SELECT <column list> FROM...
March 2, 2010 at 2:24 pm
Sailor (7/28/2008)
March 1, 2010 at 8:11 am
Nice script ... worked fine on SQL server 2005 !
Thanks for sharing ..
\\K
February 12, 2010 at 8:11 am
Cris E (2/8/2010)
To...
February 8, 2010 at 1:24 pm
michael_davis2 (2/8/2010)
February 8, 2010 at 11:26 am
Hello all,
when I try to run report: ReportQueries, I am getting below error:
Msg 9420, Level 16, State 1, Line 1
XML parsing: line 90, character 10, illegal xml character
Any ideas...
February 8, 2010 at 11:04 am
Thanks Michael .... for sharing your good stuff to SQL server community !
Works Great ... 🙂
\\K
February 6, 2010 at 6:44 pm
SQLbee (2/3/2010)
I hope someone can hep me out here, regarding DB mail in sql server 2005.
I am facing a problem where I am not able to send a custom...
February 5, 2010 at 9:48 am
I agree with beargle ...
why do you want to rebuild all the indexes ? Its smart to rebuild if there is more fragmentation (I normally do it above 30%) otherwise...
January 29, 2010 at 4:11 pm
We are also doing a Physical migration from one data center to another which we call " Lift and Shift".
As others mentioned
1. Application connection string changes in config files
2....
January 29, 2010 at 3:58 pm
Hello,
This is what you are looking for :
USE MASTER
GO
CREATE TABLE #TMPFIXEDDRIVES (
DRIVE CHAR(1),
MBFREE INT)
INSERT INTO #TMPFIXEDDRIVES
EXEC xp_FIXEDDRIVES
CREATE TABLE #TMPSPACEUSED (
DBNAME ...
January 28, 2010 at 5:31 pm
michael vessey (1/26/2010)
make sure your database is checkpointing - the log data is not truncated if no checkpoint has occured
try the following
use mydb
go
checkpoint
go
backup log mydb to...
January 26, 2010 at 12:56 pm
January 21, 2010 at 12:53 pm
Vinay Thakur-585143 (1/19/2010)
follow this
declare @JobID uniqueidentifier
select @JobID=job_id from distribution.dbo.MSdistribution_agents a,master.sys.servers s
where a.publisher_db=['PublisherDB'] and
a.subscriber_db=['Destination_DB'] and
a.subscriber_id=s.srvid and
s.srvname=['SubsriberServer']
--this will give jobid for the replication we have created, just use that...
January 21, 2010 at 12:43 pm
Viewing 15 posts - 166 through 180 (of 285 total)