Viewing 15 posts - 4,741 through 4,755 (of 5,111 total)
Lowell (12/6/2016)
the obvious fix is to set up a specific account for the SSRS account that does not password expire.
What we do, that account has very limited permissions on the...
December 6, 2016 at 8:10 am
What are you doing to get the above pictures. It doesn't look like you have any ordering applied (considering your number go ...336, 337, 338, 1, 2... in your image).
I...
December 6, 2016 at 7:25 am
kevaburg (12/6/2016)
Edit: Now I have read the post above you could change the Insert to read:
insert into tbl_errorlog EXEC sp_readerrorlog 0, 1, 'TempDB';
Good idea Thom!
If you're going to way,...
December 6, 2016 at 7:10 am
Maybe?
EXEC sp_readerrorlog 0, 1, 'Tempdb'
You'll need to change the value of the first parameter to go back through your archive files.
December 6, 2016 at 5:25 am
Adi Cohn-120898 (12/6/2016)
Thom A (12/6/2016)
December 6, 2016 at 3:31 am
Further Question, why ARE they a member of the db_datareader and db_datawriter roles when they are a member of db_owner role? These roles serve no purpose, as db_owner grants all...
December 6, 2016 at 3:01 am
krishnaroopa (12/6/2016)
The user has membership in db_datareader, db_datawriter and db_owner roles
There's your problem.
db_owner's can do what every they want, whenever they want, in that database.
December 6, 2016 at 2:56 am
Personally I use the same logic in SSRS that I use in SQL, which is:
DateFrom
=DATEADD("M", DATEDIFF("M", "01/01/2000", DATEADD("d", -1,TODAY())), "01/01/2000")
DateTo
=DATEADD("d", -1,TODAY())
Today, that would return 01-Dec-2016 and 04-Dec-2016 respectively. Running on...
December 5, 2016 at 9:17 am
RonMexico (12/5/2016)
December 5, 2016 at 7:11 am
Thats not what I was saying, you need to escape the special charaters:
exec xp_cmdshell 'dtexec.exe /F "D:\DBUpdates\Mypackage.dtsx" /SET "\package.Variables[User::JobLoginPassword].Value";"8\:\;xLuZc"'
December 5, 2016 at 5:49 am
Field type text is deprecated, I would definitely use VARCHAR or NVARCHAR. ntext, text, and image (Transact-SQL)
Are you going to be comparing any other fields as well? As you're on...
December 5, 2016 at 5:44 am
The escape character for SSIS Expressions is a backslash (\). So, a variable of value; abc"123; would be: ="abc\"123\;".
December 5, 2016 at 4:15 am
Using your example:
USE DevTestDB;
GO
CREATE TABLE #Emp (ID INT IDENTITY(1,1),
TNum VARCHAR(12),
...
December 2, 2016 at 10:01 am
As Steve said, we don't have a lot to work with here.
The field your testing is clearly a INTEGER, so I'm wondering why you're wrapping it with single quotations....
December 2, 2016 at 9:24 am
vkundar (12/2/2016)
December 2, 2016 at 3:21 am
Viewing 15 posts - 4,741 through 4,755 (of 5,111 total)