Viewing 15 posts - 241 through 255 (of 13,429 total)
any chance you edited the Script task template itself?
i got the same error, but I knew it was me.
i edited the template for Visual Studios C# Script task,...
December 7, 2018 at 3:16 pm
the data can have none to many rows in sys.logins. the statement is just building the commands dynamically, really.
remember you can run multiple commands, and the recommendation is...
December 4, 2018 at 3:56 pm
this generates the sql and potentially kicks off the command:
what would setting the local password length do? isn't it overwritten by the domain password policy anyway? i think that...
December 3, 2018 at 2:01 pm
note that when it comes to SQL Server administration, not a lot has changed; if you find a class/book/blog on administration in general, from 2012 and later, say, you would...
November 27, 2018 at 1:25 pm
proc parameters can only assigning values you cannot concat values or use functions int he assignment.
you simply pre-assemble the value before assigning it.:USE Alarms
DECLARE...
November 15, 2018 at 11:55 am
you are basically trying to avoid locking and blocking, so here is another idea:
you could also consider inserting the desired 10K rows into a new table, amybe in...
November 14, 2018 at 10:49 am
ok, this looked fun, so i combined and modified a couple of techniques:
DROP TRIGGER TR_PopulateExendedEventOnEachObject
ON DATABASE
GO
--Our Trigger to limit our role:
CREATE...
November 14, 2018 at 10:07 am
i think the [Domain\dbc_agent] login issue the query finds is a separate issue than the process logging in as sa, i would look at the Error/Severity columns to confirm.
November 9, 2018 at 1:39 pm
you could run it from any machine on the network, so no difference; DNS is DNS from any machine.
the IP resolves to some server name, which i think you...
November 8, 2018 at 3:21 pm
using ping -a will return the machine name, i like it better than nslookup..
then you can check the machine itself for either applications, or windows tasks, or even a...
November 8, 2018 at 3:09 pm
Yes, I do something exactly like that against my own CMS servers.
I create a SQL connection manager, and in expressions, I point the servername property to a user...
November 5, 2018 at 10:52 am
if there is no server name, then it is implied that the database exists on the local server; is that how it was set up originally? if you can find...
October 19, 2018 at 12:16 pm
Classic ASP often made use of include files, so as Sue_H suggested, you just need to search the files for the database/server name and zoom in on possible locations to...
October 18, 2018 at 12:38 pm
Brandie I've always done something like this to keep it Sarg-able; does that help? it's an OR, i know, but it would allow indexes to be used if they exist...
October 15, 2018 at 9:29 am
ok more info for everyone.
I scanned all 100+ sql instances in my Central Management Servers.
I have seven servers that have a variance of over one day. one is...
October 10, 2018 at 2:42 pm
Viewing 15 posts - 241 through 255 (of 13,429 total)