all groups > sql server (microsoft) > march 2005 > threads for march 22 - 28, 2005
Filter by week: 1 2 3 4 5
OSQL and Select command
Posted by Meharis at 3/28/2005 6:07:59 PM
Hi,
Within Oracle (SQLPLUS) you can do the following command to get a count of
all the tables from index:
select count (*) from cat;
Is there something similar for MS SQL (OSQL) ?
thanks
Sanny
... more >>
Problem inserting unique records
Posted by choxio NO[at]SPAM yahoo.com at 3/27/2005 7:37:10 AM
I have two identical tables, T1 and T2, each with fields f1, f2, and
f3. I want to populate T1 with all unique combinations of f1, f2, and
f3 from T2.
selet f1, f2, f3
from T2
group by f1, f2, f3
I was thinking of something like
insert into T1 (f1, f2, f3)
select f1, f2, f3
from T2
... more >>
Query Help Pls...
Posted by craig NO[at]SPAM themurrays.org at 3/24/2005 8:12:49 PM
i have 3 tables which i am trying to generate a pretty complex query...here
are the tables.
tblmap
formid int
inputid int
listorder int
tblresults
inputid int
respondantid int
respondandinput nvarchar
tblinput
inputid int
displayname
here is some sample d... more >>
SQL Server 2005
Posted by james at 3/23/2005 2:31:24 PM
Anyone here when SQL Server 2005 will be available?
... more >>
Help with my Transfer
Posted by 652Wowway at 3/22/2005 10:09:26 PM
Hi
I have SQL server Sp3 on my sbs2003
A friend created a small Data Base with SQL 7
WE put it on our old machine which had 2000 and it worked fine.
So when we bought the new one with 2000 SP3 we copies the 3 files of .ldf
and .MDF and .LDF into the Data Folder (under the MSSQL chain)... more >>
getting data out
Posted by JJ at 3/22/2005 2:01:43 PM
Hi,
I have a sql server database.
How can client applications get data out of the database without having to
supply a username and password?
e.g I would like to write an api interface with my own username/password
authentication to allow access to certain areas.
Thanks
JJ
... more >>
simple search engine functionality
Posted by rapataa at 3/22/2005 12:13:25 AM
hi,
I'm building a simple search engine functionality for a client searching the
keyword and title and content of a page:
----
select ID, content_ID, 3 as 'weight'
from tblPage
where keywords LIKE '%test%'
union
select ID, content_ID, 2
from tblPage
where title LIKE '%test%'
... more >>
|