Viewing 15 posts - 1,126 through 1,140 (of 13,469 total)
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
yeah, i think my sum case will do exactly that for you.
what does this return? does it look right?
SELECT
USERNAME as [User Name],
SUM(CASE WHEN [Status_Type] =...
April 12, 2016 at 2:20 pm
if you look at it the other way, are the last eight characters of the file name always a correctly formatted datestring?
so it-doesn-t-matter-about-dashes04122016.txt? can get me the right values with...
April 12, 2016 at 1:27 pm
I'm thinking you'll need to group by your username, and maybe some other columns, and use the SUM(CASE trick to count the items meeting your criteria.
my first guess , based...
April 12, 2016 at 12:14 pm
prachiverma10 (4/12/2016)
Regarding the other issue you pointed out, can you give an example in what...
April 12, 2016 at 11:32 am
prachiverma10 (4/11/2016)
following is the insert query which is giving error.
insert into tblDoctorPatient...
April 11, 2016 at 8:22 pm
another reason to avoid them: Linq To SQL and Entity Framework side affects.
we just had an issue with transactions rolling back without any SQL error;
the issue was a linq to...
April 8, 2016 at 12:43 pm
Viewing 15 posts - 1,126 through 1,140 (of 13,469 total)