Viewing 15 posts - 751 through 765 (of 2,661 total)
first question is why username/password (unsecure) and not windows authentication.
Second - unless you add the users to the database no one will have access to those db's - so that...
October 14, 2022 at 10:37 am
you don't state what is the application running on the VM that is trying to connect to the server - but assuming it uses standard connection strings and that you...
October 11, 2022 at 2:52 pm
you are as suspected running on a VM machine - while your config may be ok for your workload you should monitor your usage to see if you need more...
October 10, 2022 at 2:40 pm
as I've shown you on the other thread you have a construct that calculates the values you need.
you then use those calculated values on the main query.
pseudo...
October 10, 2022 at 10:24 am
use the same outer/cross apply construct you were given on your other thread
that is one of the good cases for it - define the values to use on the apply...
October 10, 2022 at 9:57 am
even if you don't have the buttons you can use the tags as I mentioned.
October 10, 2022 at 7:47 am
using cross/outer apply means that you can then use the new columns elsewhere as I did - making the code cleaner.
so on your own example with your concat ",CONCAT(DD, '-',...
October 10, 2022 at 7:39 am
you were clear - but you did NOT show us the code where you are trying to concatenate the fields - without that we can't tell you what you did...
October 9, 2022 at 9:57 pm
you didn't really post your code here neither the error you got - but look at function datefromparts which will allow you to do that easily.
October 9, 2022 at 7:35 pm
for info - kind of only found out recently why I still have the debug menu available.
I use SQL Complete PRO from Devart - this product adds the debug option...
October 9, 2022 at 9:13 am
can you give us the output of these queries
select @@version
select cpu_count
, hyperthread_ratio
, physical_memory_kb
...
October 9, 2022 at 8:18 am
on your command line you are using to create the .7z files you just add the extra parameter to 7z
October 6, 2022 at 11:45 am
MAX DOP should also be changed as well as CTFP value as they likely on default (0 and 5 respectively)
DOP depends on how many CPU's you have - CTFP I...
October 5, 2022 at 12:18 pm
SQL Server Agent job account needs access to the share/file - that is where it is failing now.
Or the Proxy account used to run SSIS packages if you defined one...
October 3, 2022 at 12:55 pm
its documented even if not clear for some.
https://learn.microsoft.com/en-us/sql/t-sql/queries/from-transact-sql?view=sql-server-ver16
| derived_table [ [ AS ] table_alias ] [ ( column_alias [ ,...n ] ) ]
October 2, 2022 at 6:33 pm
Viewing 15 posts - 751 through 765 (of 2,661 total)