Viewing 15 posts - 1,531 through 1,545 (of 13,447 total)
service accounts don't expire, right? i know "regular user accounts", can have a domain expire date and a separate password expire date.
with Powershell, i've queries active directory to...
August 21, 2015 at 7:21 am
the [IN]/[NOT IN] (SELECT SOMECOLUMN FROM SECRETTABLE) has to explicitly exclude nulls.
NOT IN(SELECT SOMECOLUMN FROM SECRETTABLE WHERE SOMECOLUMN IS NOT NULL)
August 21, 2015 at 6:52 am
you have to create synonyms for anything that points to objects outside of the database.
the synonym will have deferred resolution,and your project will compile correctly, as you replace each three...
August 21, 2015 at 6:32 am
Not with a loopback.
using a linked server/loopback is going to require four part naming conventions. leaving out the database name would default to the default database of the user...
August 21, 2015 at 6:15 am
the biggest difference for me is that Developer comes with the SQL Agent, and thus the ability to create jobs. jobs are an important part of the DBA's toolkit.
Its important...
August 20, 2015 at 7:42 am
download SQL Express With Advanced Services. it's free.
http://www.microsoft.com/en-us/server-cloud/products/sql-server-editions/sql-server-express.aspx
that is the most complete version, and includes SQL Server Management Studio and more;
the "normal" express download does not include any tools, so...
August 19, 2015 at 2:01 pm
since you only want tasks that are not on hold, i'd look to get the data via the EXCEPT operator,a dn join it with the other items on hold.
nice job...
August 19, 2015 at 1:00 pm
Scots solution requires a mapping, mine is just assigning new values.
here's my version, the core is this part at the end:
;With
TheData
AS
(
SELECT
[dbo].[DelAlphaChar](vm.AccountNum) As CleanedNumber,
row_number() OVER...
August 19, 2015 at 11:25 am
i would lean towards a web page that accepts the user input, and performs the work behind the scenes.
August 19, 2015 at 10:37 am
you are worried about something you don't need to worry about.
simply make sure they are not sysadmins.
if you create a user for your contractor, the ONLY user they can see...
August 19, 2015 at 6:41 am
i'd be interested to know why, of course; is it because the username and password are passed around to developers? are you having trouble with people changing procs? are you...
August 19, 2015 at 6:23 am
Janda Nel (8/19/2015)
we have a development environment with linked servers,which worked well.We had to rename the server names for reasons.Now in the one server the linked server appear...
August 19, 2015 at 5:58 am
you can use Windows Scheduled Tasks to create regular backups for SQL Express.
it's a scripted solution, typically with a bat file that calls sqlcmd.
google points me to a lot of...
August 18, 2015 at 1:06 pm
i found this user defined function that does the same thing:
http://www.experts-exchange.com/articles/670/DateSerial-Function-for-Microsoft-SQL-Server.html
SELECT dbo.DateSerial(Year(getdate()),6,30)
August 18, 2015 at 12:11 pm
latingntlman (8/18/2015)
August 18, 2015 at 11:50 am
Viewing 15 posts - 1,531 through 1,545 (of 13,447 total)