Viewing 15 posts - 1,516 through 1,530 (of 1,957 total)
I suppose if all you wanted was the max price from all the rows in the table or for a selected item, and you HAD to use CASE, you could...
February 6, 2011 at 4:10 pm
Glad to help. Sorry I don't know the answer to your follow up about setting it up on XP.
I think I did once install Win 7 64bit on VirtualBox 32bit...
February 5, 2011 at 5:43 pm
You only need to fill those in if you want the VM to access/be accessible to/from the internet.
If you do, open another dos command prompt on the host and type...
February 5, 2011 at 2:37 am
Ok, so if you want them to be fixed, just change them to use fixed ip address and type in the details you just found.
As long as you dont have...
February 4, 2011 at 6:14 pm
Because you are working behind a router at home, I am assuming that your router acts as a DHCP server (Dynamic Host Configuration Protocol).
This means it assigns IP addresses automatically...
February 4, 2011 at 4:56 pm
Ok, let me try to explain.
CONTEXT_INFO is a place to store a value in your connected session specific to your SPID.
You can think of it like a note stuck on...
February 4, 2011 at 4:33 pm
Argh! No!
I said replace CONTEXT_INFO() with that, not CONTEXT_INFO. they are different!
ALTER TRIGGER [dbo].[UPDATE_EMAIL_IN_HEAT] ON [dbo].[CONTSUPP]
FOR DELETE
AS
DECLARE @ci VARBINARY(128)
--next line had to be a separate statement,...
February 4, 2011 at 4:01 pm
although actually it may be better to do this:
where firstname LIKE '[!-/:-ÿ]%'
which is the set of printable ascii characters excluding 0-9
edit: when i said better i was referring to my...
February 4, 2011 at 12:53 pm
Best not to do it with IN.
Try using LIKE
where firstname not like '[0-9]%'
February 4, 2011 at 12:51 pm
BTW: I just found this article on MSDN that gives a fuller discussion of this topic:
http://code.msdn.microsoft.com/SQLExamples/Wiki/View.aspx?title=AuditOrBypassTriggerExecution
February 4, 2011 at 12:49 pm
My mistake - I hadn't realised you were on an older version, SQL2000 didn't have CONTEXT_INFO() as a function.
You can still do this though:
Anywhere we used CONTEXT_INFO() replace with
(SELECT...
February 4, 2011 at 12:48 pm
UPDATE yourTable
SET yourDateColumn = DATEADD(year,1,yourDateColumn)
WHERE someColumn = someValue
Or something like that - depends what you want to do really...
February 4, 2011 at 11:12 am
Can you clarify how you are accessing the reports over the vpn please?
Are you using a browser on the remote client to connect to the RS site?
Are you using...
February 4, 2011 at 10:22 am
Does this help at all?
;with upvt as
(
SELECT DISTINCT*
FROM @tab as [root_element]
unpivot (a for c in ([elementA],[elementZ])) upvt
)
select distinct 1 as tag,null as parent,root_element as [root_element!1!value],null as [elementA!2!value],null as [elementZ!3!value]
from upvt...
February 4, 2011 at 9:57 am
Viewing 15 posts - 1,516 through 1,530 (of 1,957 total)