Forum Replies Created

Viewing 15 posts - 781 through 795 (of 1,315 total)

  • RE: SSIS Questions.

    Before the data flow step you can add an Execute SQL step with a DELETE or TRUNCATE TABLE command.

    I'm not sure how you could define an identity column with the...

  • RE: Moving System Log files

    There's not necessarily a one-size-fits-all answer, but I'll try to make some intelligent suggestions for a three-disk server.

    Moving the transaction logs for the system databases to the log drive is...

  • RE: SQL2000 to 2005 Log Shipping

    I don't know where this is explicitly stated in the documentation, but I am almost positive the answer is that it can't be done.

    A SQL 2000 database backup can be...

  • RE: select query- invalid characters

    Here are some suggestions.

    1. Use the ISNUMERIC function to check the addressno column.

    SELECT

    addressno, addressstreet, addresscity,...

  • RE: SQL Server Architecture Design in Fuel Stations.

    Differential backups are backups of every page in the database that has changed since the last full backup.  If you do a full backup on Sunday and a nightly differential...

  • RE: Flat file import

    A default value will be used in a non-null column if you run an insert that does not include that column.  If you run an insert that is trying to...

  • RE: Different results between access and Sql

    The float data type is good for about 15 digits, I doubt very much that there is any chance that some difference out in digit 16 or 17 would produce...

  • RE: Optimal tempdb file location

    The performance of your server will be greatly affected by the performance of tempdb, so putting it on separate drives (and a separate controller if you have the luxury) is...

  • RE: GUID Vs Identity

    I agree with James.  You're proposing that every client suffer a performance hit every day, for ever, just because one merger was a pain.  The extra twelve bytes doesn't sound...

  • RE: using a variable to specify the destination database files in the transfer database task editor

    Your single quotes don't match, and I'm not sure whether single quotes would work anyway.

    You need to use double quotes.  To use them in an expression you must escape them...

  • RE: VARCHAR(1000) vs. VARCHAR(MAX)

    There are a lot of good reasons for declaring fields to match the business need.  Allowing fields to store 2^31 bytes just to avoid worry about overflow is being lazy. ...

  • RE: Need to enable Ad Hoc Distributed Queries option

    Is there some good reason for not using the Surface Area Configuration tool? 

    It looks like your sp_configure should work, I tried "sp_configure 'Ad Hoc...

  • RE: Do Developers Need Management Studio?

    The access for the developers is controlled by SQL permissions, which the DBAs should have control of unless the developers can use a domain login or sa password to cheat. ...

  • RE: User Sids

    Here is a conversion in T-SQL you could turn into a function.  I'm not sure how you would do it in DTS with ActiveX without the bigint and varbinary data...

  • RE: When is updated trigger executed?

    I haven't tested this approach, but it might work.  Is the DueDate field meaningful when the status is still "Started"?  If not, you can use a view to show the...

Viewing 15 posts - 781 through 795 (of 1,315 total)