Viewing 15 posts - 316 through 330 (of 13,877 total)
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
Don't think so. The customer would be 100 miles around the block and the solution and data itself only existed on the customers server.
No other option than to set...
September 3, 2024 at 7:42 am
Yes, of course.
In fact I would say that you've been going against best practice for those 15 years.
Developing locally with VS and SQL Server and then checking in your changes...
September 3, 2024 at 6:56 am
We do need some more information here.
While you have provided your desired output, can you also provide the input data corresponding with that desired output, so that someone here can...
September 1, 2024 at 7:36 am
I don't know how much it matters, because I always make sure my version of VS is at least as high as the version of SQL Server I am deploying...
August 30, 2024 at 1:05 pm
Are you editing the SSIS project in VS2022?
Have you set TargetServerVersion to SQL Server 2022 in the project's properties?
Have you taken the 'Upgrade All Packages' option to make sure they're...
August 30, 2024 at 10:49 am
Viewing 15 posts - 316 through 330 (of 13,877 total)