Viewing 15 posts - 3,601 through 3,615 (of 13,874 total)
And I just logged in to respond to your original message! 🙂
June 3, 2019 at 2:21 pm
How can we resolve this issues without changing any code?
Your options are limited.
Reducing the length of one or more of the underlying table columns is the best idea that comes...
May 31, 2019 at 12:48 pm
there are thousands . . . . can I exclude them in the where clause by using WHERE LEN(PROD_ID) - LEN(REPLACE(PROD_ID, '-', '')) > 1 ??
That's how...
May 30, 2019 at 11:00 pm
I get that error when i run my code against a very large table. Most Prod_IDs have two dashes. I want to pull the value between the dashes. This...
May 30, 2019 at 10:50 pm
SELECT ...
FROM ...
WHERE @SomeTime >= StartTalk AND @SomeTime <= EndTalk
May 30, 2019 at 4:31 pm
Try this
DROP TABLE IF EXISTS #SomeTable;
CREATE TABLE #SomeTable
(
Id INT
,EventId INT
,A VARCHAR(20)
,B VARCHAR(20)
...
May 29, 2019 at 10:49 pm
I didnt find an option in sql server management studio to generate insert scripts for data from an existing table.
There is an option, but it's well...
May 29, 2019 at 10:32 pm
Can you briefly explain why this is required?
And if there are three rows of source data, what do you want to see?
May 29, 2019 at 10:24 pm
@Phil Parkin When you say put the source code into the project, do you mean the dll? They exist in the assemblies folder. Or do you mean the actual...
May 29, 2019 at 7:52 pm
You need to put the source code for the assembly into your database project. It is part of the build.
May 29, 2019 at 6:35 pm
If start date is 1/1/2019 and end_date is 5/5/2019 and attended_day is Monday, which date should be used?
May 29, 2019 at 5:24 pm
As you have no access to the source database and no way (in code) of identifying rows which have recently been added, modified or deleted, you are in a very...
May 29, 2019 at 4:01 pm
Did you also run
EXEC sp_configure 'remote access', 1
GO
RECONFIGURE ;
GO
May 29, 2019 at 1:35 pm
Presumably, you mean a run-time syntax error, because I see no other syntax error there?
Which specific command generates the error?
Can the select @user part of the query ever return more...
May 28, 2019 at 6:58 pm
If the question was just to convert union into join - I would have gone with full join with coalesce function -though this will not work in the view...
May 28, 2019 at 3:35 pm
Viewing 15 posts - 3,601 through 3,615 (of 13,874 total)