Viewing 15 posts - 2,686 through 2,700 (of 3,011 total)
I know it is not needed for the vast majority of cases. I am trying to decide if it would be useful enough to build into a general purpose procedure...
September 14, 2007 at 8:50 am
You may find this query useful for looking at index information:
use Northwind
select
[Table_Index] = left(rtrim(object_name(a.ID))+'.'+a.name,50),
a.indid,
b.index_property,
Value = isnull(indexproperty(a.id,a.name,b.index_property),-999),
...
August 31, 2007 at 1:59 pm
“…I wonder as the total number of rows grows is there a break even point where the lack of the Cartesian product of query 1 makes query 2 the...
August 30, 2007 at 9:17 am
If the table has an identity column that corresponds roughly to the age of the data, find the minimum ID, and the lowest ID you want to keep. Then...
August 30, 2007 at 8:52 am
Are you sure that you have no duplicates in these tables? If you do, you could end up with the mother of all cross joins using a join.
August 30, 2007 at 7:39 am
VERITAS (and other backup utilities) still do a SQL Server backup “under the covers” with the backup output streamed to tape.
August 29, 2007 at 5:00 pm
I don’t see any point to the idea of ENUMS; basically, it solves a problem that doesn’t exist.
There is nothing wrong with any of the techniques in...
August 28, 2007 at 2:15 pm
Change the users default database to master.
I always make master the default database for all users.
August 23, 2007 at 3:27 pm
Your servers probably have different national language setting. Probably one is US English and the other is British English. You can look at the value of @@language.
August 23, 2007 at 9:59 am
The windows group does not need to be the database owner, it just needs to be in the db_owner role.
The best this is to make sa the owner of the...
August 21, 2007 at 2:57 pm
You can use the date table function on this link to load a date table, or you can use it directly in your query.
Date Table Function F_TABLE_DATE:
August 21, 2007 at 2:42 pm
Maybe they just wanted to know how good you are at making up BS when someone asks you a really stupid question. Probably a good skill for a salesman to...
August 20, 2007 at 11:46 am
I have never seen a backup to a compressed folder take less time than a backup to an uncompressed folder.
If you read the OPs link, that it what it is...
August 20, 2007 at 9:49 am
This is fairly normal behavior, since it requires the system to compress the file on the fly. You may be able to get it to run faster by backing...
August 20, 2007 at 9:06 am
If you mean, should a table always have a primary key, then the answer is yes.
A table must have a primary key to be in first normal form.
August 17, 2007 at 2:16 pm
Viewing 15 posts - 2,686 through 2,700 (of 3,011 total)