Viewing 15 posts - 5,656 through 5,670 (of 7,608 total)
Starwatcher (10/30/2014)
kenambrose (10/30/2014)
MAKE ALL COLUMNS NOT NULLABLE.
If you can't figure out how to design a schema where that works for your business requirements,...
October 30, 2014 at 11:55 am
ZZartin (10/30/2014)
Robert Mark (10/30/2014)
October 30, 2014 at 11:51 am
It sounds like you need something along these lines:
ALTER TRIGGER [dbo].[trU]
ON [dbo].[tblEvent]
AFTER INSERT
AS
SET NOCOUNT ON;
UPDATE c
SET avbl= CASE
WHEN i.[Desc]...
October 28, 2014 at 3:16 pm
stevemr68 (10/28/2014)
ScottPletcher - This is great but it's showing the 3rd Saturday of the weekend not the second.
D'OH, quite right, sorry. "13" days should be added, not 19. ...
October 28, 2014 at 10:50 am
Yes, "Valued Member", that is basically correct, you do not use parameters like that in a trigger in SQL Server.
October 28, 2014 at 10:41 am
Do you really need/want two separate scripts? You can do this in one (complex) date computation:
SELECT
*,
DATEADD(DAY, DATEDIFF(DAY, 5, DATEADD(DAY, 19, DATEADD(MONTH,...
October 28, 2014 at 10:19 am
The trigger is firing. You must keep in mind that SQL Server only fires a trigger once per statement, no matter how many rows are INSERTed (UPDATEd or DELETEd).
Therefore,...
October 28, 2014 at 10:03 am
To check for anything other than only digits (0 thru 9), use:
NOT LIKE '%[^0-9]%'
for example:
SELECT
TextID,
CASE WHEN TextID NOT LIKE '%[^0-9]%' THEN 'OK'...
October 27, 2014 at 10:25 am
Everyone be aware that this is a school assignment; reposted perhaps to avoid disclosing that fact and get a "complete solution" instead of just helpful tips.
October 24, 2014 at 3:37 pm
dariuslearn (10/23/2014)
ScottPletcher (10/23/2014)
In the SELECT list, after the original column name or expression, you can add "AS new_column_name", and...
October 23, 2014 at 3:37 pm
Sorry [that did seem rather obscure for a starting class on SQL].
In the SELECT list, after the original column name or expression, you can add "AS new_column_name", and the query...
October 23, 2014 at 2:59 pm
I guess rename one of them. But better to avoid using temp tables in a trigger unless absolutely necessary.
The triggers probably need re-written. Post them here and we...
October 23, 2014 at 2:51 pm
You can use system procedure:
sp_rename
to rename a column. The general format is like this:
EXEC sp_rename 'table_name.existing_column_name', 'new_column_name', 'COLUMN'
October 23, 2014 at 2:48 pm
patrickmcginnis59 10839 (10/23/2014)
ScottPletcher (10/23/2014)
arnipetursson (10/23/2014)
ScottPletcher (10/22/2014)
October 23, 2014 at 1:54 pm
I suggest gen'ing the MOVE clauses directly from @tables, ignoring the count. Just concatenate all the results into a RESTORE statement, and run that statement dynamically. For example:
...existing...
October 23, 2014 at 12:57 pm
Viewing 15 posts - 5,656 through 5,670 (of 7,608 total)