Viewing 15 posts - 106 through 120 (of 243 total)
Thanks, Jeff, for enlightening us. I do not know if I will encounter in a lifetime any of the issues you encounter every working day; your experience is of VLDB...
March 11, 2008 at 6:22 am
Why don't you make the field a PRIMARY KEY or set it as UNIQUE? Then SQLServer will validate automatically and reject a new insertion if its exists.
March 11, 2008 at 1:20 am
[Quote]I have 4 tables. Table1 contains user information, Table2 contains actual orders, Table3 contains future orders and Table4 contains all invoices that the user has accumulated. Table 2, Table3...
March 8, 2008 at 12:57 am
I am sorry, I should have indicated SUM instead of COUNT.
March 7, 2008 at 11:14 pm
Use this:
[Code]SELECT COUNT(MyColumn) AS PosTotal FROM MyTable WHERE MyColumn >0 UNION ALL
SELECT COUNT(MyColumn) AS NegsTotal FROM MyTable WHERE MyColumn <0[/Code]
March 7, 2008 at 2:16 am
Thanks, will give it a shot.
March 4, 2008 at 8:01 am
Thanks, I am really grateful. I'd also appreciate some sample code for cross-platform triggers between MySQL and SQLServer2000.
March 4, 2008 at 1:59 am
I read about linked servers all the time here but have never qi\uite understood them, any primers out there?
March 3, 2008 at 8:34 am
In our culture, we have an opposite viewpoint which says that "A mountain is just sand if you get close enough!".
February 20, 2008 at 6:42 am
Thank you, Clifford, for your valuable contri. I just hope there are no malpractice lawyers snooping these forums to come after my employer using this post.
Your views are very valid,...
February 20, 2008 at 5:13 am
[Quote]RowID BeginDate EndDate Price ($)
1 01/01/2008 ...
February 20, 2008 at 1:08 am
The problem with SELECT DISTINCT is that it returns a distinct combination of all selected columns, so if you are just looking to return distinct based on the first column,...
February 20, 2008 at 12:37 am
Steve, thanks for shedding light. I had almost despaired.
Ours are small business apps where the client can give assorted rights (any combination) to their staff. We handle it on the...
February 19, 2008 at 1:57 am
Your problem is purely one of presentation. You may be able to use a cursor to build a single-string result-set, but then Jeff Moden will not be very pleased. What...
January 16, 2008 at 6:37 am
Viewing 15 posts - 106 through 120 (of 243 total)