1
vote
1answer
19 views
Transactions in .Net 2.0 application— what to use?
Hi everyone,
I'm working on a .Net 2.0 application and need to wrap some database transactions in my code. The backend is SQL Server 2008.
I've been away from .net for a few yea …
-3
votes
1answer
90 views
Pls answer , Career Q: Will SQL 2008 Jobs increase in future? [closed]
Hi , I have 1 year SQL 2000 experience.
I would like a career as DBA and I've read that MS SQL 2008 is better than Oracle ,
therefore would it be possible 4 me to get job as DBA if …
2
votes
3answers
63 views
SQL: Deleting duplicate records in SQL Server
hi!
I have an sql server database, that I pre-loaded with a ton of rows of data.
Unfortunately, there is no primary key in the database, and there is now duplicate information in …
0
votes
1answer
24 views
SQL Server 2000 vs SQL Server 2008 Query Performance
I'm working with a client who had a SQL Server 2008 converted from a SQL Server 2000 DB and one of the queries has quite dramatically increased in time since it was on SQL Server 2 …
0
votes
3answers
33 views
Monitoring dashboard for IIS and SQL Server
We have developed a .NET web application that uses SQL Server as a backend. Now we would like to provide a monitoring dashboard app for the tech support team. The idea is that this …
0
votes
3answers
50 views
Change case of a column name
I have a table in my warehouse that has columns in all uppercase. It scripts out like this:
CREATE TABLE [dbo].[Outlet](
[OUTLET_KEY] [varchar](10) NOT NULL,
[OUTLET] [var …
6
votes
17answers
311 views
SQL: Inner joining two massive tables
Good afternoon,
I have two massive tables with about 100 million records each and I'm afraid I needed to perform an Inner Join between the two. Now, both tables are very simple; h …
0
votes
2answers
13 views
Does Covering Index Duplicate Data?
Suppose we have this index
CREATE INDEX IX_test ON t1(c1) INCLUDE (c2)
Does this mean that we will have c2 in both index page and the actual data page? The real question is - do …
0
votes
3answers
38 views
Should a Sequential Guid primary key column be a clustered index?
The goal of using a sequential guid is so you can use clustered indexes without the high levels of fragmentation that would normally exist in a clustered index if it was a regular …
0
votes
1answer
17 views
Migrating from SQL Server 2000 to SQL Server 2008
I need to migrate SQL Server 2000 databases to SQL Server 2008 and need to formalize a generic strategy for this migration. Need a ordered list of activities which should be done t …
1
vote
2answers
49 views
How best to do a partial text match in SQL Server 2008
I've a large (1TB) table in SQL Server 2008 that looks something like this:
ID int | Flag BIT | Notes NTEXT
I need to search every row and set the Flag bit to 1 where Notes conta …
1
vote
3answers
42 views
indexing pros cons in sql server 2008
I am working on social networking site. now our team decide to store user profile in denormalized manner. so our table structure is like this
here attribute it means one fields fo …
0
votes
2answers
29 views
select query in sql server 2008
I have two tables
create table tblchildinfo
(id int, name varchar(50),
pickuppointid int, dropdownpointid int)
and
create table tblpoint(pointid int, PointName varchar(5 …
1
vote
1answer
47 views
SQL Recursive Menu Sorting
I've got a simple table that I'm using to represent a hierarchy of categories.
CREATE TABLE [dbo].[Categories](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Title] [varchar](256) NOT N …
1
vote
3answers
35 views
Is there a SQL Server 2008 method to group rows in a table so as to behave as a nested table?
This could turn out to be the dumbest question ever.
I want to track groups and group members via SQL.
Let's say I have 3 groups and 6 people.
I could have a table such as:
T …

