Viewing 15 posts - 18,841 through 18,855 (of 18,925 total)
I totally agree with that.. Microsoft should put a big flashing sign that it's copying/deleting all the content of the table underneath it all.
But then again why would DBAS exists...
November 11, 2004 at 6:52 am
could this do the job (never worked with 65 compatibility)
CREATE FUNCTION [dbo].[fnReplace] (@String as varchar(8000), @Search as char(1), @Replace as varchar(1))
RETURNS varchar(8000) AS
BEGIN
Declare @i as...
November 11, 2004 at 6:49 am
Hehe didn't see that one comming 🙂
DECLARE @datestring varchar(8)
November 11, 2004 at 6:29 am
No offense Guus Kramer but why not use enterprise manager if you're gonna do it the same way it does it but without the User interface?? Other than can...
November 11, 2004 at 6:26 am
I'm not expert at non-equal joins and I jut can't see the problem.. hopefully somebody else will find the solution.
Good luck.
November 10, 2004 at 8:58 am
can you post the table data along with the expected results and the current results so we can work out the join?
November 10, 2004 at 8:22 am
Been there, done that... it's always so simple once you have the solution 🙂
November 10, 2004 at 6:20 am
If I understand correctly you problem, I think it's pretty much the same probleme as trying to save an image in the DB. I think what you need is...
November 9, 2004 at 12:58 pm
Can't you simply merge the 2 logics?? >>
Insert into a (key1,key2,data) (Select Key1, Key2, data from tblB B where not exists (Select * from a A where A.key1 = B.Key1...
November 9, 2004 at 12:50 pm
Good.. I just wish I had had an Oracle server to do some tests.. would have saved us a lot of typing :-).
November 5, 2004 at 9:34 am
I think I got you mixed up. OPENROWSET can be used in two ways :
in the first exemple I showed you I used all the information required to setup...
November 4, 2004 at 7:22 pm
I think it's surprising they don't have a lot more... think about how many GB of text they published over the years... if only their software had so few...
November 4, 2004 at 7:15 pm
Antares686.. on a more serious note, it is forbidden to use raiserror in a UDF. I however found a nice workaround :
CREATE FUNCTION [dbo].[fnTest] ()
RETURNS int...
November 4, 2004 at 2:56 pm
Not that's normal. What it means is that the syntaxe in your query is wrong. Have you tried my query in the previous message?
I also thaught you could...
November 4, 2004 at 1:37 pm
I think the first thing to do is to see if the link to oracle is working. In entreprise manager open the server where you added the linked server,...
November 4, 2004 at 1:12 pm
Viewing 15 posts - 18,841 through 18,855 (of 18,925 total)