Forum Replies Created

Viewing 15 posts - 151 through 165 (of 285 total)

  • RE: Need help moving a table to another filegroup

    EM is doing your legwork for you. by the time you create and debug a script to move the tables, you can have it done in EM. take...

  • RE: New To All of This

    You get what you payfor. MySQL is a great learning tool. Industrial strength solutions require industrial strength tools. You have to have things like backup, multiple queries,...

  • RE: pb on create table

    Timestamp is not really an indicator of time in SQL Server. If you want 2 datetime fields, use that instead.

    Timestamp is a database-wide unique number.

  • RE: seting value for 11 000 000 rows table

    The lesson here is that NULL and DEFAULT should be trigger that you have an invalid table definition. If you are supplying a default, then the column should be...

  • RE: Pending/Running Job Error

    Are you sure your 1st job is finished before you try to run it a second time? And make sure the job is enabled.

  • RE: Pass(concatentate) 2 variables as 1 parameter

    quote:


    Even then when a stored procedure is run you cannot concatenate two vairables to a single parameter. Even if both where 4000...

  • RE: Problems with selecting and updating tables

    You need to supply more detail about what's failing.

    In EM, you can get this if you are trying to update rows from a complex view that doesn't include a...

  • RE: This is a little tough, Hope some help is availabl

    SQL doesn't have "variable length rows" so you need to return something for each column. Use

    select ColumnA=isNull(columnA, '') and specify every column and an appropriate default value. If...

  • RE: Lower to Upper Case

    Antares solution will work. however, this function is better served by your client app that inserts the data. names are notoriously inconsistent in particular when you start with...

  • RE: SQL 2000

    The backup is always performed by the server itself. You can make a backup of the .ldf and .mdf files if you want a "sorta" backup from another machine.

    if...

  • RE: leading zero

    quote:


    Is there a way to automatically add/suppress leading zeros in a numeric column? Any help would be greatly appreciated. Thanks.


  • RE: Compare contents

    I'm even older so I use the windiff tool that comes with visual studio.

  • RE: SQL Server Data Base Properties

    quote:


    How can you interogate SQL Server Database properties (eg. size etc) from either VB (pro) or access or query.


    December 5, 2002 at 9:32 pm

    #443413

  • RE: Dynamic TSQL in trigger using values from inserted

    quote:


    How to build dynamic TSQL statement in an instead of trigger for inserting values from inserted to base table?


    December 5, 2002 at 9:28 pm

    #443412

  • RE: A better way of generating numbers than identity

    quote:


    What's the best way of generating the number in a primary key column besides identity column ?


    December 5, 2002 at 9:19 pm

    #443410

Viewing 15 posts - 151 through 165 (of 285 total)