Viewing 15 posts - 1,666 through 1,680 (of 13,460 total)
jellybean (6/29/2015)
Thanks for all the comments. The following script appears to work for my needs:
use DBName
select * from sys.synonyms
where base_object_name LIKE '%SearchString%'
Ideally, I would like the...
Lowell
June 29, 2015 at 7:16 am
well, for me, the question is:
if you created A certificate, why are you not using it.
I've always created a certificate, and then used EncryptByCert and DecryptByCert to handle the routines.
no...
Lowell
June 29, 2015 at 6:48 am
rajemessage 14195 (6/28/2015)
I want to import excel file in sqlserver , i was informed that we have to pay of drivers like .jet and .ace.
i...
Lowell
June 29, 2015 at 5:44 am
synonym definitions are not stored in sys.sql_modules.
they are actually in the sys.synonyms table, so whatever search you create needs to search multiple places;
you might want to include searching msdb.dbo.sysjobsteps, for...
Lowell
June 29, 2015 at 5:35 am
no, it will not work.
database ownership changing breaks if the object called(ie your dbo.procedure) references another schema or another database.
in that case, the caller needs permissions to the objects involved...
Lowell
June 26, 2015 at 2:40 pm
an SSAS database backup file is usually saved as a name.abf file.
it sounds like you are trying to ATTACH an SSAS backup as if it were a Regular...
Lowell
June 26, 2015 at 2:12 pm
i think i see what you want, and you'll need to use dynamic SQL
build a complete update command, and execute it inside the cursor.
declare @isql varchar(max)
SELECT @isql ='update #temptable
set...
Lowell
June 26, 2015 at 1:12 pm
you should be able to navigate to the SSRS web site, click "Site Permissions" in the upper right
from there, fidn the tab that says security, and remove thewindows groups or...
Lowell
June 26, 2015 at 12:51 pm
that link you posted has a nice code example by bledu; that's the sort of code i'd put in an SSIS package's script task, so you can query SQL, and...
Lowell
June 26, 2015 at 7:05 am
grkanth81 (6/25/2015)
I know this is very old post of yours.
But I would like to know - Did you manage to find a solution for your question?
I am also looking...
Lowell
June 26, 2015 at 5:29 am
try either procedure i offered, or the one Perry suggested.
when called with no parameters, it returns all logins.
Lowell
June 25, 2015 at 6:18 am
there's a Microsoft proc you can download that extracts users and their hashed passwords named sp_help_revlogin;
you use it for exactly what you are asking copying/transferring existing windows users/groups/SQL users to...
Lowell
June 25, 2015 at 5:58 am
there are dozens of scripts in the scripts section here on SSC that do what you are asking;
take a look and see if one will do the job for...
Lowell
June 24, 2015 at 11:42 am
ok so my analysis of WHY it occurred is as follows, see if you agree with me:
LinqToSQL wants to try and maintain state of data, so instead of just doing...
Lowell
June 24, 2015 at 6:59 am
because you are appending fields to each other, if any value is NULL, when sent to a text file, you end up with blank rows.
i'd start with bulletproofing the query...
Lowell
June 23, 2015 at 2:31 pm
Viewing 15 posts - 1,666 through 1,680 (of 13,460 total)