Viewing 15 posts - 2,401 through 2,415 (of 2,469 total)
If your question is only regarding relational data then BOL says:
[INTO]
Is an optional keyword that can be used between INSERT and the target table.
However, if it is about "analysis...
May 4, 2005 at 1:19 pm
My job's not one of moderator but it would be NICE to keep the tone even & friendly and not resort to personal comments - everybody's entitled to an opinion/viewpoint...
May 4, 2005 at 12:58 pm
plumber, electrician or a database developer/administrator - in this constantly changing/evolving world - DATABASES ARE INDISPENSABLE & HERE TO STAY
May 4, 2005 at 7:39 am
The bottom line - it's all about keeping the cash registers ringing constantly - the question to ask is - if you were a company (pick corporate giant) & you...
May 4, 2005 at 6:07 am
what about vb ?! (have never worked with Access so can't comment on it)
May 3, 2005 at 6:24 am
Have you tried using a "Replace" function?! Either directly with the ~ character or with the acii value (126) ?!
May 2, 2005 at 6:49 am
Ian seems to have other constraints that he cannot use within an UDF - you can use a select statement to return recordsets from the procedure & I've used concatenated...
April 29, 2005 at 5:34 pm
Ian - here's some stuff that might help you start looking in the right direction....(re:BOL)
Returning Data from a Stored Procedure
Microsoft® SQL Server™ 2000 stored procedures return data in four forms:...
April 29, 2005 at 12:06 pm
Companies can rely on imported slave labor so they treat you like dirt - employees know that if they lose this job then there are either zillions of "slaves" ready...
April 29, 2005 at 11:48 am
I once interviewed for a job where the tech lead actually told me that he considers people who have jumped several jobs over as many years more valuable because it...
April 29, 2005 at 9:46 am
eg: this may help get you started.....
CREATE PROCEDURE MyProcedure
@RowIDInt,
@NumericVal Int
AS
DECLARE @ReturnVal Int
BEGIN
UPDATE MyTable
SET NumericVal = NumericVal + @NumericVal
...
April 29, 2005 at 9:30 am
Ian - you can get more than a success/failure return from a stored procedure - you can get back a single value; a recordset - whatever you want!
April 29, 2005 at 9:19 am
You use a timestamp field so that changes to a row can be detected......
What is the advantage of this as opposed to using - say - a rowlock ?!?!
April 28, 2005 at 8:47 am
Chris/Remi - I have several questions:
1) when I go to specify a datatype - I do not see "rowversion" in the dropdown.
2) BOL specifically says "To record the times data...
April 28, 2005 at 7:52 am
Viewing 15 posts - 2,401 through 2,415 (of 2,469 total)