Forum Replies Created

Viewing 15 posts - 31 through 45 (of 52 total)

  • RE: Big SQL Server 2005 News

    The Current Server Time is: 10:17:58 AM.  There must be a relationship with Microsoft.  Always late releasing.

  • RE: Big SQL Server 2005 News

    Anytime....  I am waiting in suspense here.  I hope this is good news.

  • RE: line numbering

    I couldn't figure out a way to do this without an identity, but here are my results

    create table #t (ids int identity(1,1), value int)

    insert into #t

    select 1

    union all

    select 1

    union all

    select...

  • RE: Indexing Strategy with Replication

    One more question, are there different indexing strategies with Replication?  I have done replication long ago, and I don't remember needing to care about the indexing strategies. 

     

    Greg

  • RE: Indexing Strategy with Replication

    For Transactional Replication, does a Clustered Index need to be on a Unique Column or can I choose any column for the Clustered Index?  I am trying to find anything...

  • RE: getting column names for table using query

    Thanks Remi for your position criticism.  Kinda remind of Celko.

    First of all, you are correct with the temp table.  I use a similar method to auto create a table so...

  • RE: getting column names for table using query

    What about something like this?

    declare @STR varchar(2000)

    set @STR = ''

    select @STR = @STR + '''' + c.name + ''' as ' +...

  • RE: DATETIME TO VARCHAR

    You can also use the convert with a style.  If you want to store this as a YYYYMMDD, the column needs to be varchar.  This shows the type of column...

  • RE: Hyperthreading v''''s Multiple Processors

    My two cents.  Earlier in the thread I noticed that someone said something in regards to upgrading the server.  Make sure that your server can be expanded.  The L2 Cache...

  • RE: Dynamic Query

    One thing that can be done is a "SELECT... INTO..."  You would need to make sure that you dropped the table when finished as you cannot create a table with...

  • RE: Some strange lock

    I think I read that a little too quick.  I must have read that as 100%, 0 Sec. as 0% 100 Sec.  I know that the time MS produces is...

  • RE: Some strange lock

    It is Microsoft!  Can you ever rely on anything they produce that determines length of time?  I would say, NO.  You can't follow the seconds for the Kill.  Have you...

  • RE: Processes blocked by themselves

    I don't know your environment and haven't seen this before.  But here are my two cents.  If you run, check SYSPROCESSES for spid 60, do you see multiple rows returned. ...

  • RE: Some strange lock

    It is an exclusive (X) table (TAB) lock.  This means, that a transaction has occured; INSERT, UPDATE, DELETE on a table the the stored procedure is referencing.  If you run kill...

  • RE: Crazy query help

    You data probably has multiple rows that have the same counts of "OP."  change the "=" sign to "IN".

     

    Thanks

    Greg

Viewing 15 posts - 31 through 45 (of 52 total)