Viewing 15 posts - 46 through 60 (of 60 total)
June 20, 2004 at 10:46 am
Thanks for replying Jeet,
a) there's nothing in the event viewer
b) It fails on the "EXEC @rc = sp_OAMethod @lFolder, 'Size', @lFolderSize OUT" line.
c) The path...
June 8, 2004 at 7:59 am
You can do it with something like:
INSERT INTO #Author
SELECT a.*
FROM OPENROWSET('SQLOLEDB','localhost';'sa';'abominable',
'SET FMTONLY OFF; exec pubs.dbo.xml_test;') AS a
But it will end up in binary because XML AUTO returns a...
May 28, 2004 at 4:29 pm
Take a look at the SQL2K ressource kit. There used to be an ODBC Ping utility in there (or something similar).
Eric
April 19, 2004 at 8:46 am
Thanks Brian!
I knew they were only in master but were usable in each db (aka sp_ procedures) but your idea with OPENQUERY...
April 16, 2004 at 4:11 pm
Hi Midan,
I've seen a sp do this with sp_OA procedures. It's ugly and the end result is a Word document, not RTF. You better do this with an external application...
April 16, 2004 at 2:58 pm
If you don't mind some overhead, make an external call that can't be enrolled in the transaction. Some examples that come to mind are:
- a DTS package
- a direct call...
April 16, 2004 at 2:48 pm
>the only difference ...
That's what I meant. I also tried accessing views owned by other users (not DBO and not INFORMATION_SCHEMA) and it works. Also tried upgrading MDAC on both...
April 16, 2004 at 2:26 pm
I reproduced the problem and I think it's a good candidate for a SQL (or MDAC) bug report.
Steps to reproduce:
a) I used an already...
April 16, 2004 at 12:11 pm
Have you tried using DTS instead? You can keep using your vb script and you can execute a DTS package from a SP. I used this once to collect info...
April 8, 2004 at 6:47 am
Thanks Ed,
>about 2 hours to re-sync even though only a few MB of data has changed.
Oops. We also have a few dbs but also about 1.3 million files to keep...
April 8, 2004 at 6:29 am
It depends on what you are doing with the data you are reading. If it's only for display (e.g. a monitoring tool) it's not too bad. Don't base an action...
December 30, 2003 at 8:51 am
There are multiple ways to do this. You could have SQL post to a web service for example. But I would recommend MSMQ:
- trigger calls a DTS package
- DTS package...
December 28, 2003 at 9:01 am
quote:
quote:
Was surprised not to see any question about SPN and kerberos authentification.
May 23, 2003 at 7:12 am
I enjoyed the test.
Was surprised not to see any question about SPN and kerberos authentification. This is one of the more confusing aspect of sequel security.
May 22, 2003 at 1:59 pm
Viewing 15 posts - 46 through 60 (of 60 total)