Viewing 15 posts - 49,096 through 49,110 (of 49,571 total)
You can't do things like "WHERE txtField LIKE '%Smith%'" with a text column, for instance.
That's not true, you can use LIKE and IS NULL on a text column, you can't use any...
June 22, 2006 at 2:04 am
It's the winter solstice and shortest day down here. Sunrise was about half past 6 this morning and sunset will be around quarter to six this evening. (about, I'm not...
June 21, 2006 at 3:24 am
You don't need the brackets around the select. Also the Order By is not necessary in an insert. The concept of order of rows in a table is meaningless. Order the...
June 19, 2006 at 7:57 am
Isaac Asimov's robot stories, especially The Positronic Man (with Robert Silverberg). The book I, Robot is a collection of short stories
Also Arthur C Clark's Rama series and Songs...
June 19, 2006 at 7:55 am
Do you have an identity column, a time stamp column or a column that shows date entered (default getdate())? If not, there's no way to get the latest 3 rows....
June 19, 2006 at 6:27 am
Are you connecting to the same server and the same database? (it's caused me a red face from time to time before)
Is the query exactly the same, no additional clauses?
Are...
June 19, 2006 at 5:09 am
fyi, what you're trying to do does work in SQL 2005, with some minor mods. It's possible in 2005 to do the following
SELECT * FROM SomeTable S CROSS APPLY dbo.SomeFunction(S.aField)...
June 15, 2006 at 1:19 am
I'll second the suggestion 'go bash a developer across the head' (I'm a developer myself)
One thing I'd like to correct about your comments. The code inserting doesn't have to request...
June 15, 2006 at 1:01 am
No need for a having clause as far as I can see. Try this
SELECT
sales_person_id, COUNT(
June 14, 2006 at 1:24 am
I've done it for several exams. The amout of time per week is pretty dependent on how long you have before you plan to write the exam.
For my SQL...
June 12, 2006 at 5:25 am
If you have no better place to put it, then put it there.
Also note that the potential of hot spot has to be weighed against the probability of page...
June 8, 2006 at 11:45 pm
With large volumes, a cluster on an increasing column can create an insert hotspot, but the volumn really needs to be excessive (1000s of inserts/sec)
It's actually quite a good idea...
June 7, 2006 at 12:39 am
Is it possible that there's an insert into the transaction table from somewhere else, with identity_insert switched on?
It almost sounds like someone's inserting the 'next' transaction and manually assigning...
June 6, 2006 at 12:58 am
Yes.
Install 2005 and when you get to the screen to select what you want installed, just install the workstation components. Unselect the database engine and all the other stuff.
June 6, 2006 at 12:14 am
Unrelated to your question, but something you should know.
Inner Join PWIN171.dbo.FE AS FERaised
On LTrim(RTrim(Cast(tblHeaders.fldRaisedBy as char))) = LTrim(RTrim(FERaised.FE_CODE))
With the functions around the fields in the...
May 24, 2006 at 1:10 am
Viewing 15 posts - 49,096 through 49,110 (of 49,571 total)