Viewing 15 posts - 841 through 855 (of 2,654 total)
spam again - we really should block this thing
June 30, 2022 at 6:51 am
info is on MS licensing document itself - if that one is wrong ....
June 28, 2022 at 9:56 pm
you buy the license for 2019 - and that license allows you to install 2016 as part of downgrade license terms.
see https://docs.microsoft.com/answers/storage/attachments/96089-sql-server-2019-licensing-guide.pdf - page 39
so you to install sql 2016...
June 28, 2022 at 1:35 pm
that ONLINE=ON is whats causing all that growth and elapsed time.
you should also add sort_in_tempdb = on.
and... the DDL you supplied does not include the filegroup it is being created...
June 27, 2022 at 7:29 am
and information about how you are running the index creation - within a transaction, multiple index being created or just one, online or off line, sort in temp db or...
June 24, 2022 at 10:58 pm
google has lots of examples - so which ones did you try and what was the result.
its not like YOU trying it will cause any issues - and you will...
June 24, 2022 at 2:11 pm
you are aware that this has been answered rather often and that what you need can be found with a simple google search - not to speak on the old...
June 22, 2022 at 5:31 pm
Remember, too, that the logical data model should be easily understood and use by business people. In fact, if possible, keep all developers out of the first...
June 20, 2022 at 4:00 pm
replacement for format to return just yyyy-mm-dd (or yyyy-mm) is easy - convert(char(10), datefield, 121) - change the char(10) to char(7) to return just yyyy-mm - but as mentioned...
June 20, 2022 at 1:04 pm
based on the tables above and their relations I have the following comments/questions
June 19, 2022 at 7:16 am
there is no SQL code on your post - only something that looks like VBA.
so do go post on a VBA or Google Sheets forum where there are bound to...
June 18, 2022 at 5:59 pm
and... why you using Excel on the server? It is unsupported and likely you are breaking the licensing terms for Office/Excel.
June 18, 2022 at 5:18 pm
Common approach for these is to have a set of metadata tables that contains all the information related to tables/views in such a way that you can query those tables...
June 17, 2022 at 9:43 am
For each database do ( including msdb - will allow view jobs )
GRANT VIEW DEFINITION TO [<USERNAME>]
And
USE [msdb] GO ALTER ROLE [SQLAgentReaderRole] ADD MEMBER [<username>] GO USE [msdb] GO...
June 16, 2022 at 11:49 pm
TO_CHAR(trunc(Sysdate,'MM')-1,'MMYYYY')) - this is returning the first day of the current month (trunc(sysdate, 'MM) minus 1 day (-1) in format MMYYYY
TO_CHAR(tab.x, 'MMYYYY') is returning the value of tab.x on format...
June 15, 2022 at 10:53 am
Viewing 15 posts - 841 through 855 (of 2,654 total)