Viewing 15 posts - 1 through 15 (of 51 total)
Check sql server configuration manager.
TCP/IP.
named pipes enabled.
Try to connect using .udl file.
July 6, 2015 at 5:49 am
Check the default database for login in the login properties.
Change it to master or tempdb.
July 6, 2015 at 5:36 am
Please check the TCP Chimney Offload option as it can cause the network related issues.
Below is the reference link from Microsoft.
https://support2.microsoft.com/default.aspx?scid=kb;EN-US;942861
July 5, 2015 at 11:16 pm
I have got solution for this issue.
I have increased timeout parameter in msdb..sysmail_server which resolved the timeout problem.
July 5, 2015 at 11:13 pm
Add default constraint on column ZDateopened with getdate() function.
April 10, 2015 at 12:50 am
I guess the mdf file was not accessible at that point.
Please check system events for any storage issue.
April 10, 2015 at 12:42 am
Tried setting parameter zero for @query_result_header.
Its removing ---- with headers. I need headers.
November 26, 2014 at 10:33 pm
Hi All,
I am using below query to send emails.
declare @sql as varchar(4000)
set @sql =' SET NOCOUNT ON
SELECT columns
FROM tables with joins'
EXEC msdb.dbo.sp_send_dbmail
@body_format = 'HTML',
@query = @sql,
@attach_query_result_as_file =...
November 26, 2014 at 5:11 am
you can use below query.
select serverproperty('productlevel')as sql_ervice_pack,serverproperty
('productversion') as Sql_version
October 14, 2014 at 4:34 am
Pls check on below link. Might be helpful.
http://www.patrickkeisler.com/2013/01/how-to-remove-undo-table-partitioning.html
August 7, 2014 at 12:01 am
If sql services are not in services panel then sql is not installed on that server.
August 6, 2014 at 11:54 pm
You can create Server and database audit to check what and who is inserting records in a table.
Also if possible use partitions for performance.
August 6, 2014 at 11:40 pm
Gr8!!!! Njoyed a lot...
Game over. Human player wins in 48 shots!
July 22, 2014 at 4:37 am
Viewing 15 posts - 1 through 15 (of 51 total)