Viewing 15 posts - 2,191 through 2,205 (of 6,038 total)
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
If the delta for number of bytes written has changed, then you can assume that logs need to be shipped.
Also, the 2nd query will look at last update date...
September 28, 2016 at 1:17 pm
Why are you wanting start a new development project using Clinton era technology like classic ASP ?
September 28, 2016 at 12:52 pm
robert.sterbal 56890 (9/28/2016)
MP3 To Text Transcription
http://www.transcriptionstar.com/mp3-transcription/mp3-to-text.html
for the 24 hours of PASS recordings.
Do you have any actual experience with the service?
My real...
September 28, 2016 at 12:03 pm
Viewing 15 posts - 2,191 through 2,205 (of 6,038 total)