Viewing 15 posts - 1 through 15 (of 595 total)
I sent them an email in regards to SQL Server connections
So you sent yourself an email? The website for this app is literally in your bio. By all means...
December 13, 2021 at 8:20 am
Here's a resource with some answers
Essentially though the User!UserID property is what you need to get you started. You can just pass whatever you need from that into the...
December 1, 2021 at 9:00 am
You have a couple of syntax errors regarding extra commas/strings etc.. Try the following...
F OBJECT_ID('tempdb..#TempData')IS NOT NULL
DROP TABLE #TempData
;WITH CTE(SrNo , InvoiceDate , InvoiceNo , PayerName ,...
November 18, 2021 at 10:22 am
GROUP BY/COUNT DISTINCT ignores NULL in a column, so you probably have NULLs in your UniqueClaimID column.
Try this
SELECT COUNT (DISTINCT ISNULL([UniqueClaimID], '0')) AS UniqueClaimID, ProvOrgNm AS ProvOrgNm
FROM...
October 29, 2021 at 6:28 am
From the download site:
Microsoft SQL Server 2012 service packs are cumulative updates and upgrade all editions and service levels of SQL Server 2012 to SP3. This service pack contains up...
October 22, 2021 at 1:11 pm
You need to specify your encoding, at the moment you are encoding using $Null. So change this:
# Create the XML file.
$xmlWriter = New-Object System.XMl.XmlTextWriter($fullFilePath,$Null)
To this:
October 21, 2021 at 8:29 am
What i dont understand is that you can create a Customer Dimension that also directly has the Geography information. So bascially add the Geography columns to the Customer Dimension...
September 22, 2021 at 6:05 am
Correct in original script... It falls thru to:
# Message stating no data to export. Write-Host "There is no data to export."
Thanks.
Did you look at the link I sent? Try...
September 20, 2021 at 4:52 pm
So the issue is still that your evaluation is saying you have no rows? Or is is something else? If the former have a look at the answers on the...
September 20, 2021 at 2:09 pm
I picked 2 fields in the table and it displayed them:
System.Data.DataRow 11-371517-582-3-02 2VAK
Well, it displayed one of them. It is telling you that one of the "fields" is a ...
September 20, 2021 at 12:49 pm
any ideas why script not working?
Thx.
What is the output of the debug script I provided above?
September 20, 2021 at 8:52 am
What do you get if you have Write-Host $items after the invoke-sql ? Also, change the "SELECT *" to use the actual columns that you need.
Another thing you could try...
August 18, 2021 at 8:49 am
I’ve inherited a query that on first glance should be re-written. The main part of which is performing an update on a table (200m+ rows) in a while...
April 21, 2021 at 8:08 am
Viewing 15 posts - 1 through 15 (of 595 total)