Search Results

0
votes
5answers
102 views

Table with a lot of columns

If my table has a huge number of columns (over 80) should I split it into several tables with a 1-to-1 relationship or just keep it as it is? Why? My main concern is performance. PS - my ta …
0
votes
6answers
305 views

Sql Stored Procedure With a Lot of Parameters

I am using Sql Server 2008. My Stored Procedure accepts almost 150 parameters. Is there anything wrong with that performance-wise? …
0
votes
4answers
100 views

Sql Processing vs. ASP.NET Runtime processing

I know in general it is a good practice to move as much processing as possible from Sql Server to the application (in my case ASP.NET). However what if the processing on the application level means …
0
votes
2answers
21 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 qu …
2
votes
4answers
77 views

Sequential NEWID()

Hi, I am using sql server 2008. Is there a way to generate a unique sequential number? It should exhibit properties of NEWID() and an identity column, meaning that it is always unique but each subs …