Viewing 15 posts - 31 through 45 (of 52 total)
The Current Server Time is: 10:17:58 AM. There must be a relationship with Microsoft. Always late releasing.
September 14, 2005 at 10:30 am
Anytime.... I am waiting in suspense here. I hope this is good news.
September 14, 2005 at 10:18 am
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...
June 23, 2005 at 10:08 am
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
June 22, 2005 at 9:01 am
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...
June 22, 2005 at 8:54 am
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...
June 16, 2005 at 10:28 am
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...
June 9, 2005 at 9:52 am
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...
June 6, 2005 at 9:49 am
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...
June 6, 2005 at 9:03 am
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...
June 2, 2005 at 3:32 pm
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...
June 2, 2005 at 3:15 pm
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. ...
June 2, 2005 at 2:42 pm
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...
June 2, 2005 at 2:36 pm
You data probably has multiple rows that have the same counts of "OP." change the "=" sign to "IN".
Thanks
Greg
May 24, 2005 at 11:37 am
Viewing 15 posts - 31 through 45 (of 52 total)