Viewing 15 posts - 1,906 through 1,920 (of 2,356 total)
You will need Enterprise edition for data driven subscriptions, and you need to have the correct permissions.
November 2, 2015 at 10:00 am
Brandie Tarvin (10/30/2015)
Nevermind. One of our developers finally responded to my request...
October 30, 2015 at 6:48 am
A thought I had may work. It may be more intrusive than you would like, however.
You have identified the indexes/tables that are affected by this, correct?
Whenever you...
October 29, 2015 at 8:20 am
You need to develop a data driven subscription.
This article should get you started.
October 28, 2015 at 7:10 pm
Keep in mind that you are not going to edit the job, or the data in the underlying tables.
You will need to go into the correct report, and modify the...
October 28, 2015 at 1:08 pm
It's going to do that. I honestly do not know the real answer, but this is my take. I have seen this behavior before.
Replication is not "smart"...
October 27, 2015 at 2:58 pm
SELECT SUBSTRING('AB120315111111', 5, 4)
October 27, 2015 at 2:49 pm
Is this to a local drive?
I would probably check with my hardware person to see what can be done to increase the transfer rate. If it's not,...
October 27, 2015 at 12:21 pm
What does Query Analyzer provide that SQL Management Studio does not?
There are many third party tools available, Toad is one of the more popular ones.
And, I'm not sure...
October 27, 2015 at 11:34 am
sandeepraichura (10/26/2015)
Did anyone came across...
October 27, 2015 at 11:27 am
I suspect the XML. See if removing that column from the insert succeeds. if that's it, convert it to nvarchar(max), and then back to XML.
You can do...
October 27, 2015 at 9:51 am
Ed Wagner (10/27/2015)
Luis Cazares (10/27/2015)
Actually, I won't because I'm not at the summit, but couldn't help myself. 😀
Yeah, me either. I hope the next one is closer to Michigan....
October 27, 2015 at 9:41 am
drew.allen (10/23/2015)
October 23, 2015 at 12:13 pm
I'm not asking you to hard-code the year.
I asking you to query the table and see if any records exist in the table that match the criteria. ...
October 23, 2015 at 11:20 am
Run this code and see if anything comes back:
SELECT DATEPART(yyyy,Call_Date) AS ArchiverYear
FROM tblCall
WHERE Call_Date <= '01/01/1900'
If not, there are no records in the table with a call date...
October 23, 2015 at 11:09 am
Viewing 15 posts - 1,906 through 1,920 (of 2,356 total)