Viewing 15 posts - 1,336 through 1,350 (of 3,008 total)
I would start by having development managers who have a high enough level of competence to be able evaluate the talent of the people they hire.
However the way the world...
July 1, 2010 at 10:10 pm
The only time I have seen this problem was in trying to delete a maintenance plan that was created before a server was renamed.
July 1, 2010 at 2:32 pm
You could just drop the primary key and add a new one. The disadvantage is that it will happen in a single transaction and the transaction log will get...
June 30, 2010 at 3:51 pm
What is the physical size of the table? Do you have enough free space in the database to create another copy of this table?
This script will tell you the...
June 30, 2010 at 3:20 pm
Access to SQL Server is via connection to the SQL Server service, not a network share.
When the machine that hosts the service is down or unreachable, then there is no...
June 30, 2010 at 1:48 pm
Lynn Pettis (6/29/2010)
June 30, 2010 at 7:59 am
Dan.Humphries (6/29/2010)
...I have never gotten the snarky type of responce that is so normally typical on other IT boards...
It's not all love and kisses around here; Check out the Bankers...
June 29, 2010 at 8:31 pm
Agile (6/28/2010)
June 29, 2010 at 8:07 pm
I was saying that it is not logged because it is not a database object in tempdb, not because it is not stored in tempdb. The following code shows...
June 29, 2010 at 4:20 pm
Better come up with a different plan.
I've never heard of such a tool, and I really, really, really doubt it exists.
June 29, 2010 at 3:41 pm
Table variables are not actually database objects, even in tempdb.
# or ## tables are actual tempdb objects, so they are logged.
June 29, 2010 at 3:26 pm
For moving databases from one server to another, the safe method is to use SQL backup and restore.
Doing the move using disk level copies is probably not a good idea,...
June 29, 2010 at 2:41 pm
If you want to partition, consider doing it by client. Try creating individual partitions for the large clients on Client ID and a catch-all for the smaller ones. ...
June 29, 2010 at 2:20 pm
Use the lookup tables to generate views in the current database that point to tables in the other database.
You only have to regenerate the views when the source datatabase or...
June 29, 2010 at 12:15 pm
Viewing 15 posts - 1,336 through 1,350 (of 3,008 total)