Viewing 15 posts - 136 through 150 (of 248 total)
So my question is Simply. I have an access database, I want to export data from it to an Azure Sql Database and automate the process as it needs...
July 9, 2019 at 1:13 pm
Kal hi!
Oracle port can be found in your local tnsnames.ora for appropriate db registered.
SAP application is database independent and runs on Oracle, DB2, SQL Server, SAP HANA, SAP Sybase, MySQL,...
July 9, 2019 at 12:58 pm
See attached error message, we managed to get around the issue by copying the sqlcmd.exe, sqlcmd.rll and batchparser.dll from the server where SQL is into the folder with the...
July 9, 2019 at 12:38 pm
I was able to resolve this by making the open query select list a CTE and selecting from the CTE.
also, procedure sp_describe_first_result_set can be useful in such case
link:
July 9, 2019 at 12:27 pm
I've tried it today and got the same error as I'm getting on the new bat file. Has something been changed/updated in the last couple of years to...
July 9, 2019 at 12:22 pm
I agree with Grant, it depends on the data in databases and even features/versions you use.
For example, TDE makes compression equal to 0% (zero) on versions before sql 2016.
July 9, 2019 at 12:18 pm
Google knows a lot about locks and SQL server. The only reason not to use it first only when you need personalized answer.
But in your case I would use sp_whoisactive...
July 9, 2019 at 10:23 am
SQL server uses memory to maintain a user connection, so, if there are many of them, it will cause memory consumption.
Also, there can be a problem of an application...
July 9, 2019 at 10:12 am
We had lots of these .bat files set up at my previous workplace and I know that another file was placed in the folders along side the .bat files...
July 9, 2019 at 9:38 am
You can't use AD group name , you can connect under AD account which is a member of AD group which does have access to SQL server.
If you specify...
July 9, 2019 at 9:27 am
I just wonder if it is possible to write a stored procedure who collects data from the registered servers in CMS and store it in a table/database.
In case linked...
July 4, 2019 at 10:05 am
hi Guus
Utrecht here 🙂
Connection via CMS is the same connection as you do using sqlcmd, for example.
Servers registered in CMS are stored in two tables in msdb :
Link:
July 4, 2019 at 9:59 am
Looking good. However, I need the Pay column to show zero instead of null, so it can total at the bottom.
let's go step-by-step:
July 3, 2019 at 2:36 pm
try this one:
SELECT id
,nm
,de
,yr
--,py /*pay old ?*/
,CASE /* pay new ?*/
WHEN st = 'OUT'
OR se < 1
OR ty = 3
OR yr = 0
THEN 0
ELSE...
July 3, 2019 at 2:00 pm
Please, attach the query in TXT file .
Office files can be with viruses or macros .
July 3, 2019 at 1:06 pm
Viewing 15 posts - 136 through 150 (of 248 total)