Viewing 15 posts - 331 through 345 (of 595 total)
quote:
When one customer is modifying their extended table, would we see locking issues on the primary table for customers other than the...
June 17, 2003 at 6:15 am
It's because banner manager pro is using an IFRAME element to display the ad in your browser; since IFRAME is a windowed element, and the menu is not (it's implemented...
June 17, 2003 at 6:01 am
Hmmm, surprised no one mentioned this yet:
Use:
SET NOCOUNT ON
where appropriate. It limits the amount of code passed between application tiers.
🙂 Even the little things add up...
...
June 16, 2003 at 3:21 pm
Personally, I think 2 is actually your best option. The cons that you outlined I don't see as drawbacks, actually. You can easily add powerful join indexing simply...
June 16, 2003 at 3:04 pm
Use DTS to import the csv file. Look in Books OnLine for tutorials on how to use this tool from Enterprise Manager.
June 16, 2003 at 7:41 am
Wrap all your EXEC dynamic statements into a stored prcoedure. Then, store the result of your store procedure in a temp table:
DECLARE @RetrievedValue CHAR(10) --...
June 13, 2003 at 7:04 am
Not sure what you mean by "cannot find it"...What you want to do is go to the SQL Server Agent --> Jobs --> Right click the job you need -->...
June 11, 2003 at 12:05 pm
If you INNER JOIN your tables to an empty table, you will always insert 0 records, since the JOIN won't find any matching records. I believe you want something...
June 11, 2003 at 11:43 am
If you are dealing with 50 calls/minute and returning very large datasets, I would imagine that paging will be the least of your concerns. I'm not quite sure what...
June 11, 2003 at 11:34 am
If you want to post the VB code, I can take a look. We have successfully used COM+/MTS components here for a while and have gone through the gammet...
June 11, 2003 at 11:29 am
Basically, stored procedures and views are more maintainable, produce less network traffic (you don't have to send a giant SQL string across the wire). The compilation plans for both...
June 11, 2003 at 11:25 am
You might consider caching the dataset returned and using logic in your web page/ COM component to handle the paging...
Just a thought,
Jay
June 11, 2003 at 11:20 am
Create a stored procedure that does the required data manipulation, then assign the Job to run the stored procedure:
"EXEC my_stored_proc [args]"
June 11, 2003 at 11:18 am
Please post the structure of your Invoice table...it will help in determining the sql for your problem...
Thanks
June 11, 2003 at 11:13 am
Viewing 15 posts - 331 through 345 (of 595 total)