Viewing 15 posts - 2,056 through 2,070 (of 6,036 total)
opc.three (3/24/2013)
The fact is that a system with xp_cmdshell disabled has less security exposures, has less vulnerabilities and is more auditable than a system where it is enabled.
OK.
I'm an intruder...
March 24, 2013 at 7:24 pm
A Y 1 Z
What is the rule for leaving this particular record, not any of the others with "A Y"?
March 24, 2013 at 5:47 pm
tafountain (3/21/2013)
March 21, 2013 at 3:25 pm
Record consumption events against nodes the entites belong to at the moment, not entities themselve.
Then shifting an entity to another node won't change statistics of consumption for nodes.
March 20, 2013 at 5:48 pm
event.eventdate (as any other column used for a range selection, i.e. >=, <, BETWEEN, etc.) must be made a 1st column of a clustered index on the table. Or -...
March 20, 2013 at 5:21 pm
Or alternative method:
1. Create a procedure which returns a list of the jobs which "are running longer than defined SLA"
2. Add a bcp command to your .BAT file which runs...
March 20, 2013 at 5:14 pm
ggarcia 73023 (3/20/2013)
That would work if I were looking for '01J416781'
From your post right from above:
I am looking to find '01J416781', each row of data starts with this pattern....
March 20, 2013 at 12:40 pm
WHERE value_expression LIKE @Pattern + '%'
Is it what you need?
March 19, 2013 at 10:14 pm
Oh, I see.
"To write" is "to read.
Aha.
And "black" is "white'.
And "lie" is "truth".
Of course.
I'm recalling I read something like that before...
Or - did I write it?
Oh, I cannot...
March 19, 2013 at 6:32 pm
Which server you want your bcp to connect to?
March 19, 2013 at 6:21 pm
try to run
SELECT
BatchID,
FieldA,
FieldB,
CAST(ISNULL(ROW_NUMBER() OVER (PARTITION BY BatchID ORDER BY DateEntered), 0) AS INT)...
March 19, 2013 at 6:08 pm
Just to annoy you Lynn 😀
select ...
from mytable mt
inner join (
select dateadd(hh, 1, dateadd(dd, datediff(dd, 0, getdate()), 0)) StartDate
) DT ON mt.someeventdatetime >= DT.StartDate and mt.someeventdatetime < dateadd(dd, 1,...
March 19, 2013 at 5:37 pm
mister.magoo (3/18/2013)
I realise this is a bit off-topic for the original question,
I believe the whole thread by now is off-topic for the original question.
but just in case anyone...
March 18, 2013 at 8:37 pm
Eugene Elutin (3/18/2013)
March 18, 2013 at 8:21 pm
dtibz01 (3/18/2013)The part that I find to be a little frustrating, is that the data types for the parameters defined for WITH RESULT SETS are defined elsewhere in the SP...
March 18, 2013 at 6:46 pm
Viewing 15 posts - 2,056 through 2,070 (of 6,036 total)