Viewing 15 posts - 106 through 120 (of 185 total)
I doubled check and BOL does say " [ @body= ] 'body' Is the body of the e-mail message. The message body is of type nvarchar(max), with a default...
October 7, 2010 at 11:01 am
try this
select SUBSTRING(EmailCOL, 1,CHARINDEX('@', EmailCol)-1) AS email from tableA
October 6, 2010 at 9:35 am
I look for two things is
CPU: this number can be argued as well, under 50% is good lower is even better and if higher then I look at CPU...
October 6, 2010 at 9:05 am
here is one approach....
give them reader access
then use the following script to give them exec SP right to all non system related SP and grant view...
http://www.mssqltips.com/tip.asp?tip=1203
---good luck
USE
GO
/****** Object:...
October 6, 2010 at 8:43 am
This is not very easy to track down, since the maintenance task creates an SSIS packasge in the background. You will see that in the error.
My best suggestion is to...
October 5, 2010 at 7:20 am
in that case follow this http://www.mssqltips.com/tip.asp?tip=1070
DECLARE @name VARCHAR(50) -- database name
DECLARE @path VARCHAR(256) -- path for backup files
DECLARE @fileName VARCHAR(256) -- filename for backup
DECLARE @fileDate...
October 4, 2010 at 9:31 am
From my experience we were required to keep track of a few thing
1. who was given access to the which DB
2. what they were given access to
3. kept track of...
October 1, 2010 at 2:04 pm
cant really see why it is blowing up but here is a work around...create a back job(s) to run using the following
--db example
BACKUP DATABASE [te_content] TO DISK =...
October 1, 2010 at 1:51 pm
someone found this answer on another forum....but it does make since...hope it helps..let us know
"problem due to MS SQL creating a temporary table based on my Insert Statement using the...
October 1, 2010 at 7:12 am
also read up on Extended events....
SQL Server 2008 Extended Events - high performance eventing system
They are the new low level, high performance eventing system in SQL Server. They use...
September 30, 2010 at 8:29 am
Peformance data collector - can this be a good replacement for other third party tools like IDera --- is nothing close to any of the third party vendors....needs more improvement...
September 30, 2010 at 7:57 am
September 30, 2010 at 7:49 am
oneline rebuilds does not work on standard edition, only enterprise edition!
in order to rebuild the index it needs to create locks....anytime you rebiuld you are dropping and rebuilding the index...
September 23, 2010 at 4:09 pm
try this....i have had issues on several servers from diff companies 2005 and 2008 think its a bug
here is the work around
run this ---
select DB_ID() --- get the id of...
September 23, 2010 at 3:10 pm
can you post the statement?
September 22, 2010 at 10:06 am
Viewing 15 posts - 106 through 120 (of 185 total)