thank's a lot for your advice BUT ...
i need to run queries on a remote DBase file
(does SQL linked server support an appropriate service provider?)
if not - how can i run a distributed query???
i wish to avoid data import.
thanks .
in MS-Access there is an option to create a linked table, so that the table in the local database is only a reference to a table in a foreign database.
I wan't to create a table in my local database
(SQL-Server 7.0), that is a read-only link to an foreign table in an outside dBase file.
How...
it works although it is syntacticly weird
{ i would expect rows from tbl1 to be deleted }
i think the ORCALE way is clearer, BUT..
thanks a LOT, you've helped !!!
the 2 SQL statements aren't equivalent:
say tbl1 looks like this:
fld1 | fld2
-----------
1 | 2
3 | 4
your sql will delete the record 1,4 from tbl2
while my sql won't !!!
i need to delete only matching records
(in the above example (1,2) Or (3,4))
how do i write the following sql in sql-server 7.0?????? (it works in ORACLE)
DELETE FROM tbl2
WHERE (fld1,fld2) = ANY (SELECT fld1,fld2 FROM tbl1);
[*** i want to delete from tbl2 all the rows with
corresponding values in tbl1 ****]
I'm trying to get a weekday name using:
DATENAME(<datapart>,<date>) function.
PROBLEM: i want the result in language that is not
the default language and not exists in the syslanguages table(for example:arabic,hebrew).
Is there any UPDATE with more supported languages
OR any way that i can...
i have a javascript file called general.js, which contains
general info, for example:
var link="http://serverName/mainDir";
var user="myUser";
QUESTION:
when i link an external .js file into my HTML, for example:
<html>
<head>
<script...
1) I've written a simple .xsd file.
2) I've writeen an HTML page - embeded inside an XML ISLAND
and refered to the .xsd file
3) I've created a table to show the xml and binded all the
corresponding fields (Tabular Binding)
PROBLEM: NO matter what Content i PUT into the embeded XML Island, IE...
10'x for everyone,
i've solved my problem by sending @param = NULL values for parameters i want to disable from the where codition
and using WHERE fldName = IsNull(@param,fldName)
in the Condition
In addition to the ORIGINAL massage i posted:
i'm calling a sproc (from ASP) that contains a query
of the format i've indicated above and contains a condition of the type:
WHERE fldName1 = @param1
AND fldName2 = @param2
! NOTICE that the condition must be "="
and i was wondering if...
Is there any KeyWord that i can use in sql-server,
that when writing the folloing query:
SELECT fldName
FROM tblName
WHERE fldName = <KeyWord>
the result will be all the records?
if does - what is the KeyWord?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.