Viewing 15 posts - 856 through 870 (of 2,649 total)
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
Steve have a look at this profile https://www.sqlservercentral.com/forums/user/papaku
I'm pretty sure I've reported them more than once - and there are similar profiles to this one - reply to one of...
June 5, 2022 at 10:33 am
how to write query detect numbers like IE only i need to write query detect numbers like IE only
you can only have exponentials if there datatype is a string...
June 5, 2022 at 10:05 am
how you see them in SSMS is not how the data is stored - that is an issue with how SSMS displays real/floats.
to see the real content you will need...
June 4, 2022 at 11:23 pm
If the database is FULL recovery, would it help to run t-log backups frequently during the process, to prevent a huge t-log ?
if insert is done in one go ...
June 3, 2022 at 10:11 pm
adding page compression is likely to reduce the size of that table to around 90 GB - overall result is that querying the table will require less IO and less...
June 3, 2022 at 3:48 pm
Viewing 15 posts - 856 through 870 (of 2,649 total)