Viewing 15 posts - 46 through 60 (of 1,535 total)
July 6, 2012 at 3:32 pm
Yes, but you need 1434 which is what SQL Browser listens on.
netsh firewall set portopening UDP 1434 "SQL Browser"
July 5, 2012 at 4:31 pm
I would check that you also have UDP 1434 open through the firewall. This is required for the SQL Browser which gets used anytime you attempt to connect to a...
July 5, 2012 at 3:33 pm
It might be worth checking that your SQL Service account has the ability to read attributes of Active Directory and therefore find users.
July 5, 2012 at 11:16 am
I would recommend you do a little investigation and look for scripts that check for long running jobs. I have no doubt there are some on this site. From there...
July 5, 2012 at 11:13 am
Truncating the log is very much a misnomer. As Jason states, the log is broken into smaller virtual log files (VLF) which are sized depending upon the initial size of...
July 3, 2012 at 1:59 pm
dan-572483 (7/3/2012)
Just curious, what are the specs on your laptop & VMs? I've thought about clustering VMs on my home computer for self-training purposes, but I'm concerned about...
July 3, 2012 at 11:35 am
You're far better off triaging the issue while the job is running slow. Look into issues around blocking, disk contention, page allocation problems in Tempdb.
July 2, 2012 at 2:37 pm
What do the wait stats on the server show at the times when the job is running slow? Are you having blocking issues maybe?
July 2, 2012 at 2:27 pm
With PowerShell you can get a count of rows in a flat file using
(Get-Content "file.txt").Count
July 2, 2012 at 2:26 pm
You only have physical reads when SQL has to go and retrieve the data from disk. If the data is already in cache then you won't have any of those....
July 2, 2012 at 10:16 am
And if you mean build a cluster on a single machine by creating multiple virtual hosts (for testing purposes as you'd never want to do that in production) then the...
July 2, 2012 at 10:06 am
You are facing that the wrong way.
A cert should be based upon the information that you already know. You gain the experience and knowledge and then get the certification as...
June 29, 2012 at 2:33 pm
June 26, 2012 at 5:18 pm
Or you could have two int and an xml or varchar(max) or varbinary(max) or text or image column. Each of those LOB columns can store up to 2GB of data...
June 26, 2012 at 5:16 pm
Viewing 15 posts - 46 through 60 (of 1,535 total)