Viewing 11 posts - 271 through 281 (of 281 total)
I think that you need one more BEGIN - just after WHILE:
While (@i < @intRecurr)
BEGIN
Set @intFrequency = (@intFrequency * @i)
Set @dteMaintStartDate = DateAdd(Day, @intFrequency, @dteMaintStartDate)
Insert Into MaintenanceDetails (EquipID, ScheduleDate, MaintDescription)...
August 20, 2008 at 4:17 am
See BOL ---> UPDATE statement ---> Using the UPDATE statement with information from another table
August 20, 2008 at 4:01 am
I'm not sure if you use SQL 2000 or SQL 2005.
If you work with SQL 2005 you should explore the SSIS.
August 18, 2008 at 3:27 am
Also run DBCC UPDATEUSAGE - see BOL ---> Upgrading the Database Engine.
Check for bloking using the "activity monitor".
If your machine has several processors you may have trouble with the "max...
August 17, 2008 at 1:38 am
What do you mean by "doesn't seem to work"?
You can also try to install using the graphical interface - it is easier there to change the file locations.
August 15, 2008 at 3:16 pm
August 15, 2008 at 5:33 am
See http://www.microsoft.com/technet/prodtechnol/sql/2005/tsprfprb.mspx
Usually in such a case I use the "tuning" template provided by the profiler. I set up a "server-side" trace and run it during the working hours,...
August 15, 2008 at 2:48 am
I think that
http://www.sqlservercentral.com/articles/Administration/3243/
is helpful...
However you should take steps to minimize deadlock occurence - BOL ---> Minimizing Deadlocks may be a good starting point...
August 14, 2008 at 4:45 am
Check the stored proc's code for collation related issues.
August 14, 2008 at 4:00 am
BULK INSERT worked for me. My test file contains a single column - date values formatted like "01/08/08 03:10" (dd/mm/yy hh:mm) which I imported in a table with a smalldatetime...
August 14, 2008 at 3:07 am
Try the "Full-Text Search" chapter of the Books Online.
August 14, 2008 at 1:59 am
Viewing 11 posts - 271 through 281 (of 281 total)