Viewing 15 posts - 856 through 870 (of 2,654 total)
from what I can see on documentation you can't grant the view alone - in order to allow a user to view the definition you must also give the same...
June 15, 2022 at 7:21 am
Focus first on logical I/Os, as that's usually the culprit one way or another.
You just re-stated exactly the first line of what I wrote in an earlier post. ...
June 10, 2022 at 8:04 pm
even if it does Google does not advise it - look at https://cloud.google.com/compute/docs/instances/sql-server/best-practices
June 10, 2022 at 2:19 pm
it kink of looks your data is not a real representation of what happens.
you can't have the same case (C1) going to 2 distinct master cases (m3 and M4) and...
June 10, 2022 at 7:30 am
invoke... "$($servervariablefromlist)"
June 9, 2022 at 11:41 am
that error looks like you are querying a Sybase database. is that correct?
and what driver are you using? vendor and version.
and... what are you doing with the returned value?
June 8, 2022 at 10:54 pm
103 (dd/mm/yyyy) is the wrong format for that input
101 (mm/dd/yyyy) would be the right one
and from your last post you are trying to convert from a varchar to a datetime...
June 8, 2022 at 9:54 pm
if zero records is not a valid answer then kindly explain why the following code returns zero records and why, according to you, it SHOULD return something.
if...
June 8, 2022 at 3:12 pm
invalid question - and adding rules afterwards to explain why your desired good answer is right is really not a good thing.
and if there are locking transactions then the query...
June 8, 2022 at 7:07 am
and while we at it - always specify the size of your varchars
CONVERT(VARCHAR, MONTH(DateOfServiceFrom))
June 7, 2022 at 10:34 pm
the replacement of null's with zeros should be done by the presentation layer.
try
select [type]
, Group1Value
, Grup2Value
...
June 7, 2022 at 5:31 pm
this is not a postgreSQL site - you better off posting elsewhere (or read documentation).
you may or not get a reply here.
June 7, 2022 at 12:31 pm
process is as follows
June 7, 2022 at 12:29 pm
In response to both frederico_fonseca and ratbak
I am using global temp tables because I need to persist the data across SPIDs. The table in question is built from some...
June 6, 2022 at 3:53 pm
you can't have 2 processes running concurrently that try to drop/create the same global temp table - you get the conflict you have.
either change it so that the 2 processes...
June 6, 2022 at 1:46 pm
Viewing 15 posts - 856 through 870 (of 2,654 total)