Viewing 15 posts - 511 through 525 (of 49,571 total)
January 3, 2018 at 6:58 am
Unlikely to be a network problem. SQL's behaviour on data modifications is all or nothing. If an insert fails, it fails, it doesn't succeed and leave some columns NULL.
January 3, 2018 at 6:14 am
The easiest (and safest) is to assume that all dynamic SQL is vulnerable, unless proven otherwise.
January 3, 2018 at 6:11 am
Anything that concatenates user input into a string and executes the resulting string is vulnerable. That includes user input that got stored in the database and then used to build...
January 3, 2018 at 6:00 am
January 3, 2018 at 5:58 am
January 3, 2018 at 5:13 am
https://weather.com/weather/today/l/USFL0228:1:US
Bridges are supposed to start freezing sometime...
January 3, 2018 at 5:05 am
No, that's declaring variables. (and no idea what the unknown language is doing)
Please have a look at the T-SQL documentation for creating procedures: https://docs.microsoft.com/en-us/sql/t-sql/statements/create-procedure-transact-sql
January 3, 2018 at 12:27 am
January 2, 2018 at 8:50 am
Please post table definitions and sample data (as INSERT statements) if you want a query written.
If you just want advice, then you can use ROW_NUMBER, partition by ContactID...
January 2, 2018 at 8:38 am
Collation won't allow SQL to return NOT ALLOWED if you filter for ALLOWED.
There's no filter for 'APPROVED' vs 'NOT APPROVED' in the WHERE clause, so SQL will return...
January 2, 2018 at 8:35 am
Table definitions please (as CREATE TABLE statement). And, if you look at the link, sample data is best as INSERT statements, so that testing queries is easy.
What is the...
January 2, 2018 at 8:32 am
Your preference.
If you drop the lookup table, make sure that you add constraints to the column. "Integrity enforced in the application" = "Garbage data eventually"
Also consider that ...
January 2, 2018 at 8:16 am
As Piet pointed out in your previous thread, people in general are not too keen on downloading excel spreadsheets. Please can you list your sample data and expected results as...
January 2, 2018 at 8:11 am
Viewing 15 posts - 511 through 525 (of 49,571 total)