Viewing 15 posts - 31 through 45 (of 374 total)
G33kKahuna,
Thanks for reading the article and I am sorry you did not find it useful.
If the tools you use always give you what you want and you never have...
December 1, 2009 at 1:19 pm
david.murden (12/1/2009)
I might be being a cabbage but i have never seen :: used as a prefix to a join or anywhere else in sql actually. I had a...
December 1, 2009 at 10:02 am
Did you try to call the SP in a loop from the SQL Server Management Studio to make sure the performance hit is not SQL related? It looks like you...
November 16, 2009 at 8:11 am
The performace issues related to the transaction log (and data files as well) I have seen are related to the autogrowth. Now I tend to create databases and log files...
November 10, 2009 at 1:36 pm
magarity (11/7/2009)
November 9, 2009 at 11:27 am
I would say yes. It is a judgement call between convenience and data loss risk.
I have to admit that my previous statement about the data logged is not exactly...
November 9, 2009 at 11:21 am
Charles Kincaid (11/9/2009)
Full Recovery mode writes more stuff that Simple Recovery mode.
James_DBA (11/9/2009)
November 9, 2009 at 9:38 am
John Mitchell-245523 (7/17/2008)
November 6, 2009 at 1:08 pm
Great article. I really liked the 'go back to the 70' part.
Sometimes when I see how stuff is done just because the computer can handle the load it drives...
November 2, 2009 at 8:35 am
I think you have to remove 'integrated security=true' from your connection string.
October 21, 2009 at 12:55 pm
No. I don't think so.
How do you know which invoices to use? Use the same logic in the WHERE clause.
October 9, 2009 at 9:46 am
I would strongly recommend you read 'Pro SQL Server 2005 Disaster Recovery" by James Luetkehoelter. The book pretty much explains all aspects of the 'data preservation' - backup being just...
October 9, 2009 at 9:36 am
DECLARE @Body NVARCHAR(2000)
SELECT
@Body = @Body + InvoiceNo + ' - ' + Message + CHAR(13) + CHAR(10)
FROM ....
WHERE ...restriction for one contact.
This should work for one contact at a...
October 9, 2009 at 9:29 am
JonJon (10/8/2009)
Do you know of a good site or article that explains how to read the execution plan that QA provides?
Red Gate used to have a free ebook "Dissecting SQL...
October 9, 2009 at 9:15 am
I think you may get a performance gain if you change your index to include F_Sales_Prod.net_amt
It would become a covering index for this query. (If I read the SQL statement...
October 8, 2009 at 7:16 pm
Viewing 15 posts - 31 through 45 (of 374 total)