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...
_____________
Code for TallyGenerator
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"?
_____________
Code for TallyGenerator
March 24, 2013 at 5:47 pm
tafountain (3/21/2013)
_____________
Code for TallyGenerator
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.
_____________
Code for TallyGenerator
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 -...
_____________
Code for TallyGenerator
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...
_____________
Code for TallyGenerator
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....
_____________
Code for TallyGenerator
March 20, 2013 at 12:40 pm
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...
_____________
Code for TallyGenerator
March 19, 2013 at 6:32 pm
Which server you want your bcp to connect to?
_____________
Code for TallyGenerator
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)...
_____________
Code for TallyGenerator
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,...
_____________
Code for TallyGenerator
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...
_____________
Code for TallyGenerator
March 18, 2013 at 8:37 pm
Eugene Elutin (3/18/2013)
_____________
Code for TallyGenerator
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...
_____________
Code for TallyGenerator
March 18, 2013 at 6:46 pm
Viewing 15 posts - 2,056 through 2,070 (of 6,036 total)