Viewing 15 posts - 1,756 through 1,770 (of 13,460 total)
it's built in, here's the best link i found when i googled that for you.
Add or Delete an Indicator (Report Builder and SSRS)
Lowell
May 18, 2015 at 5:30 am
does the storedprocedure ServerB.MyDatabase.MyStoreProcedure itself use an additional call to a linked server, by chance? so it double hops?
Lowell
May 15, 2015 at 2:11 pm
i often get a similar error message when i create a new linked server, where i forgot to set the rpc and rpc out to true;
Executed as user:...
Lowell
May 15, 2015 at 12:07 pm
pretty sure the misisng pice is the service, if you've toggled both rpc settings in your linked server.
On the Target/linked server, Remote desktop over to it andopen services....it has a...
Lowell
May 15, 2015 at 11:45 am
ahh, sorry.
DESC or DESCRIBE TableName will get you some information, not sure how pretty it will be over a linked server, but that's what you want to try.
Lowell
May 15, 2015 at 8:12 am
you can use the two built in procedures which are used specifically for interrogating linked servers.
EXEC sp_tables_ex [OracleLinkedServerName] will get you started, but from there, you need to find a...
Lowell
May 15, 2015 at 6:51 am
i think if you don't use the schema, and leave everything in dbo, you'll be fine.
as soon as you go cross schema, the user needs access to the underlying tables.
leaving...
Lowell
May 14, 2015 at 1:35 pm
the Database Master key always has an symmetric_key_id = 101, i read someplace, so my scripts all use that:
IF NOT EXISTS (SELECT * FROM sys.symmetric_keys WHERE symmetric_key_id = 101)
BEGIN
...
Lowell
May 14, 2015 at 12:47 pm
they are already sortable varchar values, so how do you want to sort them differently than the natural order by text via ORDER BY [ColumnName]?
the order you pasted them...
Lowell
May 14, 2015 at 12:41 pm
ok, confirmation.
Step 1: i enabled the DAC in facets on my test server. no restart or anythign required.
Step 2: i created this procedure with encryption.
--#################################################################################################
--developer utility function added by Lowell,...
Lowell
May 14, 2015 at 12:35 pm
if you connect via a Dedicated Admin Connection, i believe encrypted objects are visible as decrypted, specifically so you can debug and review.
not quite true, now that i'm testing...
Lowell
May 14, 2015 at 12:17 pm
you didn't login with that user.
execute as tests permissions on objects, it does not test whether they can login.
you literally have to connect via windows, as that user, and see...
Lowell
May 13, 2015 at 9:10 pm
you need to use Registered Servers and Central Management Server to help you administer your SQL servers.
both of them allow you to run the same script across all the servers...
Lowell
May 13, 2015 at 1:01 pm
GilaMonster (5/12/2015)
Lowell (5/12/2015)
i tried putting together an example, but i keep getting a table scan, maybe becaus emy sample table is small.does this look right to everyone?
Yup.
With a tiny table...
Lowell
May 12, 2015 at 6:30 am
i tried putting together an example, but i keep getting a table scan, maybe becaus emy sample table is small.
does this look right to everyone?
--DROP TABLE tempdb.dbo.MyEncryptedTable
With MYFirstNames(FName) AS
(
Select...
Lowell
May 12, 2015 at 6:07 am
Viewing 15 posts - 1,756 through 1,770 (of 13,460 total)