Forum Replies Created

Viewing 15 posts - 511 through 525 (of 1,064 total)

  • RE: Business Rule Database Design Question

    Never rely on just an application to maintain the integrity of your database. Other applications (and DBAs!!) may also modify your data.

    If there's nothing in the database to enforce...

  • RE: Query Results values differing, don't know why!

    A row could be missing from query 1, if the same delegate_name is against more than 1 edrs_no, and the one assigned to row number 1 is not '120211637'

    Your sub...

  • RE: Fighting with differential backups...

    Why not backup to disk, and then copy from disk to tape?

  • RE: Publisher need to have same specs with subscriber?

    How good is the network between the subscriber and publisher?

    Transactional replication has to commit changes to the subscriber as a whole transaction (or multiple of transactions, depending on your setting...

  • RE: Cannot find file ID 2 on device '\\hqi\C$\REPORT\CVT_REPORT_backup_200908112100.bak'

    The FILE= option is only relevant when more than one backup is in a single backup file (i.e. backups are specified with NOINIT).

    If it isn't working with FILE=2, then that's...

  • RE: Shrink Table

    15.3GB reserved 15.8 Data

    That shows more Data than Reserved... have you run sp_spaceused @updateusage=true

  • RE: How do I disable SQL Logins in SQL SERVER 2000?

    If you mean that you only want to allow Windows Authentication, then in Enterprise Manager, right click the server and select properties, then look on the Security tab

  • RE: Publisher need to have same specs with subscriber?

    What else is the subscriber doing?

    I have seen this sort of thing before, where the subscriber was being used for reporting. The activity on the subscriber was blocking the replication...

  • RE: Net Send

    Again, as you have posted no schema details, I can only guess, rather than test a solution.

    The WHERE clause is in the wrong place. So you will probably want something...

  • RE: Net Send

    XP_cmdshell lives in the master database, so if you run this in the context of any other database, you have to specify

    exec master..xp_cmdshell .....

  • RE: Net Send

    As you didn't post any schema details, I couldn't test the first part of your script. The SET statements should be SELECT statements. Try this.

    DECLARE @CALL int

    SELECT @CALL = Call_Num...

  • RE: Simple date question

    I don't think there is an easy solution to this without formatting the dates to a known format.

    You may find a solution that appears to work, as SQL Server knows...

  • RE: Net Send

    I presume you are getting syntax errors on the xp_cmdshell line.

    Try this instead

    DECLARE @CALL int

    SET @CALL = Call_Num From Table_2

    DECLARE @PC nchar(10)

    SET @PC = Schedular_PC From Table_2

    DECLARE @cmd nvarchar(255)

    set...

  • RE: Simple date question

    As long as you know what format the dates you are receiving are in, then format them into YYYYMMDD format.

    That way, you shouldn't have a problem, regardless of the language...

  • RE: Issue while installing SQL 2005 SP3 on cluster

    I had a similar issue a few years ago when installing SP3 for SQL Server 2000. The installation failed on the passive node on a few occasions, saying it was...

Viewing 15 posts - 511 through 525 (of 1,064 total)