Viewing 15 posts - 1,741 through 1,755 (of 2,860 total)
What I would strongly encourage you to do is get a test instance set up so you can try out the different methods suggested. The main reason to get a...
June 29, 2020 at 2:10 pm
So was able to replicate the issue!
My steps were to first create the database, create the stored procedure named mmytest. Next, changed Page Verify to NONE, took...
June 26, 2020 at 10:12 pm
Had not thought about that road. Here is what that script produced:
CAST([name] AS VARBINARY(MAX)) = 0x23006D0079007400650073007400
CAST('#mytest' AS VARBINARY(MAX)) = 0x236D7974657374
Other than the extra zeros they match.
These are not...
June 26, 2020 at 9:51 pm
Ok I am completely stumped on this one. I was trying to re-create the object using different flavors of dynamic SQL and casting and converting hoping I could trick SQL...
June 26, 2020 at 9:37 pm
To add to what Phil said, the error you got seems to indicate the problem:
Bulk load failed due to invalid column value in CSV data file Jobs.txt in row 477,...
June 26, 2020 at 8:16 pm
Oh that is a challenging one then. I was just trying to figure out how to reproduce that.
As a thought, I am wondering if there might be some character before...
June 26, 2020 at 8:09 pm
Just so I understand things right, you are asking if you can filter the rows from table A that are replicated based on specific criteria? if so, this is entirely...
June 26, 2020 at 7:46 pm
https://docs.microsoft.com/en-us/ef/core/modeling/entity-properties
Reading through that it sounds to me like EF doesn't support excluding columns when reading the database side of things BUT quick googles indicate that you can exclude a column...
June 26, 2020 at 5:07 pm
I expect that is possible, but it would be messy to do and error prone and I expect difficult to maintain.
When doing changes like this, my preference is to make...
June 26, 2020 at 4:50 pm
My guess with this is not a problem with the stored procedure naming but more with your permissions.
I just executed the following against a SQL Server 2016 instance and it...
June 26, 2020 at 4:39 pm
This is a double post. Did none of the answers in the previous thread help?
The query is identical...
Link:
https://www.sqlservercentral.com/forums/topic/need-help-with-sql-code
June 26, 2020 at 3:42 pm
I think the first step to troubleshooting this is knowing what error you get. Is it that it doesn't like your username/password or is it a TCP/IP error or a...
June 26, 2020 at 3:41 pm
I am guessing you mean a SQL Server service pack update, right?
If so, have you tried going to the folder it extracted the data to and looking for a "setup.exe"...
June 26, 2020 at 3:37 pm
A test environment is good for this and for other things too.
If you want to deploy a report for an end user to test (for example), this works great! Or...
June 25, 2020 at 9:55 pm
As to what is in the logs, that I am not sure. I don't know what specific error messages will pop up, but the log will tell you exactly what...
June 25, 2020 at 9:03 pm
Viewing 15 posts - 1,741 through 1,755 (of 2,860 total)