all groups > sql server clients > april 2004 > threads for april 8 - 14, 2004
Filter by week: 1 2 3 4 5
Connecting a webpage to SQL
Posted by Ngan Bui at 4/14/2004 12:47:26 PM
I would like to know how to go about doing this.
I have a table ClientInfo in SQL 2k. I want the customer
service dept to be able to add new clients and search for
ones to edit. I want other groups to be able to only view
client info read-only.
1. I assume creating a webpage is probab... more >>
storing data in arabic
Posted by Mohamed Ali at 4/14/2004 2:20:11 AM
Client: WinXP arabic
Server: win2k server and SQL Server 2000
when i enter the data in the client it is showing perfect
in arabic, once if i stored in the database server and
retrieve again, it is showing garbage character. How to
store the data in arabic on the sql server.
... more >>
SQL Server 2000 Client Tool License
Posted by Eric Huang at 4/13/2004 12:03:18 PM
Hi,
We have a number of developers who write applications that connect to our
SQL Server databases. They wanted to install the SQL Sever client tools
(Enterprise Manager, SQL Analyzer, etc...). Does anyone know if I need to
purchase separate licenses to install these tools on multiple workst... more >>
Want to make as Corrlated subquery.
Posted by Noorali Issani at 4/13/2004 11:08:27 AM
How can I make the following query as a correlated sub query.
select PA_VPatientID, -- From Patient table
PA_FirstName, -- From Patient table
PA_LastName, -- From Patient table
PP_IsActive -- From Patient Personnel table
from Patient inner join PatientPersonnel
on PA_VPatientID = PP... more >>
which one is optimized
Posted by Noorali Issani at 4/13/2004 10:38:02 AM
Can you tell me which one is optimized ?
1)
SELECT au_lname, au_fname
FROM authors
WHERE 100 IN
(SELECT royaltyper
FROM titleauthor
WHERE titleauthor.au_ID = authors.au_id)
2)
SELECT distinct au_lname, au_fname
FROM authors inner join titleauthor
on titleauthor.au_ID = author... more >>
|