Viewing 15 posts - 181 through 195 (of 294 total)
Select * From will do a full table scan, so indexes wont be used.
July 17, 2008 at 3:08 am
In data view click on the ... next to the Dataset name and on the fields tab add the fields manually. Fields will only be added automatically from non dynamic...
July 11, 2008 at 5:33 am
If you populate a temporary table with @BPCode then you can use where ShortName in (Select Shortname from #temptable)
June 27, 2008 at 7:49 am
If you run the command on its own through Management Studio what message do you get?
June 27, 2008 at 6:47 am
See http://www.sqlservercentral.com/scripts/Backup+%2f+Restore/30138/ this could be adapted
June 18, 2008 at 8:52 am
See http://www.sqlservercentral.com/scripts/Backup+%2f+Restore/30138/ this could be adapted
June 18, 2008 at 8:52 am
Right click on the properties of the event and look at history. Has the alert ever been triggered? The history will tell you. If it has fired the failure to...
June 13, 2008 at 3:11 am
Try a different alert, I'll be honest I have been lucky enough not to come across any deadlocks in SQL Server 2005 databases I've supported - things have been looking...
June 12, 2008 at 10:50 am
Check checking did you enable the profile you created as per the article? Did the alert fire into the event log? do any of the other events fire?
June 12, 2008 at 9:01 am
AndyD
Default fill factors at 0% is fine if you have high spec’d servers and small databases that are not heavily used. In these cases also 90% won’t make a great...
June 12, 2008 at 4:30 am
Sorted, bringing file into sql server as an image and extracting from here as a file.
June 10, 2008 at 8:40 am
Depends on how you did the migration, you may need to check for orphan users...
EXEC sp_change_users_login 'Report'
June 9, 2008 at 4:53 am
I'd try one of the log reader tools available, to read through your logs, you may be able to download the tool for a short trial, which might be enough...
May 27, 2008 at 3:42 am
Some ideas....
* A review of fill factors is a good one for the agenda.
* Profile for duration and review SQL and indexes on tables on the longest running procedures.
*...
May 15, 2008 at 3:31 am
Viewing 15 posts - 181 through 195 (of 294 total)