SQLServerCentral - www.sqlservercentral.com

A community of more than 1,600,000 database professionals and growing

Featured Contents

Featured Script

The Voice of the DBA

Questioning the Interviewer

This editorial was originally released on Oct 14, 2012. It is being republished as Steve is out of the office.

When you are in a job interview, it's almost inevitable that near the end the interviewer will ask you what questions you have. As noted in this post, a large number of people have no questions. It's certainly possible that the interview covered all the questions you would want to have answered, but do you have a list of questions before the interview starts?

You should. I think it's important that you ask questions in an interview, especially questions that are important to you. Many times each of us wants a job, needs to get a job, and don't want to do anything that might jeopardize our chances. However taking a job that's a bad fit, or has some aspect that will bother you every day is a bad idea. You spend a lot of time at work and a poor work environment can make your life miserable.

In the piece, the person makes a good point that your questions reflect your priorities and can result in an unfavorable impression. I think you can ask about topics like telecommuting, but do so in a way that shows you are interested and excited about the job. I've noted long commutes and the time they take in an interview, asking if I can better use that time to solve problems by working at home a day or two. The way you bring topics up can matter, so make sure that you word your questions in a way that shows you are interested in doing a good job.

I do think that asking questions which show your enthusiasm or interest in the position are good questions to ask. However you should think about those questions before you go to the interview and determine if what impression they make. Write down your questions, and if they are answered during the interview, mark them off and ask any remaining questions at the end. 

The interview is your best chance to determine if the position is a good fit for you and the company, so take advantage of that.

Steve Jones from SQLServerCentral.com

Join the debate, and respond to today's editorial on the forums

ADVERTISEMENT

SQL Toolbelt contains the industry-standard products for
SQL Server:

Development

Deployment

Backup

Monitoring

Featured Contents

 

PowerShell Solutions - Working with files

Daniel Calbimonte from SQLServerCentral.com

When we administer a SQL Database, we always have to work with files. This new article shows how to handle them using PowerShell. More »


 

Managing SQL Server Backup and Restore History Information

Additional Articles from Database Journal

Greg Larson explains that SQL Server provides a couple of different ways to delete backup and restore history. If you want to remove backup and restore information for all databases based on a date you can use the sp_delete_backuphistory system stored procedure. Or you can use the system stored procedure named sp_delete_database_backuphistory if you want to remove all backup and restore history for a specific database. More »


 

From the SQLServerCentral Blogs - PowerShell, Pester and Ola Hallengrens Maintenance Solution

Rob Sewell from SQLServerCentral Blogs

If you are a SQL DBA you will have heard of Ola Hallengrens Maintenance solution If you haven’t go and... More »


 

From the SQLServerCentral Blogs - SQL SSRS Express Edition Cannot Connect to Azure SQL Databases

willassaf@gmail.com from SQLServerCentral Blogs

This has bit a couple of clients recently, figured I'd put out a PSA. Express editions of SQL Server Reporting Service,... More »

Question of the Day

Today's Question (by Steve Jones):

In my Excel 2016 sheet, I use this formula put strings from a few cells together.

=CONCATENATE(I4, J4, K4)

I want to use the same type of forumula in a DAX calculation that gathers data from three columns together. How should I do this?

Think you know the answer? Click here, and find out if you are right.


We keep track of your score to give you bragging rights against your peers.
This question is worth 1 point in this category: Concatenate.

We'd love to give you credit for your own question and answer.
To submit a QOTD, simply log in to the Contribution Center.

ADVERTISEMENT

SQL Server Hardware will provide the fundamental knowledge and resources you need to make intelligent decisions about choice, and optimal installation and configuration, of SQL Server hardware, operating system and the SQL Server RDBMS.

Pick up your copy of this great book from MVP Glenn Berry at Amazon today.

Yesterday's Question of the Day

Yesterday's Question (by Steve Jones):

What does this return?

 SELECT CEILING(-2.3)

Answer: -2

Explanation:

CEILING returns the highest integer near the numeric passed in, which for -2.3 is -2.

Ref: CEILING - https://msdn.microsoft.com/en-us/library/ms189818.aspx

Rounding Tips and Tricks - http://www.sqlservercentral.com/articles/T-SQL/145448/


» Discuss this question and answer on the forums

Featured Script

Delete Files in Shared Location/SAN

Harsha Bhagat from SQLServerCentral.com

As a DBA when we have lots of shared location and ForFiles does not work and throws the below error 

"

ERROR: UNC paths (\\machine\share) are not supported.

"

The procedure will be helpful to delete the files. The procedure needs to be run by providing the below details.

