Forum Replies Created

Viewing 15 posts - 811 through 825 (of 1,409 total)

  • RE: Backup jobs (FULL or DIFFs) bring the Cluster down

    Hi,

    What happens if you copy a large file to the backup location? Will this also bring the SAN disk down? If so, it looks like the problem is caused by...

  • RE: How to restrict insertion depends on condition?

    First: define the smallest datatype possible for all of your columns. So you probably should change the ID to an INT datatype and the Lodging, FoodBill and DailyAllowance to a...

  • RE: Disable/Enable Account

    Yes, it's possible. You have to use dynamic SQL to accomplish it. Below I quickly created a small stored procedure that does the trick. I didn't include any error handling,...

  • RE: cluster partially online

    I'm not sure, but it looks like the storage for the third party backup application (Tridion) is offline. Determine the storage box/path used by this resource and see what problems...

  • RE: ip address of sql server

    Unless you have installed SQL on a cluster, you can't assign an IP-address to the SQL instance. The SQL instance will use the IP-address of the host server / pc.

  • RE: Update table values if corresponding values change in another table

    There is no need for a trigger or something else. This is the key to a relational database design.

    The value (of VENDOR_NAME) is stated on one position and is displayed...

  • RE: Log LDF file

    Yes, recover lost data from a backup is the reason why you take backup.

    Restore the last FULL and last DIFF (if applicable) backup with the NORECOVERY option to an alternate...

  • RE: Differential Backup Failed

    Can you pin point the error to a specific database?

    Can you manually perform a FULL and DIFF back-up on that database?

  • RE: Database Properties Data and Log initial and Auto growth help!!!!

    The most common setting is to set the growth to unrestricted. But you must keep monitoring the available disksize and the size of the database.

    In our environment we had some...

  • RE: Differential Backup Failed

    Run below code to see which databases does and does not have a full backup. Check the date to see if the last full backup is recent enough.

    select db.name, database_id,...

  • RE: running command line in DTS package

    First: I am using SQL 2008 and not SQL 2000, so maybe it's not representative.

    Do determine if the combination of the executable and the arguments field work correctly, I have...

  • RE: running command line in DTS package

    jamie.lawrence (8/16/2013)


    i see my error. i have entered the correct path of the exe but when i execute the process all that happend is that the exe opens. it seems...

  • RE: running command line in DTS package

    Will it succeed if you enter the drive, path and executable as a single line (i.e. "C:\Program Files\HSCIC\#grouperFolderName#\HRGGrouper.exe") in the executable field and the rest in the arguments field?

  • RE: how to take script for database table data

    Long time ago I found this script on the internet. I don't know where, so I can't give credit to the creator. This script has served me well in creating...

  • RE: Any chance to change authentication mode via registry

    You probably can, but why would you? Don't you have access to the instance?

    If you script changing the authentication mode within SSMS you see the "xp_instance_regwrite" is called. So the...

Viewing 15 posts - 811 through 825 (of 1,409 total)