Viewing 15 posts - 46 through 60 (of 103 total)
Have a look here, http://www.sqlservercentral.com/articles/SQLServerCentral/66909/, and then the experts will all come out to play and you will get a very nice solution to your problem.
October 21, 2013 at 5:55 pm
The key thing I would be looking for is a level of salary standardisation, same pay for same work type things. I've worked in places where when they promoted...
October 17, 2013 at 8:10 pm
The last place I worked for that had in house development and hosting was about 1 to 8. It was a strange mix as one system had two developers...
October 6, 2013 at 8:49 pm
I just use a concatenate and a right.
So select right('00' + cast(1 as varchar) ,2)
October 3, 2013 at 11:40 pm
I love a question that should have a 100% success. It is a very nice way to get me to research new features.
Thank you for the info, looking forward...
October 3, 2013 at 9:08 pm
One method you could use is create a new table with the new column as an identity column, then run an insert statement, not populating the identity column, with an...
December 18, 2012 at 9:28 pm
No, a real professional will understand IT security and never expect anyone else to open a zip file from an unknown source.
December 17, 2012 at 8:39 pm
I just keep repeating the mantra "no one has ever lost their job for failing to take a backup, only for failing to recover the application to the required state"....
December 11, 2012 at 7:36 pm
And unfortunately none of them are intelligent enough to investigate. Oh for the good old days when IT was a black box that no one got involved in unless...
December 3, 2012 at 8:38 pm
Get use to using the INFORMATION_SCHEMA version as it is a part of the SQL ANSI Standard whereas MS can modify the system tables with releases and patches INFORMATION_SCHEMA will...
November 29, 2012 at 3:42 pm
If i create a single composite index on [LKUP_ID] and [ATTR_VAL] columns, will the index be useful if I run a query like this:
SELECT LKUP_ID, ATTR_VAL
FROM [APP_DEAL]
WHERE ATTR_VAL=97067
My question is,...
October 11, 2012 at 9:15 pm
I have a very strict self rule on working from home, I won't. Two key reasons. Firstly as a project manager I feel I need to alwaays be...
October 11, 2012 at 4:04 pm
Have a look at using the information_schema.colums collection, you can find the tables with the column you are interested in, then get all columns from the table and build your...
August 29, 2012 at 10:29 pm
Have a read through this article on how transactions work to make sure you get what you expect.
July 11, 2012 at 3:52 pm
To provide full character support, including double byte characters.
July 10, 2012 at 11:54 pm
Viewing 15 posts - 46 through 60 (of 103 total)