Forum Replies Created

Viewing 15 posts - 1,276 through 1,290 (of 1,409 total)

  • RE: email notification job

    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...

  • RE: how to set dynamic path statement in sql server 2000

    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...

  • RE: Renaming logical file names

    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...

  • RE: Regarding IIF fuction in reporting services.

    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

    ...

  • RE: Database mail question

    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.

  • RE: Bringind a database offline or single user mode runs for ever?

    Are all logins you see with sp_who2 your own? If not, other users are accessing the database. Kill those connections and try again.

  • RE: need help for unattended installation for MS SQL Server 2005 SP2

    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...

  • RE: Database Mail

    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.

  • RE: SQL Script consolidator

    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...

  • RE: how to set dynamic path statement in sql server 2000

    ananda.murugesan (10/12/2008)


    i want script itself how to attach at @messagefile backup report text file automatically from particular disk path,

    For example - @messagefile = N' C:\dbbackup\filename.txt', this file name has...

  • RE: Problems with dynamic string in Openquery

    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...

  • RE: Login failure

    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...

  • RE: Date comparision in SELECT query

    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...

  • RE: UNIQUE Constraint and Clustered Index

    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...

  • RE: Index Blocking Issue

    chad (10/1/2008)


    There are 3 non-clustered indexes on this table. One on the Date Entered column, another on a integer ID column, and the last on both the Date Entered...

Viewing 15 posts - 1,276 through 1,290 (of 1,409 total)