Viewing 15 posts - 1,096 through 1,110 (of 13,445 total)
limiting access to an existing workbook would simply be permissions on a file share, right?
I don't think you need powershell for that, just assign the right permissions to a folder...
April 19, 2016 at 5:39 am
you posted in SQL2008 forum, so my questions are for that platform. i think you might be posting a MySQL question in a SQL Server centric forum though.
Since SQL Server...
April 18, 2016 at 2:23 pm
did you already grab the General Equivilency Mapping stuff?
https://www.cms.gov/medicare/coding/icd10/2015-icd-10-cm-and-gems.html
your example is a great one how codes don't have exact equivelents
in the file for ICD9 to OCD10, 250.00 maps to E11.9,...
April 18, 2016 at 10:50 am
GonnaCatchIT (4/15/2016)
I tried increasing the timeout to a 1 hour , but still get the same issue.
If the Query plans are being generated differently on 2 environments....
April 18, 2016 at 10:31 am
we can't help you with homework, but if you have specific questions you can't seem to get right, if you show us what you've done,we can offer suggestions.
If i...
April 18, 2016 at 5:26 am
the If does not shortcut the validation for objects and columns. all objects must exist before the statement executes. you see the smae behavior if you have an ADD column...
April 15, 2016 at 1:23 pm
i think it's related to permissions; a lot of the time someone might get a permissions error that says
"User does not have required permissions. Verify that sufficient permissions have...
April 15, 2016 at 1:18 pm
is there a specific error? what if you try https?
April 15, 2016 at 12:33 pm
Mel Lusk (4/15/2016)
You can't use DML triggers on a system table....https://technet.microsoft.com/en-us/library/ms187834(v=sql.105).aspx
old thread from six years ago...
the msdb object mentioned msdb.dbo.restorehistory is not a system object; adding a trigger to...
April 15, 2016 at 9:30 am
since this is on a cluster, pretty sure you cannot use local disks to each box, regardless of whether they are SSD's or not ; only drives that are shared...
April 15, 2016 at 7:07 am
is it accessing metadata, like sys.tables and stuff,so you KNOW the object sit access exist in ALL databases, or is it assuming that specific tables exist int he database you...
April 15, 2016 at 7:01 am
the public role has access to tempdb, so you could create a semi-permanent table that would exist until the sql service was stopped and started/server rebooted, by creating...
April 14, 2016 at 1:12 pm
not sure if this is what you are after, this was my first guess
/*--Results
ClosestUnder ClosestOver
20 25
*/
;WITH MyCTE([Code],[Number],[Value])
AS
(
SELECT '5',convert(float,'10.00'),convert(money,'1.9201') UNION ALL
SELECT...
April 14, 2016 at 11:21 am
did you try the query at all?
April 13, 2016 at 6:37 am
i just made a minor change and tested, i got this error because the directory structure is not there yet, could that be it?
Msg 50000, Level 16, State 1, Procedure...
April 13, 2016 at 5:48 am
Viewing 15 posts - 1,096 through 1,110 (of 13,445 total)