Viewing 15 posts - 17,746 through 17,760 (of 22,214 total)
HVPR (4/9/2009)
and sorry for the posting twice...
But I want to know is there any local sql server feature or tool which can help to sync the
code between...
April 9, 2009 at 1:23 pm
It's really hard to say based on the information provided. Are you sure that the slow response on the system is due to this table in particular? If so, do...
April 9, 2009 at 12:40 pm
GilaMonster (4/9/2009)
For the records, I never beat Steve up. I was training with Kalen most of the class...
April 9, 2009 at 11:52 am
Steve Jones - Editor (4/9/2009)
FYI, I also pinged MS on our boasting user.
Just out of curiousity, where do you go to ping MS on something like that?
April 9, 2009 at 11:34 am
And having seen the Gilamonster in action, I'm glad this isn't possible!
Man, I'm sorry I missed that seminar. She made a real impression.
April 9, 2009 at 11:33 am
Andy Warren (4/9/2009)
April 9, 2009 at 6:50 am
I don't think so. Plus, I just wouldn't use @@IDENTITY. It's too prone to error. SCOPE_IDENTITY is much more consistent and I'm not aware of anyone having errors with it...
April 9, 2009 at 6:46 am
dastagirid (4/9/2009)
but what I need suppose I inserted 1 to 10 values in a table
and deleted 5 to 10 ..next i will insert record 11 is the id values..
I want...
April 9, 2009 at 6:04 am
You use a second instance in order to manage different security for a system, to isolate an application from others, to have a SQL Server with different configurations, but still...
April 9, 2009 at 5:58 am
During the insert you have a couple of options. You can use SCOPE_IDENTITY if you are inserting a single row at a time. You can use the OUTPUT clause if...
April 9, 2009 at 5:52 am
Clustering is a whole technology and no, to my knowledge, you can't cluster two instances on the same server. Clustering is a mechanism for having more than one server available...
April 9, 2009 at 5:44 am
There is no "best" tool, there's what works for you and your situation. I can make a few suggestions.
Start treating your database like code. Check all the scripts into source...
April 9, 2009 at 5:28 am
Thanks to an article published here a few months back, I read a book called Getting Things Done by David Allen. He's pretty ruthless with time management too. It's made...
April 9, 2009 at 5:22 am
Something like this will help get you going.
SELECT TOP (100)
a.CustCode
,a.COUNT(CustCode) CustCodeCount
FROM TableA a
GROUP BY a.CustCode
ORDER BY CustCodeCount DESC
I didn't use the other table becuase I don't see a need for...
April 8, 2009 at 11:48 am
Viewing 15 posts - 17,746 through 17,760 (of 22,214 total)