Viewing 15 posts - 196 through 210 (of 583 total)
Does the proc fail with error or does the proc succeed but the email does not get sent?
If proc fails, provide error. If email does not get sent, check dmail...
January 22, 2014 at 9:29 am
The linked server definition has mapped Active directory logins or the option "B made using the Login's current context" is specified and you are logged in to the server with...
January 22, 2014 at 9:17 am
That's good to know that just changing a VARCHAR(10), let's say, to a NVARCHAR(10) might lead to concatenating some of the data. And it's also good to know that the...
January 15, 2014 at 1:13 pm
I don't see any reason why the data would be affected.
CREATE TABLE dbo.test(data varchar(10));
INSERT INTO dbo.test
VALUES('test data');
ALTER TABLE dbo.test ALTER COLUMN data nvarchar(10);
SELECT *
FROM dbo.test;
DROP TABLE dbo.test;
if you...
January 15, 2014 at 9:56 am
Why would you be able to used this? You have six weekly files which will encompass one months worth of logs. you just need to loop through your logs and...
January 15, 2014 at 9:36 am
You could calculate the difference between the max and min times of all error logs in the past month.
here is an example
CREATE TABLE #current(logdate datetime,
ProcessInfo varchar(10),...
January 10, 2014 at 11:09 am
Beatrix Kiddo (1/8/2014)
* Is this just one database in your log, or...
January 8, 2014 at 9:26 am
Lowell (1/3/2014)
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us everything.
continue the thread...
January 3, 2014 at 12:55 pm
You can either give the account that started sql agent permissions to the folder or use SQL Server Agent Proxies.
Is WINNTDOM\sqlserveragent the SQL agent account?
January 2, 2014 at 10:05 am
numeric and decimal are functionally equivalent.
December 23, 2013 at 3:19 pm
this sounds like a kerberos issue. I would check if the proper SPN is created and whether the SSRS service account has delegate permissions
have a look at this article
December 19, 2013 at 8:12 am
December 17, 2013 at 12:49 pm
inevercheckthis2002 (12/17/2013)
Do I need to take an additional transaction log backup so that I can then use it, or is there a way to replay the log itself?
getting another log...
December 17, 2013 at 8:51 am
Maybe you should brush up on your google skills:-D
December 17, 2013 at 7:51 am
Wayne.Emminizer (12/16/2013)
These initial packages are updating lookup tables. ...
December 16, 2013 at 11:13 am
Viewing 15 posts - 196 through 210 (of 583 total)