Viewing 15 posts - 346 through 360 (of 499 total)
Kit G (5/28/2009)
jcrawf02 (5/28/2009)
Tom Brown (5/27/2009)
Lynn Pettis (5/26/2009)
OMG, you really have to be kidding here...
As a complete and totally unrelated aside: -
There's a character called Trigger in the BBC comedy...
May 28, 2009 at 3:11 pm
Gaby Abed (5/28/2009)
GilaMonster (5/28/2009)
I thought I'd seen everything....Anyone (preferably someone who's telepathic or precog) want to tackle these?
Wow!
Reminds me of the Four Candles sketch by the Two Ronnies
May 28, 2009 at 2:26 pm
There is the source control option from within business intelligence studio - but its not part of SQL Server - that would be the obvious choice for tracking.
SSIS Packages...
May 28, 2009 at 1:32 pm
Roy Ernest (5/28/2009)
"There are two animals that I dislike, One is Snake...
May 28, 2009 at 11:50 am
Thanks for the advice, but somethings gone seriously kaputt with my 'Microsoft.Jet.OLEDB.4.0' driver - linked server returns the same error as openrowset
I have temporarily got round the problem by...
May 28, 2009 at 11:00 am
OK - the other Openrowsets WERE working fine yesterday (I didn't check earlier), however today they don't work at all. Nothing using the Jet driver works now. I've...
May 28, 2009 at 10:22 am
Yes most Odd
even without the dynamic part its failing
insert into OPENROWSET(
'Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\Temp\XL_20090528.xls',
'SELECT * FROM [tab1$]')
select * from sys.syslogins
I've verified the sheet name matches, tried renaming with and without the '$'...
May 28, 2009 at 9:02 am
Roy Ernest (5/28/2009)
The people who comes in mind for this job is our resident "SAINT" and Steve. Steve is always politically correct and SAINT is SAINT.. 😀
Unless ... :w00t:...
May 28, 2009 at 8:25 am
No sooner had I read the last couple of echo comments than I recieve a notification
http://www.sqlservercentral.com/Forums/Topic724894-146-1.aspx
He's done it again.
EDIT: and now I'm echoing Roy :hehe:
May 28, 2009 at 8:07 am
I have an existing spreadsheet, I'd changed permissions to everyone full control, made sure it was no longer open in excel - and its still failing. I must be...
May 28, 2009 at 7:49 am
I tried this - changing your table names to match my system
DECLARE @dt varchar(8)
declare @newfile nvarchar(100)
SELECT @dt = Convert(varchar(8),getdate(),112)
set @newfile='C:\temp\XL_'+@dt+'.xls'
Declare @XLString nvarchar(4000);
SET @XLString='
insert into OPENROWSET(
''Microsoft.Jet.OLEDB.4.0'',
''Excel 8.0;Database=C:\temp\'+@newfile+''',
''SELECT...
May 28, 2009 at 6:31 am
OPENROWSET does not accept variables for its arguments.
May 28, 2009 at 6:11 am
Check out tables in msdb such as [dbo].[sysdtspackages] - there are a few others with similar names too.
May 28, 2009 at 5:54 am
You have a mismatched bracket here
SELECT * FROM OPENROWSET('SQLNCLI','DRIVER={SQL Server);Server={Named Instance};
Should be DRIVER={SQL Server}
May 28, 2009 at 5:48 am
If you have TableA, and TableB - do you want to UPDATE existing rows in TableA with data from TableB, or INSERT new Rows from TableB to TableA, or (as...
May 27, 2009 at 4:41 pm
Viewing 15 posts - 346 through 360 (of 499 total)