Viewing 15 posts - 226 through 240 (of 814 total)
If you've got deadlines, and slowly growing nested views, then this links is for you and your boss:
http://usingimho.wordpress.com/2012/02/27/on-technical-debt-now-with-chickens/%5B/url%5D
Adding another view on top of views is selling a chicken.
September 12, 2013 at 8:27 am
L' Eomot Inversé (9/11/2013)
Some (fairly rare) companies have more sensible annual performance evaluation systems, in those cases it may be sensible to include them in your portfolio.
To sum up:
Your resume...
September 11, 2013 at 9:00 am
krowley (9/10/2013)
September 11, 2013 at 8:45 am
Stephanie J Brown (9/10/2013)
...
2. Hiring managers assuming the certificate guarantees things which it...
September 10, 2013 at 12:19 pm
First idea: Educate your boss quickly.
Second idea: Ask your boss to name the views based on when they'll no longer be needed, so you can see what to clean up.
Third...
September 10, 2013 at 9:10 am
I agree completely that testing task knowledge is superior to testing syntax, and I'd suggest that testing syntax is more tightly tied to selling "stuff" than testing task knowledge. ...
September 10, 2013 at 9:00 am
As stated in my post, no, my dm_exec_connections query only shows the ports and local IP addresses that have currently open connections at the time the query is run, and...
August 16, 2013 at 10:09 am
SQLSteve (8/16/2013)
Or you could run ---
DECLARE @portNumber NVARCHAR(10)
EXEC xp_instance_regread
@rootkey = 'HKEY_LOCAL_MACHINE',
@key ...
August 16, 2013 at 7:52 am
Check what the user is actually calling "slow", and how often it's "slow".
Then check what the user considers "normal" for this process, and how often it's "normal".
Then start investigating, probably...
August 15, 2013 at 3:05 pm
Without the actual table schema and naming rules/business logic, and any other tables that might help, the only accurate solutions all involve redesigning your schema so banks and foundations are...
August 15, 2013 at 3:02 pm
GilaMonster (8/14/2013)
Open 2008's SSMS. Register all the servers you need to run the query against. Right click the folder (in Registered Servers) -> New Query. Write your query, run it.
I...
August 15, 2013 at 2:59 pm
Yes.
SQL Server Configuration manager, SQL Server Network Configuration, Protocols for <instance>, TCP/IP, Properties, at the bottom is IPAll - remove the TCP Dynamic Ports string and put 1433 in TCP...
August 15, 2013 at 2:50 pm
Alternately:
EXEC sp_configure 'show advanced options',1;
RECONFIGURE;
EXEC sp_configure 'min server memory (MB)',8192;
EXEC sp_configure 'max server memory...
August 13, 2013 at 9:11 am
We also share responsibility:
DBA's handle Database<->Disk and disk retention/aging, automated and ad-hoc and PITR.
Backup team handle Disk<->Backup software (disk and tape), automated and ad-hoc, and tape retention/aging.
DBA's get requests, and...
August 13, 2013 at 9:07 am
There's also the code way of handling this:
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname = N'LinkedServerName', @locallogin = N'MySQLLogin', @useself = N'False', @rmtuser = N'RemoteServerUserName', @rmtpassword = N'RemoteServerPassword'
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'LinkedServerName',@useself=N'True',@locallogin=N'MyADLogin',@rmtuser=NULL,@rmtpassword=NULL
-- remove the default login...
August 9, 2013 at 11:03 am
Viewing 15 posts - 226 through 240 (of 814 total)