Viewing 15 posts - 61 through 75 (of 83 total)
In the bit that reads the 10 records try using the READPAST query hint.
This should skip passed the rows being locked by the other thread.
September 19, 2005 at 3:13 am
My boss showed me some questions that they used when they were recruiting for my position.
Aparently they had a lot of candidates that didn't know the difference between a unique...
September 19, 2005 at 2:03 am
Lee, if you are going to go into Greek Mythology then we could bring in the Harpies.
Just as you are about to go home for you meal some shrieking bird...
September 16, 2005 at 9:08 am
Nope, it doesn't inherit its size from MODEL.
Its default initial size is 8MB where as MODEL is 2MB.
If I do the following
1. Restart SQL Server
2. ALTER DATABASE TempdB MODIFY FILE...
September 14, 2005 at 6:45 am
SELECT name,number,detail from mytable for XML AUTO
This will produce an XML fragment for the data but not the root node.
September 14, 2005 at 1:22 am
Sad though it may be I wanted SSC e-mails to go to my home e-mail address as well as my work address, hence two registrations.
September 9, 2005 at 8:11 am
We are one and the same, I've just changed my job.
Really old time member!!!!!!!! OK I have colleagues who are younger than my album collection but I'm not THAT...
September 9, 2005 at 7:52 am
SELECT DT.* FROM
(
Your union query
) AS DT
Giving an alias to the union query will work
September 9, 2005 at 2:03 am
If you query on a foreign key and there is no index then you will probably get a Clustered Index Scan.
The question I have is, let us suppose that you...
September 7, 2005 at 2:35 am
The big benefit of UniqueIdentifiers is that they ARE unique, which is why they are used in Merge Replication.
I have used them where I have an upside down data structure,...
September 6, 2005 at 2:03 am
ALTER TABLE dbo.xTable ADD CONSTRAINT
DF_name DEFAULT 'Yourvalue' FOR YourTable
GO
September 5, 2005 at 8:52 am
Yes, it would affect writes as data in clustered indices is is order.
September 5, 2005 at 2:11 am
Does your TEMPDB or your database grow when you Insert into your archive table?
I have had problems where a database decided to increase the size of my MDF file in...
September 5, 2005 at 1:44 am
UniqueIdentifiers are not sequential therefore you may run into some performance issues if your primary key is clustered.
I agree with your using something other than UserName as the primary key,...
September 5, 2005 at 1:38 am
I'm not sure what you mean.
If you mean that you have to check the input against a string containing characters that only a person who can enter Chinese/Korean could set...
September 1, 2005 at 1:50 am
Viewing 15 posts - 61 through 75 (of 83 total)