Viewing 15 posts - 1,126 through 1,140 (of 1,248 total)
One possible approach, probably the only way, is:
Create a new column with a primary key (or with unique value);
Remove the duplicate rows (not include the column with the primary key)...
November 20, 2006 at 11:18 am
If you use SQL Server Profiler, do not forget to use filter. Otherwise, you may have troubles in performance.
November 20, 2006 at 9:29 am
Thank you so much for your input. I thought tempdb would be created always with the default size, 8 MB.
November 19, 2006 at 9:41 pm
They are not easy questions. Here are my inputs.
1. I think you have to create a new database. Then, export data. Otherwise, you have to merge the two file groups...
November 19, 2006 at 9:29 pm
Could you described what you found in more detail?
November 17, 2006 at 3:33 pm
Nice explanations.
November 17, 2006 at 8:56 am
You do not need to use the profiler. Using profiler is alway dangeous if you cannot narrow down your problems.
I would like to recommend you to create an error...
November 17, 2006 at 8:30 am
http://www.sql-server-performance.com
You will find even its structure is quite similar to this site.
November 17, 2006 at 8:26 am
An IO may not block a table. For example,
SELECT * FROM myTable WITH (NO_LOCK)
November 17, 2006 at 8:18 am
I thought the original question is for nested.
November 17, 2006 at 8:13 am
Your description is not clear enough. In order to determine which approach to use, we need to know what kind of data (partial or all) you would like to transfer.
For...
November 17, 2006 at 8:10 am
I think you can upgrade the version from standard to enterprise.
If you do install a clean enterprise version, then,
Backup all your databases;
Uninstall the standard version;
Install the enterprise...
November 17, 2006 at 8:07 am
I think you can upgrade the version from standard to enterprise.
If you do install a clean enterprise version, then,
Backup all your databases;
Uninstall the standard version;
Install the enterprise version;
Start...
November 17, 2006 at 8:00 am
Viewing 15 posts - 1,126 through 1,140 (of 1,248 total)