Forum Replies Created

Viewing 15 posts - 2,476 through 2,490 (of 2,904 total)

  • RE: DISTINCT question

    Here's an example:

    C1 C2 C3

    1 a hello

    1 b candy

    2 a car

    2 a ...

  • RE: Mixing NT security with SQL

    One other place you need to check. In Enterprise Manager, right click on your server. Select Properties. Go to the Security tab. What type of authentication does the Server permit?

    1st...

  • RE: Mixing NT security with SQL

    Use Enterprise Manager, drill down to Security, right click on Logins, select New Login. Fill out the information.

    On the General tab is where you set the LOGIN name, type of...

  • RE: DB Maintenance Plan not running

    Did anything change on the server? Did you change accounts/passwords for SA? How about for the SQL Server and Server Agent services?

    What login is the maintenance plan running under?

    -SQLBill

  • RE: SQL not starting

    Are they set to Automatically start? Or do you have to manually start them? (Right click on My Computer, select Manage, look for Services, find the MSSQLSERVER Service and the...

  • RE: Database log size a problem

    I created two log backup jobs. The first one of the day (4 hours after the Full Backup) runs using the WITH INIT command. That initializes (overwrites) the backup file....

  • RE: Date formats

    Use this in ALL your queries:

    SET DATEFORMAT dmy

    -SQLBill

  • RE: date selection

    Try something along this line:

    WHERE Due_Date > DATEADD(HOUR,0,DATEADD(DAY(DATEDIFF(DAY,0,GETDATE()),0))

    AND Due_Date < DATEADD(HOUR,0,DATEADD(DAY(DATEDIFF(DAY,-1,GETDATE()),0))

    -SQLBill

  • RE: Database log size a problem

    The transaction log is only important if you want to be able to do 'complete' restores or 'point-in-time' restores.

    First, you need to be doing regular backups. You should have at...

  • RE: LEN and DATALENGTH

    It relates to this topic...

    http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=16447&FORUM_ID=8&CAT_ID=1&Topic_Title=CREATE+RULE&Forum_Title=T%2DSQL

    Riga1966 just started a new thread instead of responding to the original one.

    -SQLBill

  • RE: QOD 22 Sep 2003 - Licensing

    You need to look at this Microsoft's way. Eventually your cluster will fail and the passive side (4 processor) will become the active side. This could happen just by rebooting...

  • RE: SqlServerCentral.com... The Book?

    quote:


    I tell you, it is not all the time funny to have someone like this around when it comes to writing.

  • RE: retreive data

    Something like this should work IF your data actually supports it (as Frank says, in your data 1 always equals 100, so based on what you say you want, nothing...

  • RE: SQL server running on Dell server

    First, I believe COMPAQ was bought out by HP so I'm not sure where their focus is these days.

    I run DELL PowerEdge 8450's and use SANs. My systems are up...

  • RE: Moving database file to different hard drive

    I didn't say anything about COPY DATABASE WIZARD as I have never used it.

    I think you misunderstood my comment about MOVE and COPY. You said you were going to COPY...

Viewing 15 posts - 2,476 through 2,490 (of 2,904 total)