Viewing 15 posts - 46 through 60 (of 2,007 total)
Nice Article Jeff!!!
May 20, 2012 at 4:32 am
I was almost disconnected with SSC for couple of months and got a chance to read the article today. Nice work!!!
I remember when I read one of your posts (1...
May 20, 2012 at 4:01 am
What about an employee on rotational shifts or flexible timing? Or the one who do overtime? Time data type wouldn’t be sufficient to hold that information.
May 16, 2012 at 12:06 pm
Did you notice any network issue? Is it only for SQL Server connections or do you get hiccups while pinging or RDP.
May 16, 2012 at 12:03 pm
A screenshot would be good. It will help us to see what exactly you see. You can attach it here while posting (edit attachment button at bottom right corner).
May 16, 2012 at 11:33 am
That’s good. Also, collect the performance statistics of stored procedure executions and share it with .Net team. If it’s still not convincing enough, please share this discussion (SSC) with them...
May 12, 2012 at 5:12 am
I can make one of each table - with say, 2 records in each and (hopefully) convert to a different format, if .mdb is no good. Plus screenshot some dummy...
May 12, 2012 at 5:04 am
In Production databases, Log files used to be 60-100 MB before but right now it increases upto 14 GB.
You should worry on Log File size than Backup Size. Adding some...
May 12, 2012 at 4:30 am
Divide and Conquer.
Split the SP’s logic in few steps, create new SPs for each step and call each SP from application. Each SP can provide its own status (success /...
May 12, 2012 at 4:23 am
@Lynn (and many other dedicated volunteers here): Please don’t give up and remain dedicated as you are. I am happy community is blessed with you guys.
@Humiliators: You have...
May 12, 2012 at 4:04 am
May 12, 2012 at 3:18 am
Slight modification...
You can try using the estimated / actual (preferred) query plan with both queries in the same batch, that will show a percentage of the batch that each query...
May 12, 2012 at 2:28 am
Nope but you can enforce it with triggers.
May 12, 2012 at 2:12 am
select pr.name 'Login', sp.permission_name 'Permission'
from sys.server_permissions sp
inner join sys.server_principals pr
on pr.principal_id = sp.grantee_principal_id
where pr.name = 'test' -- Replace your login names here
select sp.name 'Login' , sr.name 'Role'
from sys.server_role_members srm
inner join...
May 6, 2012 at 7:30 am
Viewing 15 posts - 46 through 60 (of 2,007 total)