Viewing 15 posts - 5,866 through 5,880 (of 6,400 total)
if you do
select * from msdb.dbo.sysmail_account
do you see the email address in either the email_address or replyto_address columns?
February 23, 2012 at 1:07 am
Got a little but further with this today.
Ran a trace against one instance and noticed the the nodes where trying to login with SQLCMD, so I took a look at...
February 22, 2012 at 8:16 am
it would help if we had sample tables, data and what you have tried so far along with what you want the expected result set to be.
if you could provide...
February 22, 2012 at 5:42 am
with cte1 as
(
SELECT
ROW_NUMBER() over(partition by peter order by peter) as row_num,
Peter, max(mike) AS mike, steve
FROM ATable
group by peter, steve
)
select * from cte1 where row_num = 1
might be worth...
February 22, 2012 at 2:20 am
sejal p gudhka (2/22/2012)
I got that a.size from sys.database_files stores file size in terms of 8-KB Pages and multiplying that by 8192 is to convert it into KB. So...
February 22, 2012 at 1:37 am
sejal p gudhka (2/22/2012)
I have a automated script that does Shrinking of the log files in the database. I am not able to understand the logic on how it...
February 22, 2012 at 1:26 am
sengeet86 (2/21/2012)
this article may help you.
http://sql-articles.com/articles/troubleshooting/troubleshooting-login-failed-error-18456/
yep i've looked through that already
as its state 11 the login can login but nothing after that, the only thing I can think of is...
February 22, 2012 at 12:57 am
if its not 1433 then it must be a named instance, so you will need to enable browser or use the named instance port number to connect
February 21, 2012 at 8:55 am
to add
there are no windows scheduled tasks, no linked servers, no ssis packages which span nodes in the cluster except for the management data warehouse data collectors, but this was...
February 21, 2012 at 8:44 am
is it a named instance? is the sql browser service started? can you connect by specifing the port on ssms
eg server\instance,1433
February 21, 2012 at 8:35 am
vijay82 (2/21/2012)
when telnet smtpserver am getting as could not open connection to the host on port 25:connect failed
anthony.green (2/21/2012)
February 21, 2012 at 7:51 am
have you checked SMTP server is allowing your SQL server to send mail - speak to your email administrator, if using MS Exchange, SMTP Mail Relay requires the IP of...
February 21, 2012 at 7:43 am
viduvs (2/21/2012)
Let's say I have 4 SQL Server R2 Std per processor licenses with...
February 21, 2012 at 7:18 am
In the licencing quick reference you can only move running instances of Enterprise or Data Centre so Standard has to be static on one server and cannot move across the...
February 21, 2012 at 6:43 am
Viewing 15 posts - 5,866 through 5,880 (of 6,400 total)