Forum Replies Created

Viewing 15 posts - 25,936 through 25,950 (of 26,487 total)

  • RE: Extract data from a string

    Or, if you know your data, you could build on this:

    declare @varTable table (

        TestData varchar(max)

        )

    insert into @varTable values ('Dtautas2/22/2007 5:22:32 PM: text')

    insert into @varTable values ('Dtautas2/22/2007 5:22:32 AM:...

  • RE: A transport-level error

    I have also experienced this on occasion where I work.  One of two things has occurred; first, the server running SQL Server has been rebooted; or second, we have had...

  • RE: Script Data Conversion

    My question is why?  SSIS has a data conversion task that you can use to complete the data conversions you require without writing any scripts.

  • RE: Restoring the system databases

    I am going out on a limb here, and say you probably need to rebuild the master database so you can start SQL and restore the backup of the most...

  • RE: I''m Not Wrong

  • RE: I''m Not Wrong

    Not sure, and don't really want to get into a religous data warehouse discussion, but I think you have the data warehouse approaches flipped.  Kimball talks about a Data Bus...

  • RE: Problem using Top for Cursor

    SQL Server 2000 does not allow you to use a variable in the top statement.  SQL Server 1005 changes that.  In SQL 2000, to be able to specify a different...

  • RE: Prevent Truncate, Delete and Update Statements

    There really is no protection from mistakes, only ways to slow you down when making them.  In SQL Server 2005 you can setup DDL Triggers that would prevent things like...

  • RE: Covered Indexes

    That helps.  It means that products like PeopleSoft aren't going to update their tools to take advantage of non standard enhancements like the INCLUDEd columns in indexes in SQL Server...

  • RE: update a date field / off of 90 day

    First, your UPDATE syntax is incorrect.  Second, if DUEDATE is a calculated field, it can't be updated, the fields that make up the calculated field needs to be updated.  If...

  • RE: ASCII to UNICODE

    Don't double the size of the field: MyCharField varchar(25) --> MyCharField nvarchar(50) NO.  It simply goes from MyCharField varchar(25) --> MyCharField nvarchar(25).  The change will double the amount of space...

  • RE: Data Type Storage Size

    What doesn't make sense?  Tell us what you think you understand (or don't) and then we can fill in the blanks and increase your understanding.

  • RE: Project Plan

    Matt, could you upload your project plan like they upload scripts to this site?

  • RE: Data Type Storage Size

    Books Online covers this fairly well.  That is where I would start reading.

  • RE: Basic Question about Data Warehouse{Data Mart}

    I will second Michael's comments.  If you bring in a consultant, be sure to work with him/her closely.  Don't let them go off and do their thing in a vacuum. ...

Viewing 15 posts - 25,936 through 25,950 (of 26,487 total)