Viewing 15 posts - 8,866 through 8,880 (of 26,490 total)
Interesting to compare the actual execution plans generated, especially when looking at them with SQLSentry Plan Explorer (Free Edition).
DECLARE @DuplicateMembers TABLE
(
MemberID int
, FirstName varchar(25)
, LastName varchar(25)
)
INSERT INTO @DuplicateMembers
SELECT...
February 1, 2013 at 1:29 pm
Named instances use dynamically assigned ports. The browser service normally handles this behind the scenes but the port(s) used still need to be open.
February 1, 2013 at 11:29 am
I'd love to replace it but if I can salvage it now, that would be better. I can look at a replacement when personal funding is better, which will...
February 1, 2013 at 9:52 am
Going to start with just a power supply swap. I have several PC's sitting around, just need to be sure that the one I use has the needed power...
February 1, 2013 at 8:21 am
DO the the underlying tables in the view have primary keys defined?
January 31, 2013 at 10:36 pm
Use the NOEXPAND hint when you query the indexed view, see if that helps.
January 31, 2013 at 10:33 pm
Could use a little advice here.
January 31, 2013 at 10:21 pm
Looks to me that you may need to run your log backups more frequently than every two hours.
You may also have a problem with many small VLF's. Not sure...
January 31, 2013 at 10:00 pm
Also, if you don't specify the parameters it is assumed that the values are being passed in using the order that the parameters are defined. In this case your...
January 31, 2013 at 6:46 am
A few things would help. First, the actual execution plan for both queries. Second, what is the query attempting to accomplish? If you could post the DDL...
January 30, 2013 at 6:52 pm
Your code:
SELECT
Tranid,
cmttrantype,
txnflag,
tranref,
FeesType
FROM dbo.etl_TEST
WHERE TranId IS NOT NULL
Look close...
January 29, 2013 at 9:17 am
It means the time reported is accurate to 100 nanoseconds. You won't get any time values less than that reported.
If you need more information you may want to try...
January 28, 2013 at 10:23 pm
Hoping this is late enough not to be useful with your interview but soon enough to help you learn something:
WITH Salaries AS (
SELECT
EmpID,
...
January 28, 2013 at 10:14 pm
You may get an error, misplaced parens and the sort is wrong.
January 28, 2013 at 1:58 pm
Anuj Rathi (1/26/2013)
I have found a solution. I also want to share with you guys.
Making it a hot link:
January 26, 2013 at 10:41 am
Viewing 15 posts - 8,866 through 8,880 (of 26,490 total)