Viewing 15 posts - 5,716 through 5,730 (of 7,502 total)
This linked server definitions is working !
EXEC sp_addlinkedserver 'RDBSvr',
'Oracle RDB Driver',
'MSDASQL',
'OracleRdbTest1' -- system dsn with all the nifty details
GO
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'RDBSvr',@useself=N'False',@locallogin=NULL,@rmtuser=N'myuser',@rmtpassword='mypwd'
GO
SELECT *
FROM OPENQUERY(RDBSvr, 'SELECT *...
June 5, 2007 at 3:28 am
You could off course create your own user defined function.
There are many examples at SSC.
June 4, 2007 at 11:58 pm
Since you're running an application overauthorized .... ![]()
![]()
If you make the application-service-user database owner, it will create objects...
June 4, 2007 at 11:48 pm
just to add...
also avoid using dynamic sql in your procs, because it may be executed in different context.
June 4, 2007 at 1:37 pm
No once you're on SQl 2005 you cannot go back to sql2000 unless you use DTS / SSIS to script and/or extract all data.
So even detatch / attatch wouldn't work.
June 4, 2007 at 1:33 pm
I'm pritty much out of options now ![]()
![]()
![]()
June 4, 2007 at 5:47 am
tried that resulting in :
One or more arguments were reported invalid by the provider.
Cannot obtain the schema rowset "DBSCHEMA_CATALOGS" for OLE DB provider "SQL Server" for linked server "(null)". The...
June 4, 2007 at 2:28 am
Is sa jobowner ? if not, make sa jobowner.
(in your first post, job was launched by sa)
Did you specify an "execute as " at jobstep level ? (let's hope not)
June 4, 2007 at 12:35 am
check out that the service account of your sql agent has the needed authority to read the folder where your file(s) reside.
June 3, 2007 at 2:06 pm
Never trust a default. It may change in time ..... ![]()
afaik .net framework uses repeatable read by default. or at least, that's what I seem...
June 3, 2007 at 1:57 pm
how about :
use tempdb
go
DBCC SHRINKFILE
('locigal_file_name' , EMPTYFILE 
;
go
alter database tempdb
REMOVE file 'locigal_file_name' ;
check bol at http://msdn2.microsoft.com/en-us/library/ms189493.aspx
June 1, 2007 at 12:21 pm
Hey, I've got my own arrow at maps.google.com
June 1, 2007 at 5:08 am
isn't ifxoledbc.1 the most recent installed one ?
maybe uninstalling and reinstalling the pre-latest version would do the trick.
June 1, 2007 at 5:07 am
you could also just provide 11 inputvariables for your update proc and off course some input variables for your predicates (where-clause).
(use the columnnames and match datatypes and length)
And perform just...
May 31, 2007 at 2:38 pm
Viewing 15 posts - 5,716 through 5,730 (of 7,502 total)