0
votes
5answers
95 views
Interesting SQL problem
I have a SQL problem I am trying to digest. I am using SQL Server 2005.
In a table I have data as such:
ID Type
1 A
2 A
3 A
3 B
4 B
I nee …
1
vote
4answers
38 views
efficiency of SQL ‘LIKE’ statement with large number of clauses
I need to extract information from a text field which can contain one of many values. The SQL looks like:
SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtex …
1
vote
9answers
142 views
Is it OK not to use a Primary Key When I don’t Need one
If I don't need a primary key should I not add one to the database?
0
votes
1answer
13 views
SQL Server 2005 - most straightforward way to grant read access to data AND code?
Is there a straightforward way to do this? Basically, there's a large set of sql servers that some people need access to. They only permissions they need is to read all data and …
0
votes
2answers
32 views
SQL Server get next previous rows from a table based on a date
I have the following SQL Server query and I am trying to get the next and previous row from a given Id. All works great unless there are two/more dates that are the same, then my l …
0
votes
1answer
27 views
SQL Server single user mode
Im experiencing an issue with a production server. I can connect to the server from only one program at a time. Eg, when I connect from SQL Management Studio then nobody else can, …
0
votes
2answers
27 views
I m using one database with the same name in SQL Server 2000 and SQL Server 2005.
I am using one database with the same name in SQL Server 2000 and SQL Server 2005.
How can I manage the connection string in the web.config file so that we can differentiate the …
0
votes
1answer
12 views
VB.Net 3.5 and SQL Server 2005 Windows Chat Application
Hi
Currently following is the project I need to submit for my college assignment:
A vb.net chat application with a ms sql server 2k5 backend, max 100 users with file transfer, one …
2
votes
4answers
93 views
SELECT TOP 1 in a many to many query
I have a faily simple many to many schema, which looks like this:
What I'm trying to do is select all players with some arbitary conditions and I also want to select their most re …
0
votes
3answers
65 views
who deleted a SQL table?
Hi,
In the production server i see that there were 2 important table which got suddenly missing. This was an absolute surprise for us. due to this our application went down. Final …
0
votes
1answer
48 views
Subgroup Count in SQL
Hey all,
I have a query that looks like the following:
select
c.[Name],
c.Description,
c.ID,
cd.StartDateTime
from
Classroom.dbo.Class as c
left join
Classroom.dbo.Course …
1
vote
1answer
14 views
SQL server insert data from table into an XML variable
How can I insert a whole bunch of rows into an XML variable without using a cursor?
I know I can do
SET @errors.modify('insert <error>{ sql:variable("@text") }</error> …
1
vote
4answers
64 views
how to get last 10 records form sql table in asc order…
select top(10) from customer order by customer_id desc
1
vote
2answers
32 views
SQL Server 2005 user prioritization
I currently have a SQL Server 2005 database that is accessed by multiple users. Is it possible to have SQL give processing priority to specific users based on their login names? …
1
vote
5answers
56 views
sql query tree like structure
I have a tree like structure of Categories, the leaf Nodes in the tree have Products and the products have Cods
I need to select all the top level Categories (parent=null) that hav …

