Viewing 15 posts - 76 through 90 (of 272 total)
SELECT Empid, Name, EmergContact,
ROW_NUMBER() OVER (PARTITION BY Empid order BY Name) [Number]
FROM table
October 17, 2011 at 2:36 pm
Seems like the biggest responses are generated from QOTD answers that are wrong.
A plot to increase activity on the site perhaps?? :hehe:
September 14, 2011 at 12:19 pm
The US auto industry is still based in Michigan, last I checked. I would think this would have a high priority for a fix.
In my experience, perception is weighted...
August 23, 2010 at 6:50 am
Thanks for that question. I have to go stick my brain in a bucket of ice now.
August 19, 2010 at 7:51 am
This sounds to me like what PaulB is describing. If there is a unique constraint on the table without an index, each insert has to read the table sequentially...
August 9, 2010 at 1:29 pm
The wizard loads up to 5 tables simultaneously, so as Steve describes, you will need to set it up manually, or modify the saved package created by the wizard to...
August 6, 2010 at 3:31 pm
My favorite one, but maybe that's because I'm the one that gets the 3:00am calls.
Very nice.
August 4, 2010 at 7:30 am
Yep. @@rowcount is a cruel mistress. I avoid her like a rash. 😀
August 3, 2010 at 10:30 am
If auto grow is not turned on, then you need to add space to the existing data file.
The easy way is turn auto grow on.
July 15, 2010 at 3:03 pm
SQL Server uses a role based security model. Your databases get created already without granting access to users on the server. You should set up database roles with...
July 6, 2010 at 11:08 am
This happens when an application is designed to be portable across a variety of database platforms. The theory is that all logic is kept at the application layer so...
June 30, 2010 at 1:42 pm
Viewing 15 posts - 76 through 90 (of 272 total)