exec DeleteOldFiles @path= '\\sharelocation$\servename\transactional_logs\', 
@days = -15
To extract the date, sbustring function is used in the procedure. Please make changes as necessary. In my case, I had the DatabaseName_Datetime.trn
e.g. MYDatabase_20160905080054.trn

More »

Database Pros Who Need Your Help

Here's a few of the new posts today on the forums. To see more, visit the forums.

SQL Server 2016 : SQL Server 2016 - Development and T-SQL

Maximum number of CROSS APPLY functions - I can't find a maximum number for CROSS APPLY lines in a single query. I know this has to be...

Assign result of dynamic sql to variable - Hello Everyone, I have a problem This is the result what i get from my function ufn_GetHcmDesignFields ISNULL(cast( ExtTotalExperienceUS as nvarchar) + ',' , '') + ISNULL(cast(...

while and if condition within a case statement t-sql - I am trying to implement a while loop and if condition (with a function call) in a case statement. Basically,...


SQL Server 2014 : Development - SQL Server 2014

Need to restore 700+ DBs without any data - Hey all, I have a bit of a situation and wondering if someone can help me. I have 700+ DBs...


SQL Server 2012 : SQL 2012 - General

One to Many relations - Hi, I've a few different entities that need to hold photos (one or many), let's name them A, B and C....


SQL Server 2008 : SQL Server 2008 - General

maxrecursion Other Option - What are other option instead of using maxrecursion in sql server 2008 ?

How to get the previous weeks data based on week ending - I need to get a weekly count of records with Friday being the end of the week. So, the report...

query to repeat insert same rows - i want to make a query using cte to insert multiple rows with same field. i have a result query with...

Backup database only if changes happen - I have SQL2008 database with some 100s of tables. Every 2 hours transaction log backup to tape is triggered. Just...


SQL Server 2008 : T-SQL (SS2K8)

split string by number of characters - I know about DelimitedSplit8K, however what I want is to split a long text (varchar(max)) field on a delimiter at...

Calculate time difference between two related visitors without using cursor - I have a table (see attached) listing visitors IDs, listed more than once, and Arrival DateTime. I need to find...


Cloud Computing : SQL Azure - Administration

Finally got my SQL Server database into Azure! - I finally got my SQL Server database uploaded into Azure SQL! I posted a blog post about it. Rather than...


Programming : General

T-SQL Code Analysis Tools - I am researching T-SQL Code Analysis tools, like the equivalent of an FxCop for T-SQL that will scan thousands of...


Programming : XML

How to extract a value from XML column in a SQL Table - Hi there I have a SQL table called dbo.AuditItem. This contains a column called [OldRow]. This column is in XML format I want...


Programming : Powershell

Errors while trying to copy files to UNC path using Powershell - Hello experts, I found the promising script below at the following link: [b][url=https://sqlactions.com/2015/03/30/powershell-script-to-manipulate-sql-server-backup-files/]https://sqlactions.com/2015/03/30/powershell-script-to-manipulate-sql-server-backup-files/[/url][u][/u][/b] The purpose of the script is to allow copy of...


Data Warehousing : Integration Services

Storing XML Config files in SSIS - I am new to SSIS,Need some ideas and thoughts of creating XML configuration (dts config) file (Common file) one SSIS...


Data Warehousing : Strategies and Ideas

Modelling grain and fact table key - Hi, I'm new to datawarehousing and am really working through a lot of concepts with no guidance or mentor. I have...


Data Warehousing : Analysis Services

From SSAS 2012 to SSAS 2016 - Has anyone upgraded from 2012 to 2016 yet? If so, what are some challenges? How did you verify that the...


SQL Server 2005 : Backups

Microsoft SQL Server, Error : 2 - While connecting to SQL Server 2005, I am getting the following error. "An error has occurred while establishing a connection to...


Microsoft Access : Microsoft Access

How to get date?? - Hello , I would like to find right date. Example: year = 2016 week = 40 day = 3 (tuesday) How can I get date? Thank you.

This email has been sent to newsletter@newslettercollector.com. To be removed from this list, please click here.
If you have any problems leaving the list, please contact the webmaster@sqlservercentral.com.
This newsletter was sent to you because you signed up at SQLServerCentral.com.
Feel free to forward this to any colleagues that you think might be interested.
If you have received this email from a colleague, you can register to receive it here.
This transmission is ©2015 Redgate Software Ltd, Newnham House, Cambridge Business Park, Cambridge, CB4 0WZ, United Kingdom. All rights reserved.
Contact: webmaster@sqlservercentral.com