Viewing 15 posts - 5,341 through 5,355 (of 13,465 total)
if you can connect as an admin, just reset the password;
otherwise, you have to restart the service in admin mode and follow the steps here:
June 21, 2012 at 2:00 pm
remember, we are on the other side of the interwebz here, and not looking over your shoulder. you've been looking at the issue for hours, and we onyl see three...
June 21, 2012 at 1:14 pm
something to keep in mind: system databases cannot be restored from previous versions or servicepacks;(regular databases are no problem)
so say you backed up master, msdb and model in RTM (release...
June 21, 2012 at 12:05 pm
Sean Lange (6/21/2012)
Looks like Lowell and I were typing at the same time. 🙂
yeah but your answer is actually better; least amount of access is the best;
my example was for...
June 21, 2012 at 11:33 am
ok, what you want is possible, but it's the wrong way to do it;
access should be handled via roles, and not at the dml trigger.
it's much, much easier to create...
June 21, 2012 at 11:28 am
ahh, since it is parameterized, what are the datatypes of @PolicyNo and @EffDate?
for parameters, you do not need the quotes if the parameter is the right datatype...maybe it's...
June 21, 2012 at 7:18 am
i'm not an SSIS guy by any means, but a script task that hits the extended stored procedure xp_logininfo might be a little easier:
EXEC master..xp_logininfo @acctname...
June 21, 2012 at 7:06 am
another option is this suite of CLR export functions I created and put on codePlex as a proof-of-concept:
https://sqlclrexport.codeplex.com/
here's the example code of exporting a table to a CSV report:
EXECUTE...
June 21, 2012 at 6:15 am
are you sure excel even supports a show / hide collapsing functionality?
I've never seen it; i think that is a property of html pages only.
June 20, 2012 at 2:54 pm
this is a working, tested example of openrowset on an excel spreadsheet for a 64 bit installation of SLq server.
you need to know the name of the spreadsheet in the...
June 20, 2012 at 1:03 pm
well it seems pretty easy as i'm slapping together a CLR;
gota basic syntax issue for when it comes to full file names:
for the switches, do any of these look correct?...
June 20, 2012 at 8:28 am
another quick question:
pgp --decrypt report.doc.pgp --passphrase Pa55w0rd
does that create the file report.doc or return a bytestream/filestream?
maybe there is an optional param for output file name like the encrypt command?
June 20, 2012 at 7:53 am
lol I'm the opposite, clueless when it comes to PGP, but well versed in Sql Server, .NET and CLR.
can you give me a pair of examples on the command line...
June 20, 2012 at 6:50 am
it sounds like you are looking for a CLR which can encrypt/decrypt a file to disk using PGP;
my Google-Fu pointed me to this thread from 2007 about SecureBlackbox , which...
June 20, 2012 at 6:14 am
the count of table rows are materialized in sys.indexes, and are accurate for the heap tables or clustered tables;
that's the way to count rows quickly:
SELECT so.[name] as
...
June 20, 2012 at 5:45 am
Viewing 15 posts - 5,341 through 5,355 (of 13,465 total)