Viewing 15 posts - 1 through 15 (of 62 total)
WayneS (8/31/2010)I thought that there was an implicit conversion going on.
I hope it didn't seem like I was arguing that there wasn't an implicit conversion going on. The error...
August 31, 2010 at 6:59 pm
:unsure:I'm not trying to be difficult, and I know not seeing the CTE setion would give a more complete picture, but I just can't post it....a) it's very long and...
August 31, 2010 at 4:04 pm
Jason - I hear you. But even if there was some implicit type conversion problems with the omitted CTE section, I don't see how it would explain why the...
August 31, 2010 at 10:22 am
I'm not sure if I can. Let me see if I can duplicate this problem with a simple example that doesn't disclose anything my company might get antsy about...
August 30, 2010 at 5:10 pm
Ah, just found this MSKB 181362. But it sounds like you are on top of it based on your results....you actually switched context.
mchofman (3/30/2010)
March 30, 2010 at 11:00 am
Marco - Wow...that all sounds impressive. Unfortunately, I have no idea what you are talking about...:blush:. I'm really just an old-school programmer that tries to put on a...
March 30, 2010 at 10:43 am
If the job owner has sysadmin authority, the job always runs under the SQL Agent security context.
...
If the job step Run As is blank, the step runs under the job...
March 30, 2010 at 10:02 am
liteswitch (3/29/2010)
March 29, 2010 at 12:50 pm
My understanding is that in order to use Windows Authentication between two server, you'll need to setup some sort of "trust" between the servers and use the impersonate check box...
March 29, 2010 at 12:46 pm
vidya_pande (3/29/2010)
General answer-SQL jobs run under the context of logon account with which SQL Server angent is running.
I don't think so...at least that's not what I'm seeing. Apparently...
March 29, 2010 at 11:49 am
Thanks Bhuvnesh. But that's soft of like answering, "Yes" to a three part question. 😉 I'm trying to figure out HOW to control the security context of...
March 26, 2010 at 8:24 am
Thanks for the response HappyCat59, I'm familiar with proxy accounts but I think you are misunderstanding my problem. The problem is not the security within the execution context of...
March 26, 2010 at 7:58 am
Never mind...customer had some outdated code with mistakes in it. The problem code was simply putting values into @coll (lower case "L") instead of @col1 (number "1")...looks almost identical...
March 20, 2010 at 8:49 pm
I solved a similar problem using a table-valued function that took two dates, used a while loop that iterates through the dates using DATEADD(...), and loaded each new date into...
March 12, 2010 at 9:28 am
Never mind, found the info I needed here:
http://www.databasejournal.com/features/mssql/article.php/3302341/SQL-Server-and-Collation.htm
So changing the code above to this, fixed it:
DECLARE @C VARCHAR(10)
,@i VARCHAR(10)
SET @i=192
SET...
December 23, 2009 at 4:50 pm
Viewing 15 posts - 1 through 15 (of 62 total)