Viewing 15 posts - 2,191 through 2,205 (of 6,041 total)
jasona.work (10/3/2016)
...
Which, really, comes around to "why in the H*LL does my refrigerator need to be on the internet in the first place?" So I can remotely check my...
October 3, 2016 at 11:34 am
One option is to use VPN/RDP to access your PC or server from where you can use SSMS or SQLCMD.
October 3, 2016 at 9:03 am
I'm only somewhat acquainted with Oracle, enough to form an opinion without forming an attachment. In my opinion, Oracle has a lot of "junk in it's trunk" dating back to...
October 3, 2016 at 8:51 am
robert.sterbal 56890 (10/3/2016)
Additionally the risks on a private network...
October 3, 2016 at 8:40 am
GA_SQL (10/3/2016)
But for each month i have 30 employees, how to maintain that in a single table
First I'd just like to mention that vertically partitioning across multiple tables, when there...
October 3, 2016 at 7:50 am
The Internet is a wonderful, collaborative resource, and will be for a long time if the criminals don't fundamentally ruin our trust in it.
Also, put this all into the...
October 3, 2016 at 7:25 am
Everything you need to know is here:
Deadlocking
https://technet.microsoft.com/en-us/library/ms177433(v=sql.105).aspx
Detecting and Ending Deadlocks
https://technet.microsoft.com/en-us/library/ms178104(v=sql.105).aspx
Handling Deadlocks
https://technet.microsoft.com/en-us/library/ms177453(v=sql.105).aspx
Minimizing Deadlocks
https://technet.microsoft.com/en-us/library/ms191242(v=sql.105).aspx
September 29, 2016 at 7:42 am
Lynn Pettis (9/28/2016)
Pingala (9/28/2016)
September 29, 2016 at 7:42 am
Welsh Corgi (9/29/2016)
Eric M Russell (9/29/2016)
GilaMonster (9/29/2016)
Phil Parkin (9/28/2016)
See link.
And, after you're read that, tell me whether 'CREATE PROCEDURE', 'ALTER PROCEDURE', 'DROP TABLE', etc are valid permissions to be granted...
September 29, 2016 at 7:34 am
Grant Fritchey (9/26/2016)
September 29, 2016 at 7:30 am
GilaMonster (9/29/2016)
Phil Parkin (9/28/2016)
See link.And, after you're read that, tell me whether 'CREATE PROCEDURE', 'ALTER PROCEDURE', 'DROP TABLE', etc are valid permissions to be granted on a schema.
I assume the...
September 29, 2016 at 7:26 am
patrick.w.wheeler (9/28/2016)
Script task use in SSIS is one area that you can leverage development language.
You don't always need to use C# scripting tasks, especially not for reporting tools. About the...
September 28, 2016 at 3:53 pm
ScottPletcher (9/28/2016)
You'd still need to keep at least the history from the previous check, because an index/table could be dropped, which would remove it from the system views.
Aggregating object level...
September 28, 2016 at 2:16 pm
Reading the following article, it sounds like in addition to granting user as owner of the schema, you must also grant them permission to perform specific operations like creating tables....
September 28, 2016 at 2:13 pm
-- return the last update date for each database:
select db_name( database_id ) as database_name
, max(coalesce(last_user_update, last_system_update)) as last_updated
from sys.dm_db_index_usage_stats
group by database_id;
September 28, 2016 at 1:20 pm
Viewing 15 posts - 2,191 through 2,205 (of 6,041 total)