Viewing 15 posts - 826 through 840 (of 5,685 total)
Basically, as said above, you don't. You use VS 2k8 for SQL 2k8 and 2k5 for 2k5. 2010 is for SQL 2012.
February 12, 2013 at 2:01 pm
dgowrij (2/5/2013)
Just to understand, Could you please explain how the query works? Especially the part
(SELECT 1) dt1(n)
CROSS APPLY (SELECT COUNT(*) FROM dbo.Customers) dt2(q1)
...
February 5, 2013 at 5:45 pm
I have seen heavy maxdop interfere with writes and I/O, but it would have to be an extreme case for me to look towards that as a culprit. If...
February 5, 2013 at 5:14 pm
nick.mcdermaid (2/5/2013)
OK, I have reposted an unsanitised query, the sqlplan file, the DDL, and a picture of part of the query plan.
The .sqlplan you posted is the estimated plan, not...
February 5, 2013 at 5:07 pm
Lowell (2/1/2013)
February 1, 2013 at 2:45 pm
I want to throw in a warning here. Sending emails via triggers means that if the exchange server goes down... so does your database. Also any transaction has...
February 1, 2013 at 1:37 pm
Danah (1/30/2013)
January 30, 2013 at 5:37 pm
Can you script your schema and some sample data for product_prices?
This seems like a typical logging table selection, but I want to make sure I understand your data layout precisely.
Edit:...
January 30, 2013 at 3:27 pm
Would need, at the least, to see the .sqlplan and the tables/indexes. Check out the second link on the left side of my signature for all the pieces that...
January 30, 2013 at 3:25 pm
Danah (1/29/2013)
-...
January 30, 2013 at 1:47 pm
@SQLFRNDZ (1/29/2013)
I haven't queried that and I would try querying that in an hour or so.Could you please tell me what about it?
It's one of the easiest ways to get...
January 29, 2013 at 5:42 pm
ReamerXXVI (1/29/2013)
DECLARE @param1 VARCHAR(MAX)
SET @param1 = 'value1, value2, value3'
EXEC usp_doStuff @command1 = 'Some stuff goes here', @command2 =...
January 29, 2013 at 5:41 pm
AndrewSQLDBA (1/29/2013)
He was trying to convince me that char is better performing than varchar
There is a small area where CHAR performs better storage-wise than VARCHAR because of field size settings,...
January 29, 2013 at 5:39 pm
Um, lot of factors. I wouldn't say the I/O subsystem is bad. All the wait means is that it's waiting for the drive to send it data. ...
January 29, 2013 at 4:21 pm
jbalbo (1/29/2013)
I did write a small view then created a job then creates a table from the view
Since its a report server I can run the job...
January 29, 2013 at 4:20 pm
Viewing 15 posts - 826 through 840 (of 5,685 total)