Viewing 15 posts - 1,276 through 1,290 (of 1,409 total)
by reading the error message it looks like the "SQL Agent" service is not running. If it is running, then probably the account used for the SQL Agent has not...
October 14, 2008 at 1:12 am
You forgot to add the time to the filename. The CONVERT(VarChar(20),GetDate(),112) give you a date in notation in format yyyymmdd. You have to add the time to this part to...
October 14, 2008 at 12:57 am
From BOL (under ALTER DATABASE):
Moving a file to a new location
The following example moves the Test1dat2 file to a new directory.
Note:
You must physically move the file to...
October 13, 2008 at 11:48 am
IIF is a function available in Microsoft Access database and not in a SQL database. You have to use CASE instead.
Sample from BOL:
SELECT ShipVia, CASE ShipVia
...
October 13, 2008 at 6:48 am
For my knowledge it is possible for Database Mail to recieve e-mail. You have to re-route the mail address from Database Mail to your own.
October 13, 2008 at 6:38 am
Are all logins you see with sp_who2 your own? If not, other users are accessing the database. Kill those connections and try again.
October 13, 2008 at 6:24 am
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
Viewing 15 posts - 1,276 through 1,290 (of 1,409 total)