Forum Replies Created

Viewing 15 posts - 361 through 375 (of 484 total)

  • RE: Creating Instance

    All you need to do is run the setup program for SQL Server.  On the options dialog, it will ask if you want to install a default instance (this will...

  • RE: Transfer AS400-->SQL Server with dynamic table names

    Glad I could help.

  • RE: Transaction log backup trick

    Nice one, Shane.  I had not heard of those tokens before, and had always written code to get those values (like time stamping a backup file).  Just goes to show...

  • RE: tsql

    As you are new to this, here is a tip that may help you.  Take a look at how to debug stored procedures using Query Analyzer.  Write and create the...

  • RE: tsql

    You likely would be better off writing the stored procedure to accept the two parameters, and having the sproc to create each record.  Use a For statement and loop txtNumberPayments...

  • RE: Transaction log backup trick

    A little more direct than using the full maintenance plan wizard is to use the sqlmaint utility.  Check the paramaters in BOL.  You can specify all you need, without having...

  • RE: Transfer AS400-->SQL Server with dynamic table names

    It would be much easier not using DTS at all.  First setup the AS/400 as a linked server.  Then write a stored procedure that reads your log able and, in...

  • RE: How to defult date column to null?

    I think you're problem is trying to store a null in a Session variable.  That cannot be done.  You must have some code elsewhere that sets the dataset column value...

  • RE: Best Backup Strategy

    I would recommend using the either the maintenance plan or sqlmaint program, so that you easily have named backups with date/time embedded.  Do a full backup once a day, as...

  • RE: How to defult date column to null?

    It sounds like in your web application, you are using ADO recordset to add/update records, and you are putting a value of 0 (zero) in the data field.  Try to...

  • RE: Installation problem with MSDE 2000 sp3a

    By default, MSDE SP3 will not install any network protocols (TCP, named pipes, etc).  You will always be able to connect on the same machine using Shared memory protocol.  If no...

  • RE: DTS from code

    I know that the quickest way to refresh these table would be to use DTS.

    I would disagree with that.  The quickest way, especially from code, would be to use...

  • RE: Two Servers on one instance !! - how can I remove one of them

    Use the Client Network utility.

  • RE: SQL Server on Linux

    Ahh, cat's out of the bag, too early.

  • RE: Two Servers on one instance !! - how can I remove one of them

    You might have two instances of SQL Server on your machine (which is legitimate, SQL Server Std/Personal/MSDE allow up to 16 instances).  Or you might have one instance and registered...

Viewing 15 posts - 361 through 375 (of 484 total)