I am trying to create bulk Azure users from Portal.
I created a CSV file like My csv file format
When I am trying to upload, I got this error Error1
I found this Document useful Bulk create users in the Azure Active Directory portal - Microsoft Entra | Microsoft Docs and got rid of the error.
File uploaded successfully
But bulk operation status is still pending. After some time, it failed with error like:
Error2
Did anyone face the same issue? Any suggestion is appreciated.
EDIT:
I am getting failure reason as below and status as bad request:
The domain portion of the userPrincipalName property is invalid. You must use one of the verified domain names in your organization.
The error usually occurs if you are trying to add users with unverified domain. Check whether the userPrincipalName property is valid or not.
You can check this MsDoc which states the same:
I tried to reproduce the same in my environment by creating a csv file of users with unverified domain like below:
I got the same error when I tried to upload CSV file like below:
Make sure whether the users are having the same domain in their _userPrincipalName_ property like below:
After modifying the _userPrincipalName_ property with verified domain, bulk users created successfully like below:
Related
I am having the error 'External table 'dbo' is not accessible because location does not exist or it is used by another process.'
This happens for example when I am trying to run this simple script:
SELECT TOP (100) [prlName]
,[FK_prlNpdidLicence]
,[FK_cmpNpdidCompany]
,[cmpLicenseeLongName_DW]
,[prlLicenseeInterest]
FROM [dbo].[Fac_LicenceShare]
The database exists for sure and this error occurs with my user. My colleague who setup the service can run the query successfully.
It must be an issue with the authorizations granted to my user but we do not have a clue what it can be.
Any hints?
Thank you
Check the cases provided in the file path of the CSV.
Check for any spaces in the CSV file name. No spaces should be used.
Since 1.1.2020 one need to register with MaxMind to get access to the GeoLight2 databases.
I have just sucessfully installed the geoipupdate procedure and can update the GeoLite2 databases.
But I would need the CSV-versions - as those are the used by most of the tools I use.
I have tried to enter the ID's given in my account for the CSV-files, but this resulted in the following error message:
error retrieving updates: error retrieving filename: unexpected HTTP status code: 404 Not Found: Database edition not found
My question:
What is the simplest way to get the CSV-files automatically downloaded?
date=20200107 works.
I guess they update every week\7 days
You can add a crontab every week to download the last update.
See here instructions for direct download:
Take the URL from Maxmind's site.
Replace /geoip_download_by_token with /geoip_download
Replace token=XXXX with license_key=YOUR_LICENSE_KEY. You will need to replace the YOUR_LICENSE_KEY placeholder with an active license key associated with your MaxMind account.
https://dev.maxmind.com/geoip/geoipupdate/#Direct_Downloads
CSV-files are not supported!
As documented here.
I have created one SSIS package for data flow and its perfectly working fine for me (with my credentials). However, when its opened by another person with another login ID (credentials) its showing error:
Please see the below screenshot.Looks like its an access error. How can I give access so that anyone can open it.
The error I'm getting is :
the operation failed because the databse manager failed to access either the databse manager configuration file or the database configuration file.
There ware errors while loading the package. See the error list for details.
Error loading Package.dtsx. Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified satte. You may not be
authorized to access this information. This occurs when there is a cryptographic error. Verify that the correct key is available.
Upon searching on net. I think I can set "DontSaveSensitive". However,unable to find out how to do this? Whats are the steps I need to follow?
Link : https://learn.microsoft.com/en-us/sql/integration-services/security/access-control-for-sensitive-data-in-packages
How to resolve this?
Kudos for pinpointing issue. To solve it:
Open project solution from working credentials.
Right click on project.
Go to properties
Change the security level to DontSaveSensitive.
I've answered your question about unable to find out how to do this
Hope this works. Else come back here and we might suggest different approach.
I have taken export of a db from a computer that has auth tables and imported the same in another computer which have the codes in place in htdocs folder. But when I'm trying to access the data, I'm getting error - Rule not found. Please help.
Auth Rule query specified by SiZE cannot be executed.
Also, I don't have any entry in auth_rule table.
In the computer from which I've taken the export, there's also no auth_rule entry.. There I don't get this error.
I need to run a MS Access job as an automated task. I know Access isn't really built for this type of task, but I have MOST of it working except for one, critical part. In short, this is what it's supposed to do:
Generate a PDF report for a user
Generate an email for the user
Attach the PDF to the email
Send the email via SMTP
It works if a user is logged into a desktop session. The process needs to run as an automated process, without requiring a user to be logged in. Using Powershell and the built-in Task Scheduler (Windows 7 Ultimate, 64-bit), I'm able to get it running on schedule. But the Access code fails when it tries to save the PDF. Through experimentation, I learned that I need to save to the "My Documents" folder, and I have the process running as "me", but I keep getting the same error message:
8/18/2014 4:00:17 PM Report Error in <method name>
2302
-1
0
<project name> can't save the output data to the file you've selected.
MTS
So I suspect that if I select the correct location to save the PDF, it will work. Is there a special location that the system and/or Task Scheduler (TS) can save to? Is there a special way to share a folder that it will allow TS to write to it (without requiring a user to be logged in)?
I personally usually save all these types of files/reports into the %TEMP% folder, which seems appropriate for this application since it is only to store it until it is emailed.
I haven't had any permission issues saving into this folder yet.
If you're unfamiliar with %TEMP% you can search for Environ variables and there are usually different useful file paths to common folders used by the system e.g. %APPDATA%,%USERPROFILE%` etc
Thanks for all the input. After exhaustive testing--based on the response from ashareef above--I've demonstrated that it can't be done. I tried saving to the following environment variable locations:
TEMP
APPDATA
LOCALAPPDATA
PUBLIC
USERPROFILE
I also tried:
C:\Users
C:\Temp
C:\Users\<my user name>\Documents
And none of those worked if I set the task to run whether I was logged in or not:
One location does work, but only if I'm logged in and I set the task to run only when I'm logged in:
C:\Users\<my user name>\Documents
To sum up:
Saving a file from Access
Running as a Scheduled Task
Whether you're logged in or not
Is not possible! So here at work, we're going with Plan B. Thanks for your help!