Forum Replies Created

Viewing 15 posts - 61 through 75 (of 83 total)

  • RE: Unique Records for different Thread

    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.

  • RE: Interviews Part 2

    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...

  • RE: Return of the users from hell!

    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...

  • RE: Determining the initial size of TempDB?

    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...

  • RE: Table saved as XML data file

    SELECT name,number,detail from mytable for XML AUTO

    This will produce an XML fragment for the data but not the root node.

  • RE: SELECT From UNION possible?

    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.

  • RE: SELECT From UNION possible?

    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...

  • RE: SELECT From UNION possible?

    SELECT DT.* FROM

    (

    Your union query

    ) AS DT

    Giving an alias to the union query will work

  • RE: not using index

    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...

  • RE: Uniqueidentifier vs int

    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,...

  • RE: ALTER Table

    ALTER TABLE dbo.xTable ADD CONSTRAINT

    DF_name DEFAULT 'Yourvalue' FOR YourTable

    GO

  • RE: Uniqueidentifier vs int

    Yes, it would affect writes as data in clustered indices is is order.

  • RE: Problem with Index speed when moving records

    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...

  • RE: Uniqueidentifier vs int

    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,...

  • RE: Validating Unicode Data in StoredProcedure

    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...

Viewing 15 posts - 61 through 75 (of 83 total)