Viewing 15 posts - 5,926 through 5,940 (of 6,678 total)
Ryan Duckworth (11/25/2008)
The restore is actually done on a local drive.
The production server runs the backup and saves the backup file on the development server.
This...
November 25, 2008 at 10:28 pm
One option you have without having to upgrade the hardware would be to restore from a local drive instead of across the network. My guess is that your network...
November 25, 2008 at 2:48 pm
Well, first - your understanding is incorrect. Object are not created under the 'dbo' schema by default. Objects are going to be created (by default) in the users...
November 25, 2008 at 2:43 pm
To add to what Lynn has stated - I will say that you need to look in Books Online for the subjects: CTE (Common Table Expression), Derived Tables and CASE....
November 24, 2008 at 8:19 pm
SQL Server 2005 now has an option to verify that user passwords pass the policy settings for the system. My guess is that most of the passwords for the...
November 24, 2008 at 7:51 pm
The problem you ran into has nothing to do with views or the use of views. The problem has to do with your understanding of how outer joins work.
In...
November 24, 2008 at 7:30 pm
The recommendation should be to NOT shrink your data or log files on a regular basis as normal daily/weekly/monthly operations.
If you have an unusual event where either the data or...
November 24, 2008 at 5:28 pm
Yes - that sounds right. I would verify whether or not I actually needed the ltrim - which you can do easily enough with a like statement checking for...
November 18, 2008 at 3:06 pm
In SQL Server 2005 and greater, there is a default trace that is enabled. You can search the default trace for the creation, alter or deletion of an object.
The...
November 17, 2008 at 9:52 am
Are you sure that you need to upper case the username? This would only be required if the collation on the column or database is case sensitive. I...
November 17, 2008 at 9:37 am
You also need to verify that your client tools have been upgraded to the same version. If your client tools are not upgraded - you will see some issues...
November 14, 2008 at 12:17 pm
craig (11/13/2008)
November 13, 2008 at 5:33 pm
You really shouldn't rely on auto grow to manage your database. The auto grow process is very expensive and can cause response time issues as the system waits for...
November 13, 2008 at 1:43 pm
To answer your first question, you would JOIN the tables in your select query. By joining the tables, you now have access to all columns from both tables. ...
November 12, 2008 at 11:32 am
No problem - if you look at my query, you will see that I forgot to include the index name (oops).
The modified query is:
EXEC sp_msforeachdb 'Use ?;
INSERT INTO #Frag (
DBName,
TableName,
SchemaName,
IndexName,
AvgFragment
)
Select...
November 10, 2008 at 2:35 pm
Viewing 15 posts - 5,926 through 5,940 (of 6,678 total)