Viewing 15 posts - 1,591 through 1,605 (of 9,399 total)
If you want to do this once, all you have to do is query the DROP TABLE statements:
SELECT 'DROP TABLE ' + QUOTENAME(name) + '; '
May 20, 2017 at 7:32 am
May 20, 2017 at 7:19 am
And here's the BOL for creating one: https://docs.microsoft.com/en-us/sql/t-sql/statements/create-sequence-transact-sql
They've been around in Oracle ever since I started learning it and in SQL Server since 2012.
May 20, 2017 at 7:14 am
May 20, 2017 at 7:07 am
May 19, 2017 at 8:31 am
May 19, 2017 at 8:02 am
You need to create the login and user. If it were me, I'd grant SELECT privs on the tables and functions he needs and nothing more. The principle of least...
May 19, 2017 at 7:59 am
The first thing that came to my mind was sys.indexes, but if the system tables don't honor isolation levels (which I didn't know) then it wouldn't work.
Do you...
May 18, 2017 at 9:13 pm
Brandie, you say you had this working before, even with the difference in scope?
May 18, 2017 at 9:07 pm
There are SOX rules about sharing data - so don't do it. Like Gail said, source code doesn't fall under the SOX domain.
I'm interested in seeing the query...
May 18, 2017 at 9:06 pm
May 18, 2017 at 1:53 pm
May 18, 2017 at 1:51 pm
May 18, 2017 at 8:38 am
Viewing 15 posts - 1,591 through 1,605 (of 9,399 total)