Viewing 15 posts - 91 through 105 (of 13,659 total)
A typical customer would be a small production company where in the past a consultant simply developed on one of the servers within the clients network. Back then it...
September 13, 2024 at 5:00 pm
In SSMS, you can right-click on any database in the 'Object Explorer' window and get Properties. Within the Properties window, there is a Files node - click on that and...
September 13, 2024 at 10:10 am
If you have
SELECT x / y
and y is zero, that is an error. There is no solution as such, only a choice about what you would like to return in...
September 11, 2024 at 10:18 am
You appear to be suggesting that there is a standard format for AML files ... which is fine, but the number of people here who know both how to import...
September 10, 2024 at 8:23 am
Prove to the client that the zeros are there. Do not use Excel as a data import tool, it messes with the data before you even see it.
September 6, 2024 at 5:54 pm
MySQL and SQL Server are not the same thing. The script you have provided looks like a SQL Server script, so if you are attempting to run it in MySQL,...
September 6, 2024 at 3:39 pm
Just a quick question: are you opening the .CSV in a text editor (eg, Notepad ++)?
If you open it in Excel, Excel will 'helpfully' guess the datatype to be int...
September 6, 2024 at 2:10 pm
I imagine you already searched the Internet before posting, but this looks like it might work
September 6, 2024 at 10:02 am
As long as the datatype of the SSN remains as string throughout the export, this should not be happening.
Somewhere in your process, it is being treated as an INT and...
September 6, 2024 at 9:49 am
Is a pop up you're getting with the first post? I don't know I've seen a "are you sure" message.
I do get the frustration with a timeout or error...
September 5, 2024 at 11:38 am
Sounds like you need to implement dynamic grouping within the report. I've never tried to do that, so I'm not sure whether it's even possible.
Alternatively, if your report is calling...
September 5, 2024 at 11:31 am
Adding DISTINCT would make it 20 rows.
Why does your codes table contain duplicates?
September 3, 2024 at 11:41 am
Like this? Returns 21 rows, so maybe not quite!
SELECT *
FROM #Codes c
WHERE EXISTS
(
SELECT 1 FROM #Data d WHERE d.Standard = c.Standard
);
September 3, 2024 at 11:39 am
Okay, let me rephrase the question: What in you opinion should then be installed on that client (the one RDP'ed against) to get a workable development setup?
And yes, in...
September 3, 2024 at 9:36 am
Viewing 15 posts - 91 through 105 (of 13,659 total)