Viewing 15 posts - 271 through 285 (of 334 total)
Tried it:
EXEC sp_addlinkedserver 'ExcelSource',
'Jet 4.0',
'Microsoft.Jet.OLEDB.4.0',
'C:\Documents and Settings\RS02130\Desktop\OLS Requests.xls',
NULL,
'Excel 8.0'
GO
EXEC sp_addlinkedsrvlogin 'ExcelSource', False, null, null, null
GO
select * from ExcelSource...OLS
Result is:
Server: Msg 7399, Level 16, State 1,...
April 28, 2004 at 7:32 am
Can anyone explain why I would have to have a login for an Excel Spreadsheet? At best I would think "False, Null, Null, Null" would work. Excel doesn't do any...
April 28, 2004 at 6:01 am
You can do it without the first task if you just use a couple more FSO properties and methods:
Dim fso...
April 26, 2004 at 4:54 am
But doesn't giving the user the SA Server role give them the ability to change their own permissions? Doesn't this create a huge security hole?
April 23, 2004 at 8:59 am
You can use an ActiveX task with VBScript and the File System Object to look at the files' DateCreated property, get the file name and modify the import task's Source...
April 22, 2004 at 5:51 am
This whole thing was sparked by a need to take all the tasks on my Outlook calendar (that's how I keep track of all...
April 20, 2004 at 7:50 am
Bill, I'm not familiar with using the Execute SQL task that way. How do I get the output from the SP into a temp table that I can pass to...
April 20, 2004 at 4:42 am
There was a PRINT statement hidden in the original code I purloined for the SP. Once I got rid of that the Preview button...
April 19, 2004 at 1:45 pm
According to MS there are "several" vendors working on programs to translate Crystal Reports RPT files to Reporting Services format. I heard there might be something available in 3Q2004. Of...
April 16, 2004 at 5:49 am
A new and very complete FTP Custom Task was posted on http://www.sqldts.com. I downloaded and implemented it and it's great.
April 15, 2004 at 5:47 am
Good post from the point of a paranoid security wonk. They restrict xp_availablemedia which is required to use Bulk Insert and they restrict xp_sdidebug which is required for debugging of...
April 15, 2004 at 5:37 am
I had several versions of this I picked up from various sources and I was able to get one of them working. I need to look and see if there's...
April 14, 2004 at 1:20 pm
I was in VB6. Since there was no project file I had to set the Project Properties to ActiveX DLL, No Startup, Set the Project Name, then it let me...
April 14, 2004 at 11:22 am
I opened the CLS file in Visual Studio and updated the functions and API calls based on the WinInet doc. Then I went looking for the option to build a DLL...
April 14, 2004 at 11:00 am
The link you posted points to code that's executed in T-SQL which would require using a SQL Task in DTS with all the code buried in it. Plus the example...
April 14, 2004 at 9:48 am
Viewing 15 posts - 271 through 285 (of 334 total)