Viewing 15 posts - 211 through 225 (of 5,394 total)
Jeffrey Irish (2/1/2016)
Perhaps SQL Browser is not getting through?
That's the most likely answer. Test SQL Browser connectivity with PortQry on UDP 1434.
February 2, 2016 at 1:14 am
It shouldn't, but it won't do any harm if you're listening on all addresses.
January 28, 2016 at 9:21 am
SSIS seems to me overkill for just checking a file exists.
Powershell can do that:
$ErrorActionPreference = "Stop"
if( -not (Test-Path "c:\temp\im_not_there.txt")) { throw "Not there!" }
CMD can do that as well
if not...
January 28, 2016 at 8:11 am
Remove the settings from that address and configure IpAll.
You should be fine.
January 28, 2016 at 7:58 am
Eirikur Eiriksson (1/25/2016)
spaghettidba (1/25/2016)
Eirikur Eiriksson (1/25/2016)
spaghettidba (1/25/2016)
SQL Server 2012 supports the FORMAT function:
select format(GETDATE(), 'dd-MMM-YYYY')
Gianluca, don't use the format function, it has terrible performance.
😎
It is a CLR function, so there's...
January 25, 2016 at 9:07 am
Eirikur Eiriksson (1/25/2016)
spaghettidba (1/25/2016)
SQL Server 2012 supports the FORMAT function:
select format(GETDATE(), 'dd-MMM-YYYY')
Gianluca, don't use the format function, it has terrible performance.
😎
It is a CLR function, so there's a startup cost...
January 25, 2016 at 8:53 am
SQL Server 2012 supports the FORMAT function:
select format(GETDATE(), 'dd-MMM-YYYY')
January 25, 2016 at 8:20 am
Looks like a client-side issue.
What is probably happening is something along these lines:
The connection pool is initialized with a number of connections, then for some reason it loses connectivity...
January 22, 2016 at 4:46 am
ramana3327 (1/21/2016)
What are the best approach to start the process.
In my opinion you shouldn't be doing an in-place upgrade. It almost always turn out to be ugly. Do a side-by-side...
January 22, 2016 at 3:40 am
You could read the file in a variable and concatenate it to the message body:
DECLARE @body NVARCHAR(MAX)
SELECT @body = BulkColumn FROM OPENROWSET (BULK 'G:\MySalesReport.htm', SINGLE_BLOB) a
EXEC msdb.dbo.sp_send_dbmail
@profile_name =...
January 21, 2016 at 2:31 am
Jacob Wilkins (1/20/2016)
spaghettidba (1/20/2016)
Indeed the default identity preallocation is 1000, 10K looks suspicious. Try enabling TF 272 (it disables identity preallocation) and see if it makes a difference.
I seem to...
January 20, 2016 at 6:41 am
Trace flag. Add "-T272" to your SQL Server startup parameters or enable it globally before adding to the startup params:
DBCC TRACEON(272,-1)
January 20, 2016 at 4:45 am
Indeed the default identity preallocation is 1000, 10K looks suspicious. Try enabling TF 272 (it disables identity preallocation) and see if it makes a difference.
January 20, 2016 at 3:52 am
Viewing 15 posts - 211 through 225 (of 5,394 total)