Viewing 15 posts - 5,101 through 5,115 (of 5,685 total)
[SecurityException: That assembly does not allow partially trusted callers.]
Double-hop security issue, I think. Not sure how to work around that for SSIS though. Either that or are you...
November 3, 2010 at 12:18 pm
I'm not sure I get the new concept of 'swarm'. Nope, not at all. Most of my experience with swarming is me trying to fix some issue with...
November 3, 2010 at 12:14 pm
TJonsek,
It's not a lack of interest, but time, that's probably got a lot of people delaying on getting involved in this thread. There's a lot of information in your...
November 3, 2010 at 11:51 am
These are estimates, not actuals, but it still gives us some idea of what's going on. The actuals are more useful, however.
In the massive statement (SELECT DISTINCT, 5th statement,...
November 3, 2010 at 11:23 am
CirquedeSQLeil (11/2/2010)
Do you use websense at work?
I know I do, and it occassionally screws up for me too. They're related, I take it?
November 2, 2010 at 6:11 pm
mymail.default (11/2/2010)
Thanks Craig.The processer is a quad core with 16g ram.
I found the CPU for this stmt in question is 377678
Which means nothing out of context, other than it's not...
November 2, 2010 at 4:08 pm
Figured it out again (I think):
DECLARE @beginYear DATETIME
SET @beginYear = DATEADD (yy, YEAR(getdate()) - 1900 , 0)
PRINT dateadd( dd, (DATEPART( wk, getdate()) - 1) * 7 - datepart(dw, @beginYear)...
November 2, 2010 at 4:02 pm
Numerous.
Stored Cache in engine.
Security allowed execute only on proc and no direct data access.
Multiple call reusability.
(Depending on tasks) Can do multi-step processes that a view cannot.
Helps to protect against SQL...
November 2, 2010 at 3:45 pm
Well, there's
DATEPART( mm, @date) which will give you the month.
DATEPART( ww, @date) which will give you the week # in the year.
You'll use those for sorting.
For display, you can then:
DATENAME(...
November 2, 2010 at 3:42 pm
Roy Ernest (11/2/2010)
Thank You. I saw some sunlight about 5 minutes back. So that is a good sign. 🙂 After 24 hrs.. 🙂
Must have been one wild ride. Glad...
November 2, 2010 at 3:11 pm
Nope. I have only used the return value, or selected the results of the exec into a temp table and then used whatever I needed from the #tmp.
November 2, 2010 at 3:10 pm
Gift Peddie (11/2/2010)
November 2, 2010 at 3:08 pm
Figured out the problem. It's because the 'tabs' are converted to spaces when I copy/paste the code in. Seeing if it works from plain encoding. Yes, plain...
November 2, 2010 at 2:59 pm
naidu4u (11/2/2010)
I am unable to structure the code, I mean its becoming really difficult to insert the row column in this tmp table...(by using views since I can really insert...
November 2, 2010 at 2:54 pm
Viewing 15 posts - 5,101 through 5,115 (of 5,685 total)