Viewing 4 posts - 1 through 4 (of 4 total)
If there's no start transaction specified won't the code fail on the rollback?
January 25, 2011 at 12:35 pm
Here's a UDF that also removes extraneous spaces.
ALTER FUNCTION [dbo].[udfCamelCase]
(
-- Add the parameters for the function here
@VStringvarchar(1000)
)
RETURNS varchar(1000)
AS
BEGIN
-- Table used to get the words in the string
DECLARE @PartTable table (StringPart...
October 19, 2010 at 9:22 am
While you may not be able to use SELECT <columnlist> INTO <table> with table variables it's possible to use:
insert@table
selectcol1, col2...
from someTable
wheresomeColumn = someValue;
To...
April 15, 2010 at 3:03 pm
I was having the same problem. I opened the data source designer and change the provider to System.Data.SqlClient (default is OleDB...). I also "saved" the password (don't know if that...
August 25, 2008 at 4:39 pm
Viewing 4 posts - 1 through 4 (of 4 total)