Viewing 15 posts - 826 through 840 (of 1,109 total)
Hi Greg,
1: You can only partition by a single column, and you cannot have subpartitions
2: indexes can be tpartitioned in different ways. You can align them with your table, but...
October 4, 2007 at 8:57 am
If you are connecting to 2000, and the database you are trying to connect to is online, as mentioned you will not be able to access the mdf file.
In the...
October 3, 2007 at 7:28 am
Two solutions come to my mind:
in one you would use a helper table to keep track of the existing empid, StateNo, CityNo, CallType combinations, with an identity column for...
October 3, 2007 at 7:08 am
You cannot connect to the server this way. The mdf file is locked explicitly by the SQL Server.
When you connect to the database, specify the server name, log on...
October 3, 2007 at 5:23 am
Hi Luis,
it is not an easy task to do, but possible. The question is more along the lines "is it really worth?". It took me over 9 months for...
October 3, 2007 at 1:59 am
Pivots perform a group by, so they must use an aggregate. If the data is the same though, or there is only one item, using max or min solves the...
October 2, 2007 at 4:57 am
Is this a Microsoft SQL Server database? SQL Server does not support database encryption, so are you using a third party tool? If so, what is this tool?
Enc extensions are...
October 2, 2007 at 4:44 am
The documentation that comes with SQL Server (Books Online, or BOL) is an excellent resource for learning about indexes. Its contents are also available on the web. For indexes a...
October 2, 2007 at 4:38 am
Unfortunately SQL Server does not ignore errors in insert statements, and you cannot really force it to do so. At the end of the day it is a transaction, and...
October 2, 2007 at 2:29 am
Hi Andri,
have you tried updating your statistics?
exec sp_updatestats
(this will run UPDATE STATISTICS for all the system and user tables)
You have rebuilt the nonclustered indexes, but just in case run DBCC...
October 2, 2007 at 1:56 am
FerasGer83 (10/1/2007)
what i got is that the downside of FULL Backup is the time it consumes from the server, so that we can't take a FULL backup...
October 2, 2007 at 1:43 am
winnri (10/1/2007)
October 1, 2007 at 8:44 am
The size of the decimals will be in both cases 5 bytes (because the precision is between 1 and 9), so the total is 25. I.e. your row will take...
October 1, 2007 at 8:29 am
I assume you are trying to migrate your 80 databases? When you say you cannot restore them, do you mean you are getting an error message? If so, what is...
October 1, 2007 at 8:21 am
Christopher Joel Diaz (10/1/2007)
In SQL 2005 there's a new function ROW_NUMBER() is there something equivalent in SQL 2000?Thanks
Chris
You could use a temporary table with identity:
SELECT IDENTITY( INT, 1,1...
October 1, 2007 at 8:04 am
Viewing 15 posts - 826 through 840 (of 1,109 total)