Viewing 15 posts - 5,986 through 6,000 (of 13,468 total)
You didn't take the clients business model into consideration;
the SBS solution is ideal for small businesses; minimal IT staff, and all that.
you should recommend that they get the SBS Premium...
February 4, 2012 at 6:08 am
learning how triggers work is absolutely valuable, so continue what you are doing.
you really need to grasp the use of the INSERTED and DELETED tables , and how you...
February 4, 2012 at 4:41 am
there's a quick fix for that, though; you can simply ALTER all your procedures. which will fix the sysdepends; if everything was rebuilt correctly, your dependencies are up to date.
note...
February 3, 2012 at 2:41 pm
jcb (2/3/2012)
You are right, no verbatim literal strings to VB.net...sorryBut you can use:
Dim s as String _
= "string1" _
& "string2" _
& "string3"
😛
if you are using 3.5 Framework or above(or maybe...
February 3, 2012 at 12:46 pm
Steve_o (2/3/2012)
Thank you for the link, Jason.This is partly what I was looking for. I had wanted to provide even more in-depth info if possible.
Jason thanks for the salute...
February 3, 2012 at 11:56 am
i do something similar for comparing schemas and proc/view/function definitions, but i do it in an application, instead of as a procedure;
my logic: i want to compare functional definitions; i...
February 3, 2012 at 11:30 am
nope, EVERYTHING is logged, whether simple mode or FULL; it's just simple mode commits the changes right away and issues a check point.
you could consider having the procedure do it's...
February 3, 2012 at 9:48 am
a related post from long ago implies the bar code font had to be installed on the client?
that part i'm not sure, but Gianluca and i slapped together an example...
February 3, 2012 at 9:19 am
i wrapped it with a BEGIN / END to mark the limits of the trigger, and it seems to work fine.
based on something in my snippets, i added some extra...
February 3, 2012 at 5:32 am
the trigger, corrected for the syntax issue, seems to work fine for me; could it be you didn't reset the data back to teh original state when you were testing...
February 3, 2012 at 4:48 am
two tables, the INSERTED and DELETED tables are virtual tables that exist inside the trigger.
they are the data being inserted/updated/deleted into the table the trigger exists on...in your case,dbo.invoice.
they...
February 2, 2012 at 2:11 pm
a WHERE statement is only valid with a SELECT,UPDATE or DELETE command.
you can insert with either values, or a select statement.
insert into tbTasks_New( AssignedToId)
values('Employee')
--OR
insert into tbTasks_New( AssignedToId)
SELECT
Employee
FROM YOURTABLE
where
Owner...
February 2, 2012 at 1:18 pm
when you add a foreign key, all the pre-existing values are checked in the child table to make sure they exist/are valid in the referenced table.
if values exist that violate...
February 2, 2012 at 1:09 pm
declare @val varbinary(max)
SELECT @val = HashBytes('MD5','123456')
print @val
--0xE10ADC3949BA59ABBE56E057F20F883E
SELECT
CASE
WHEN @val = HashBytes('MD5','123456')
THEN 'True'
ELSE 'FALSE'
END
February 1, 2012 at 12:21 pm
simple syntax error.
queryout c\test.txt
i think that should be c:\test.txt; just missing the colon.
February 1, 2012 at 10:50 am
Viewing 15 posts - 5,986 through 6,000 (of 13,468 total)