Viewing 15 posts - 3,916 through 3,930 (of 26,490 total)
monilps (4/27/2016)
April 27, 2016 at 1:09 pm
I may work on this more tonight, but I can't replicate your problem.
April 27, 2016 at 1:06 pm
Not sure about anyone else but I am still lost.
April 27, 2016 at 12:30 pm
The DDL for the table ETLPreparedStatement, please.
April 27, 2016 at 12:20 pm
Sean Lange (4/26/2016)
Alvin Ramard (4/26/2016)
Ed Wagner (4/26/2016)
Luis Cazares (4/26/2016)
Wonder if I should answer: "Using INSERT statements"http://www.sqlservercentral.com/Forums/Topic1781117-1550-1.aspx
Well, you would be correct. Tell them to create the table first. 😉
Tempted to...
April 26, 2016 at 1:21 pm
ThomasRushton (4/26/2016)
Lynn Pettis (4/26/2016)
I wonder if we should mention the legal issues that may be involved in doing this: http://www.sqlservercentral.com/Forums/Topic1780501-1550-1.aspx
Do it. They'll thank you later when they don't get...
April 26, 2016 at 1:03 pm
You may want to review the legal issues involved if you are considering mirroring PII information from the EU to the US.
April 26, 2016 at 1:02 pm
I wonder if we should mention the legal issues that may be involved in doing this: http://www.sqlservercentral.com/Forums/Topic1780501-1550-1.aspx
April 26, 2016 at 1:00 pm
New persopn (4/26/2016)
I am not getting any references in online
https://msdn.microsoft.com/en-us/library/hh994726(v=sql.10).aspx
April 26, 2016 at 12:55 pm
Start with Books Online, the SQL Server Help system. There is a lot of information there to get you started.
April 26, 2016 at 12:48 pm
New persopn (4/26/2016)
As per client request we are capturing Server level audit information to File. Now they want file information needs to be in table format.
Can someone please guide...
April 26, 2016 at 12:39 pm
Modified previous code to include object information.
select
dbprin.name PrincipalName,
dbprin.type_desc PrincipalTypeDesc,
dbperm.class_desc,
dbperm.permission_name,
dbperm.state_desc,
...
April 26, 2016 at 11:42 am
FYI, code using system views instead of the 2000 backward compatibility views:
select
dbprin.name PrincipalName,
dbprin.type_desc,
dbperm.class_desc,
dbperm.permission_name,
...
April 26, 2016 at 11:29 am
Brandie Tarvin (4/26/2016)
Seriously. SERIOUSLY?
Because Public had a DENY on BACKUP DATABASE, it wouldn't let my account backup the database. I found it using the below code from this link.
SELECT b.name,...
April 26, 2016 at 11:02 am
Can you recreate the issue with a sandbox database in a test/development environment?
April 26, 2016 at 10:55 am
Viewing 15 posts - 3,916 through 3,930 (of 26,490 total)