Viewing 15 posts - 1,201 through 1,215 (of 5,394 total)
Another possible solution is a CLR stored procedures that instanciates a connection without enlisting in the current DTC context.
Paul White has a nice blog post on the subject here. Look...
May 15, 2014 at 2:13 am
Might be worth noting that heterogeneous replication is an Enterprise-only feature, so be prepared to spend big bucks.
May 15, 2014 at 2:07 am
snowfrost.c (5/15/2014)
Can I confirm that the file is stored in the database as binary data and the file is not being stored somewhere in the SQL server ?
I suppose...
May 15, 2014 at 2:05 am
-- READ SYNONYMS FROM DATABASE 'C'
DECLARE @DATABASENAME sysname;
DECLARE @sql NVARCHAR(max);
SET @DATABASENAME = 'C'
SET @sql = N'
SELECT ''CREATE SYNONYM '' + b.NAME + ''.'' + a.NAME + '' FOR '' +...
May 9, 2014 at 2:57 am
I checked my SSMS 2014 and I don't have that font.
I think that only "modern" fonts (truetype and cleartype) are in the list and only a small subset of "legacy"...
May 9, 2014 at 2:20 am
In Reporting Services you have subscriptions for that.
Here's a quick how-to video: http://technet.microsoft.com/en-us/sqlserver/dd420576.aspx
May 9, 2014 at 1:57 am
kiran.rajenimbalkar (5/9/2014)
Just provide me how to...
May 9, 2014 at 1:53 am
You will have a set of statements to execute, then you need a cursor to iterate them and execute one at a time.
DECLARE @DATABASENAME sysname;
DECLARE @sql NVARCHAR(max);
SET @DATABASENAME = 'master'
SET...
May 9, 2014 at 1:15 am
Try something like this:
select COUNT(*) AS Cars,
SUM(CASE WHEN Color = 'Blue' THEN 1 ELSE 0 END) AS Cars_Blue,
SUM(CASE WHEN Color = 'Red'...
May 8, 2014 at 9:14 am
Jeff Moden (5/8/2014)
spaghettidba (5/8/2014)
I hope you noticed that this thread is 5 years old.So was that post. 🙂
Nope. I was referring to a post that Steve deleted today.
It contained a...
May 8, 2014 at 9:06 am
kiran.rajenimbalkar (5/8/2014)
I have to execute that created synonym scripts as well
It won't work: the synonyms are already there.
Where do you want to create them? A different database? A different server?
May 8, 2014 at 8:38 am
The creation of the linked server fails for some reason.
You didn't post the actual error message, so it's nearly impossible to give sensible advice.
May 8, 2014 at 8:13 am
Don't use maintenance plans. Index maintenance and integrity checks are performed in an unreasonable way.
Use Ola Hallengren's maintenance solution instead.
May 8, 2014 at 7:36 am
Viewing 15 posts - 1,201 through 1,215 (of 5,394 total)