Forum Replies Created

Viewing 15 posts - 2,266 through 2,280 (of 2,494 total)

  • RE: do bak up transaction logs append to or create a separate log?

    Each transaction log backup contains only the log information that was created following the previous transaction log backup.  Transaction log backups are only valid when the database is in Full...

  • RE: DB2 data types to SQL server

    1) Cross-check field sizes.  In particular Integer can mean 2-byte or 4-byte in different systems.  Most Cobol and DB2 data types map well to SQL data types apart from date...

  • RE: BriefCase Scripts export

    If you are using EM, the default path for saving script files is the 'My Documents' path.  You can change this to some other value by right-clicking the My Documents icon...

  • RE: Mirror for disaster recovery

    Don't forget to think outside the (SQL) box.

    Many sites use a disk replication product such as Double-Take or SAN replication to copy their SQL data to another site.  In this scenario...

  • RE: Retrieving Date Formats

    You can use Cast or Convert to specify a given date format.  If you want to do anything more then Convert gives you, then do it in .Net code.  It...

  • RE: Huge datafile vs. perfomance

    Beware of allocating multiple files to the same filegroup if they will be on the same disks, especially if you are already having I-O problems.  Wintel servers often have limited...

  • RE: How to Restore POS System to SqlServer 2000

    This needs to be driven by the business.  If there are no formal SLAs agreed, then this must be the first step.  When you have a written and signed-off document...

  • RE: These guys must have some database!

    Big is as big does.  Back in 2000 I was involved in some work for the UK Land Registry.  Back then their main system was growing at about 10 GB...

  • RE: Pros and Cons

    I have no issues with the concept of consolidating multiple production instances on to fewer servers. Likewise multiple test instances could be consolidated to few (non-production!) servers.  If you look...

  • RE: Shrink TempDB Error

    The best advice is: stop shrinking tempdb!!

    You should plan to have a Tempdb that is large enough for your workload.  If it needs 20GB then plan for 20GB.  On our...

  • RE: install microsoft ole db provider for olap services 8.0 on approx 1000 pc''''s

    Talk to your System Admin people.  It is likely they will have a preferred method of deployment so they can support the boxes.  If you add software outside of the...

  • RE: Should we change collations ???

    I know that with some operating systems, if you store data using a different collation from wher it is processed or displayed, this forces a collation conversion process.  Even where source...

  • RE: Your Right To Be An Idiot

    "Freedom of speech is important because it allows you to easily see who are your enemies.  If a state prevents freedom of speech it cannot see who are its enemies,...

  • RE: NT4 and Sql 7

    You can do this easily in Enterprise Manager.  Open the dialogue to cerate a new login, and type BUILTIN\ADMINISTRATOR for the user name.

  • RE: Auto Generate a table with 1000,000 unique strings

    If you are using SQL 2005 you can use recursive SQL to generate your data.

    The 'DB2 SQL Cookbook' has some interesting examples of this that would work OK in SQL...

Viewing 15 posts - 2,266 through 2,280 (of 2,494 total)