Viewing 15 posts - 91 through 105 (of 113 total)
OK I tried to setup on both the server in same domain, still it gives me same error.
Anybody has tried to store perfmon data into remote SQL server using odbc...
May 22, 2012 at 2:02 pm
Thank you RBarryYoung
No, there is no other sql instance, only default instance
May 22, 2012 at 4:06 am
Another possibility, you do not have permission to use mail profile?
according to http://msdn.microsoft.com/en-us/library/ms190307.aspx
Execute permissions for sp_send_dbmail default to all members of the DatabaseMailUser database role in the msdb database. However,...
May 18, 2012 at 1:32 pm
Can you run following under msdb and see if you find DENY on sp_send_dbmail and
GranteeName is not the user or any associates role?
If you have GRANT and DENY, DENY...
May 18, 2012 at 12:53 pm
Don' worry, for this query SQL Server will only dump the intermediate resultset in tempdb if you run on Z80 CPU...:hehe:
You are right, but this query might be just an...
May 17, 2012 at 10:53 am
Probably you want to reduce IO cost.
Following may help if you have enough sql memory available. if not, this may dump the intermediate resultset in tempdb and eventually more costly...
May 17, 2012 at 10:37 am
Data (or statistics) can be the issue some time
May 16, 2012 at 8:23 am
Can you try changing provider from SQLOLEDB to SQLNCLI in connection string?
May 15, 2012 at 12:54 pm
Is there any process like the result which runs at job scheduler can be send mail like?
Sorry I didnot understand your question.
If you want to send outcome (success or...
May 15, 2012 at 12:37 pm
select Name,Gender
from (
SELECT row_number() over(order by Name) ID,name,Gender FROM #tmp where Gender='M'
union all
SELECT row_number() over(order by Name)+0.5 ID,name,Gender FROM #tmp where Gender='F'
) a
order by ID
May 15, 2012 at 11:51 am
First you need to setup mail profile (check following post) and use that profile in msdb.dbo.sp_send_dbmail procedure
May 15, 2012 at 11:12 am
varchar(max) allows upto 2GB size of data, so that should not be the issue.
I suspect, your ASP application is using old sql driver to connect sql server.
if you have not...
May 15, 2012 at 11:03 am
I think "Total server memory(KB)" is the size of buffer pool and "physical_memory_in_use_kb" is total physical memory used by sql server
May 9, 2012 at 11:54 am
Did you try giving permission to [DomainName\MachineName$] on AS400?
This is not a good practice but I think this should work
May 4, 2012 at 7:30 am
You need to grant permission only to SQL service account on folder containing text file for BCP
May 3, 2012 at 1:02 pm
Viewing 15 posts - 91 through 105 (of 113 total)