Viewing 15 posts - 3,046 through 3,060 (of 13,461 total)
dwilliscp (7/26/2013)
But I am looking for a better way to not run the...
July 26, 2013 at 12:09 pm
As An FYI for datetime, Luis mentioned you can't add a single millisecond; the minimum is 3 milliseconds, and that's imposed due to the way the data is stored by...
July 26, 2013 at 10:25 am
Patti Johnson (7/26/2013)
Thank you Lowell. It looks like you have installed the Oracle full client not the Oracle Instant client. Is that correct?
Patti yes, that is correct; we...
July 26, 2013 at 10:15 am
my first thought, is that this trigger is checking things that don't make sense in that WHERE statement, and can be updating rows that it should not.
of course the [Document]...
July 26, 2013 at 9:47 am
dwilliscp (7/26/2013)
July 26, 2013 at 8:29 am
Patti I hope this helps:
this is a copy of the definition for scripting my linked server to Oracle; this is working for me, without using a DSN.
note that if your...
July 26, 2013 at 6:55 am
ok, after modifying the SoapAction to the correct name, i get the xml back of the data table, but the xml doesn't contain the schema,just the data i think,...
July 26, 2013 at 6:04 am
||edit||: the code below, as long as you have a web server and a valid conneciton to a sql server from that web server works 100%
I found this interesting when...
July 26, 2013 at 5:56 am
note that the PATH variable is null?
I'm sure that means because someone is actively using SQL Profiler to run the trace live; Profiler will instantly recreate the trace if it...
July 26, 2013 at 5:40 am
Cadavre I love your new signature with the nolock pointers! just noticed it today.
July 26, 2013 at 5:33 am
at least in SQL2008 and above, for cross database or cross server references, references are at least tracked in the current database, but not enforced of course
this query has...
July 25, 2013 at 2:21 pm
another possibility is to create the user with the "right" limited permissions, with the same password as 'sa' currently;
that should be easy to do , since everyone is logging in...
July 25, 2013 at 2:11 pm
i believe that's because , according to SQL rules, you cannot create a parameter from appended objects. you can assign it, or build it before hand, but noty inline
declare @param...
July 25, 2013 at 9:54 am
Eugene Elutin (7/25/2013)
Lowell (7/25/2013)
SELECT *,
CASE
WHEN x LIKE '%[0-9]'
THEN 1
...
July 25, 2013 at 9:39 am
doh!, if it ends in [0-9] might be even easier?
SELECT *,
CASE
WHEN x LIKE '%[0-9]'
THEN 1
ELSE...
July 25, 2013 at 8:06 am
Viewing 15 posts - 3,046 through 3,060 (of 13,461 total)