Viewing 15 posts - 796 through 810 (of 2,387 total)
You need export data and import them into database with correct collation.
December 16, 2003 at 7:15 am
You may need to configure SQL Agent Proxy account that has permissios to run your batch job.
December 16, 2003 at 7:07 am
Look into "Log Shipping" and "Transactional Replication" in BOL. Both solution will allow you to refresh the changes only from your production database to the reporting database.
December 16, 2003 at 6:58 am
I don't see indexes rebuild before you perform business logic sp to generate summary data. You will perform table scan mostly since indexes have been dropped at step3.
December 16, 2003 at 6:53 am
What did you get after running the command? Look at both SQL Server errorlog and eventlogs to see what is the cause.
December 16, 2003 at 6:44 am
I don't know and I doubt the existence of such tools for SQL Server. I would like to know too.
December 15, 2003 at 2:35 pm
SELECT * from yourtable where DATEDIFF(day, yourdatetimecolum , getdate()) <= 365
December 15, 2003 at 2:23 pm
We have BMC Patrol but never heard it can report memory usage per database.
December 15, 2003 at 2:17 pm
Is this backup process created by maintenance wizard? If it was, go to server task manager, find the sqlmaint.exe and kill it.
December 15, 2003 at 12:05 pm
Could it be blocked? Run sp_who2 to verify that.
December 15, 2003 at 9:23 am
I would verify whether the performance decrease was caused by the backup.
You may consider to perform full database on weekly basis and do the differential backups for the rest days....
December 12, 2003 at 5:09 pm
http://support.microsoft.com/default.aspx?scid=kb;en-us;810885&Product=sql2k
http://support.microsoft.com/default.aspx?scid=kb;en-us;816840&Product=sql2k
http://support.microsoft.com/default.aspx?scid=kb;en-us;815056&Product=sql2k
http://support.microsoft.com/default.aspx?scid=kb;en-us;815436&Product=sql2k
Edited by - allen_cui on 12/12/2003 4:59:28 PM
December 12, 2003 at 4:55 pm
The web app will authenticat the user, pass the credentials through Basic authentication and users are not allowed anonymous access. We like to use one generic id to access database...
December 12, 2003 at 12:23 pm
823 Error messages usually imply on disk corruption most typically
arising from problems at a level below the operating system (e.g.
Hardware component failure, bad/outdated device driver, or external
failure such as an...
December 9, 2003 at 8:46 am
Viewing 15 posts - 796 through 810 (of 2,387 total)