Viewing 15 posts - 196 through 210 (of 262 total)
September 9, 2008 at 11:21 am
Ultimate security guide:
Test scenario:
1. Computer 1 - SQL server 32 bit edition running on Windows 2003
2. Computer 2 - Windows XP desktop.
On computer 2 create a new folder on c:\...
September 9, 2008 at 11:14 am
What sheets this file is containing? Does it contain Sheet1 etc. or does it contain 6322Missing?
I am assuming that you are still running it locally on your SQL server and...
September 9, 2008 at 9:35 am
Can you please try replacing this:
select * from opendatasource('Microsoft.Jet.OLEDB.4.0',
'DataSource=C:\PIDExcelTest\6322done.xls;
user id=Admin;password=;Extended properties=Excel 5.0')...[6322missing$]
with this:
sp_addlinkedserver EXCEL,
...
September 9, 2008 at 8:55 am
binduldo,
you have to understand a concept of security behind linked server.
Your linked server currently using "YourSQLLogin", not sa.
If you will enter "sa" in your linked server settings, it will work...
September 8, 2008 at 9:03 pm
RD,
if the owner of sproc on one server is different from the remote user specified on the linked server and different from a SQL user defined on the second server...
September 8, 2008 at 6:10 pm
Because DTS package is executed under Windows security and linked server under you SQL security..
Can you replace this statement with the following:
EXEC sp_addlinkedsrvlogin
@rmtsrvname = N'VIMachine',
@useself = N'false',
@rmtuser = N'Admin',
@rmtpassword =...
September 8, 2008 at 6:01 pm
I was using this approach:
http://www.databasejournal.com/features/mssql/article.php/10894_3709441_1
September 8, 2008 at 2:07 pm
That is a statement you are using:
select * from opendatasource('Microsoft.Jet.OLEDB.4.0',
'DataSource=C:\PIDExcelTest\6322done.xls;
user id=Admin;password=;Extended properties=Excel 5.0')...[6322missing$]
Data Source...
September 8, 2008 at 1:53 pm
Download a free test release of Apex SQL Diff.
September 8, 2008 at 1:48 pm
One of your previous postings saying that you have two servers?
Does it mean that your Excel file located on a server different from the server where SQL server is located?
September 8, 2008 at 1:33 pm
Verify that the security context under which you are logging to the Console and security context of the account running your SQL Agent are the same.
September 8, 2008 at 1:29 pm
Are you logging in to your SQL server using SQL server authentication or windows authentication?
September 8, 2008 at 1:03 pm
Shouldn't it be Excel 8.0 for Excel 2002 in extended properties.
Also, MS recommends using OPENDATASOURCE for only infrequent access. Did you try linked server instead?
September 8, 2008 at 1:00 pm
TRUNCATE TABLE defaulted to a table owner.
You can use EXECUTE AS in SPROC.
September 8, 2008 at 12:23 pm
Viewing 15 posts - 196 through 210 (of 262 total)