Viewing 15 posts - 1,291 through 1,305 (of 1,417 total)
Try and 'SLIPSTREAM' the SP2 installation file on to the SQL installation files. This will create new installation files for SQL with SP2 included.
There are many websites providing a step-by-step...
October 13, 2008 at 6:10 am
When you create and send a test-mail, do you recieve this mail?
Try following the steps provided in the topic "Troubleshoot Database Mail" in BOL.
October 13, 2008 at 5:57 am
This code is a VB Script file that will read a folder and add the text of each file to a new (combined) file. The combined file can be executed...
October 13, 2008 at 5:47 am
ananda.murugesan (10/12/2008)
For example - @messagefile = N' C:\dbbackup\filename.txt', this file name has...
October 13, 2008 at 5:32 am
Try changing the notation of the date.
Instead of
CAST('Oct 8 2008 12:01PM' AS DATETIME)
use CAST('20081008 12:01PM' AS DATETIME)
You should also check if the local settings of the machine are...
October 9, 2008 at 3:40 am
After closing all applications, you have to look for running processes. It sure looks like you have an application running on the background (or hidden). If the failing logins also...
October 8, 2008 at 11:24 pm
Try removing the dashes from the value in variable @WeekEnding:
Set @WeekEnding = '20080101'
This is the general notation of dates as a string that will convert to correct datetime values.
And what...
October 8, 2008 at 7:52 am
Keep in mind that if the table has a clustered index, the column or columns defined in the clustered index are automatically appended to the end of each nonclustered index...
October 8, 2008 at 7:45 am
chad (10/1/2008)
October 8, 2008 at 6:59 am
If you need to update existing records and insert new records you need to program a kind of MERGE command. Several samples can be found on this site.
Here's a very...
October 8, 2008 at 1:06 am
dcarpenter (10/7/2008)
select u.username +' '+u.surname,sum(total_boarded), sum(placementfee), count(p.placementid) from targets tjoin users u on u.userid = t.userid
left join placementconsultants pc on pc.userid = u.userid
join placements p on p.placementid = pc.placementid
group by...
October 7, 2008 at 5:58 am
jpim3nt3l (10/7/2008)
2. What's the best delimiter to use when exporting data?
3. What's the best way to...
October 7, 2008 at 5:55 am
Storing photo's in your database will certainly increase the database size. This will have impact on your backups and recovery. But this option will give you enhancements about integrity, because...
October 7, 2008 at 5:43 am
If the login is originated from your computer and the error is captured every 5 minutes, it could be a scheduled task.
Else I suggest to look with task-manager on your...
October 6, 2008 at 6:52 am
sudhakara (10/6/2008)
...occurred while creating or opening file 'D:\Master_Files\Model_Data'...
Looks like the SQL Engine tries to open the file 'D:\Master_Files\Model_Data', but it doesn't exist. Copy your msdb.mdf file to this location (and...
October 6, 2008 at 6:44 am
Viewing 15 posts - 1,291 through 1,305 (of 1,417 total)