Viewing 15 posts - 3,766 through 3,780 (of 13,462 total)
I played with this compression CLR for SQL 2005 more than five years ago.
It worked at the time, but as Gail said, I think doing it in TSQL is...
April 2, 2013 at 2:32 pm
As Sean has identified, all we can offer is vague advice unless ou have some details we can look at to try and help.
here's a quick list of some things...
April 2, 2013 at 9:06 am
nope, a database doesn't keep track of what references Itself, only what objects it's own objects references.
for same server references, you could query each database and stick the results into...
April 2, 2013 at 8:58 am
that's one of the advantages/disadvantages of Encrypt by PassPhrase:
you can prevent the DBA from getting to the data if he doesn't have the passphrase. By The Same Token, if you...
April 2, 2013 at 8:16 am
you could run into problems with inserting/updating rows with unecessarily oversized rows of data;
SQL still has a max row size of 8060, so if you had an update statement that...
April 2, 2013 at 6:10 am
as far as i know, it's not possible; without the pass phrase you'd have to try a dictionary attack on decrypting the values, and see if any if the encrypted...
April 2, 2013 at 5:48 am
asm1212 (4/1/2013)
So is there not a trigger that will allow the transaction to happen and once it completes, a trigger will fire off?
The Service Broker or Extended Events both...
April 1, 2013 at 3:10 pm
way too many assumptions and alternate technologies to even begin to offer much more than the basics.
1. you would need a web server, that also has access to where ever...
April 1, 2013 at 3:04 pm
I believe when you call the procedure, you need to mark the parameter as output also:
exec Testout 'Y', @p2 OUTPUT
April 1, 2013 at 12:34 pm
my first guess at what you are asking;
you mentioned hundreds of thousands, but your pattern only allows 99999 values.
note i'm still using an identity and a default value in order...
April 1, 2013 at 9:45 am
it kind of sounds like the client has your application already in place, and when they upgrade, they need to run scripts too?
I know in our case, we've done it...
April 1, 2013 at 9:21 am
i get this a lot when i use an explicit transaction, which i then role back; afterwards, in that situation i get the same error you reported when i then...
April 1, 2013 at 7:33 am
AndrewSQLDBA (4/1/2013)
April 1, 2013 at 6:19 am
it's trivially ewasy, but the most important thing is to make sure noone has sysadmin rights; you cannot hide or deny access to a sysadmin.
sql is deny by default, so...
April 1, 2013 at 6:17 am
an example of what Gail was referring to:
USE [SandBox] --my db for users to do stuff.
CREATE ROLE [ReallyReadOnly]
--give my new role READ permission to ALL tables
EXEC sp_addrolemember N'db_datareader', N'ReallyReadOnly'
--explicitly DENY...
April 1, 2013 at 6:10 am
Viewing 15 posts - 3,766 through 3,780 (of 13,462 total)