Viewing 14 posts - 91 through 104 (of 104 total)
Actually, the size of the database has little impact on the size of the log - there are rules in the SQL Server Resource Guide, but they must be treated...
June 12, 2002 at 5:28 pm
Wouldn't using merge replication require a lot of coding to resolve conflicts, or are you assuming that either A OR B are live at any moment, but never both receiving...
June 12, 2002 at 10:07 am
I'm sure people will have done it, but the maintenance of it is a nightmare. Try looking at http://www.incepto.com, their product SQLup is going to be reviewed...
June 12, 2002 at 8:59 am
Hi there
Get hold of "Advanced Transact-SQL for SQL Server 2000" by Itzik Ben-Gan and Tom Moreau, published by apress (www.apress.com).
ISBN is 1-893115-82-8
Chapter 16 is all about Expanding Hierarchies which is...
June 12, 2002 at 8:58 am
This may be a silly question, but can't you add another column which is an integer IDENTITY? Then use that?
Could you also use a correlated subquery in your view...
June 11, 2002 at 11:58 am
Yes, you cannot GROUP BY a derived date format. I believe that I got round this once by deriving the date in a separate table then JOINing that back...
June 11, 2002 at 10:31 am
INSERT TempRX_NDC(rx_NDC,rx_strength)
SELECT RX_NDC, Rx_Strength FROM SERVICES
WHERE RX_NDC IS NOT NULL AND Rx_NDC <> ' '
GROUP BY RX_NDC, RX_Strength
However, if you are using SQL2000 and this temporary table...
June 7, 2002 at 7:11 am
SET NOCOUNT ON stops SQL from sending back the progress messages generated by Transact-SQL statements that affect one or more rows.
If you run your stored procedure without SET NOCOUNT ON...
June 7, 2002 at 4:44 am
This is fairly straightforward: any functions, be it UPPER(), LEFT() or whatever will prevent an index being considered for that part of the WHERE clause....
I hope this answers your question,...
June 7, 2002 at 4:31 am
I *cannot* vouch for this product, but look at http://www.incepto.com to see if this more closely matches what you want?
Simon
UK
June 3, 2002 at 5:40 pm
Well I for one would never write a business app using ASP - you just don't have the control of the screen you need, let alone state management.
But anyway, 65536...
June 3, 2002 at 11:36 am
I would just point out that with VB and .NET in general you are buying into the Microsoft wish list in many ways.
The VB fans here will correct me, but...
June 3, 2002 at 5:25 am
Brian
Could you tell me if you have written a class wrapper that provides a means of accessing the functionality of Excel without accessing low-level formatting calls?
The severe limitation to Excel...
June 3, 2002 at 5:18 am
Actually, I'd recommend Visual Foxpro for providing a rich environment for developing your front-end. This is one of those subjective threads that can so easily degenerate into sniping about...
June 3, 2002 at 4:43 am
Viewing 14 posts - 91 through 104 (of 104 total)