Forum Replies Created

Viewing 15 posts - 13,396 through 13,410 (of 13,419 total)

  • RE: Stored Procedures dont come across in DTS

    If you are using the IMPORT or EXPORT functionality from Enterprise Manager,it might be because you are using the default options:

    If you used Right click>>All Tasks>>Import Data (or Export data)

    Then...

  • RE: How much memory does an empty table + index cost?

    Thanks for the reply Hans;

    This has been kinda educational for me.Here's what I had assumed:

    a database is open or closed depending on the autoclose option of the database....so on a...

  • RE: Using SQL Analyzer for mass update

    you just concatenate the fields with the hardcoded stuff;

     

    update tablename

    set email = fname + '.'+ lname + '@domain.com'

     

    here's a substring example in case you wanted first initial + lastname:

    update...

  • RE: Help Required with optimising Stored Proc

    I'm not sure if this will work, but what about this:

    --edited to add an inner join to get the staff id's  last tip

    CREATE PROCEDURE [dbo].[prc001GetTipOfTheDay]

     (@intStaffID int)

    AS

    Select Top 1...

  • RE: Difference between varchar and nVarChar

    Here's my answer ot the second half of your question:

    a text column is used when you have data that is going to be really big; a varchar has a max...

  • RE: copy blob (text field) data from one server to another

    I believe I picked this up as one of the scripts submitted to the site;

    there's an export and inport function below; i never tested this myself:

     

    --**************************************

    --    

    -- Name: Procedure to...

  • RE: How to TEST if statistics should be updated.

    I guess I should clarify; The Process in VB takes 30 seconds; the process runs hundreds/thousands of similar queries,one for each transaction it tries to post to the accounting tables,...

  • RE: How to TEST if statistics should be updated.

    unfortunately, the db is in another state, and administered by a dba there; I was trying to diagnose issues by remote;

    both Auto Update Statistics and Auto create Statistics are turned...

  • RE: Case Sensitive vs. Insensitive

    To expand on this issue I was hoping to read more specifics, and followed up on this myself:

    If I was creating a new database, what collation would I use to...

  • RE: Does Clustering add newid columns to all tables?

    I'm certainly no expert on the issue, but from what I gather, this program "clusters" two SQL servers, but they do not need to share the same storage location...it allows...

  • RE: SqlServerCentral.com... The Book?

    I received my book the same time that SQLBill did; thanks everyone.

    It's time to beat your own drum though... i noticed that on the site that covers books and reviews,...

  • RE: Identifying Duplicates (Not the usual)

    I think you'll have to use more than just the customers first and last names to cull duplications out.

    I would think that it would be very easy to have...

  • RE: Log Shipping Error

    You might want to check your backup strategy.

    I bet it started at 4am and your database was locked because of it.

    That might be the root cause of your failure.

    Lowell

  • RE: Rename SQL Server Instance?

    Thanks Allen That's good to know; maybe Brian Knight could update his article to mention something about how it is not possible to rename SQL server Instances;

    It would make...

  • RE: find a the date of birthday fix my code

    This does what you wanted; the select at the end shows how you can find the # days before /number of days until the users next birthday:

    CREATE VIEW UserBirthDay

    AS...

Viewing 15 posts - 13,396 through 13,410 (of 13,419 total)