Viewing 15 posts - 5,116 through 5,130 (of 13,465 total)
mramey (7/30/2012)
July 30, 2012 at 1:33 pm
Scott D. Jacobson (7/30/2012)
July 30, 2012 at 1:16 pm
SQLRNNR (7/30/2012)
Which version of ACE drivers?
for me, I was trying to use ACE 12.0 drivers, which i know i installed, and can use for Excel xlsx files via openrowset so...
July 30, 2012 at 1:09 pm
edit: when i did ping /? from a command line, i do not see a -o option.
in 2008 and above, you can get it from some of the DMV.s or...
July 30, 2012 at 12:55 pm
on a similar note, has anyone gotten a linked server or openrowset command to work on 64 bit / ACE drivers?
I see there is a connect item on it with...
July 30, 2012 at 12:48 pm
which is actually being dropped, the login in sys.server_principals, or the user in databasename.sys..database_principals?
if it is databasename.sys..database_principals, is the database being restored every quarter, by chance?
if the backup doesn't contain...
July 30, 2012 at 12:32 pm
that's normal and by design.
SQL tries to keep everything in memory in order to better serve multiple requests for the same data.
unless you tell it otherwise, SQL uses all the...
July 30, 2012 at 11:48 am
could your script be multiple commands, and you are adding the same table twice?(and maybe dropping it once.
you seem to be on the right track as far as looking...
July 30, 2012 at 11:15 am
IsNumeric tests to see if the string matches any of a number of specific patterns for all sorts of data types.
select isnumeric('3e0'),isnumeric('3,4'),isnumeric('$23,454')
'18' is certainly convertable an integer, for example...did you...
July 30, 2012 at 10:56 am
select * from the table where the model not like '%[^0-9]%'
that will filter out anything that has anything that is not in the range of 0-9 characters; so punctuuation,...
July 30, 2012 at 10:38 am
maw74656 (7/30/2012)
July 30, 2012 at 10:11 am
the hiccup there, as you identified, is when files exist on the network, and not the local disk.
The system account is one of those special accounts that never logs into...
July 30, 2012 at 10:03 am
a server side DML trace is lightweight amd can provide the whodunnit info, but not the rollback of changes.
For me, i think having a DML trace that rolls over...
July 30, 2012 at 8:00 am
the way i've always handled this situation is to continue to use an identity field, but adding a persisted calculated field that creates the desired alphanumeric based on a concatenation...
July 30, 2012 at 6:33 am
looking again, i think there is a TargetObjectName in the RENAME schema.
-<xs:complexType name="EVENT_INSTANCE_RENAME"> -<xs:sequence>
<!-- Basic Envelope -->
<xs:element type="SSWNAMEType" name="EventType"/>
<xs:element type="xs:string" name="PostTime"/>
<xs:element type="xs:int" name="SPID"/>
<!-- Server Scoped DDL -->
...
July 20, 2012 at 2:21 pm
Viewing 15 posts - 5,116 through 5,130 (of 13,465 total)