Viewing 15 posts - 916 through 930 (of 2,701 total)
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
can you put the full DDL for the table - including indexes and data_compression clause. (you may need to change your ssms settings for generationg scripts for all these to...
June 3, 2022 at 1:02 pm
forgot to add that option to the list.
to sort it out add
@SortInTempdb = 'Y'
to that list of options
with regards to that long run - get a copy of sp_whoisactive and...
June 3, 2022 at 10:15 am
google - the information you need is very abundance and clear - and if you don't have access to install those modules speak with your admins to get it installed.
June 2, 2022 at 6:07 pm
or the one below - but output will never be the one you desire
Select *
from (select distinct VID
...
June 1, 2022 at 6:45 pm
Viewing 15 posts - 916 through 930 (of 2,701 total)