Viewing 15 posts - 9,916 through 9,930 (of 26,489 total)
Luis Cazares (8/27/2012)
I have the...
August 27, 2012 at 1:53 pm
Rod at work (8/27/2012)
August 27, 2012 at 9:09 am
raghuldrag (8/27/2012)
friends year is'2011-2012' data type is"nvarchar"while i am paasing inputs on procedure its shows error of
"error converting datetime from character string."
please give me any suggestion???
declare @DumbDateParameter nvarchar(9)...
August 27, 2012 at 8:35 am
haiao2000 (8/24/2012)
August 24, 2012 at 4:26 pm
Jeff Moden (8/24/2012)
Sean Lange (8/24/2012)
CREATE FUNCTION RemoveLeftCharPatIndex
(
...
August 24, 2012 at 4:20 pm
Actually, you need a little more:
DECLARE @ErrorMum INT
DECLARE @ErrorMessage VARCHAR(200)
DECLARE @Severity INT
DECLARE @State INT
BEGIN TRY
BEGIN TRAN BACKUP101
IF OBJECTPROPERTY(OBJECT_ID('dbo.TableA'),'TableHasIdentity') = 1
...
August 24, 2012 at 3:54 pm
Sean Lange (8/24/2012)
if EXISTS
(
select * from sys.columns
where object_id = object_id('TableA')
and is_identity = 1
)
SET IDENTITY_INSERT TableA ON
LOL or use Lynn's. His is probably a little better way to...
August 24, 2012 at 3:49 pm
Then you may want something more like this:
DECLARE @ErrorMum INT
DECLARE @ErrorMessage VARCHAR(200)
DECLARE @Severity INT
DECLARE @State INT
BEGIN TRY
BEGIN TRAN BACKUP101
IF OBJECTPROPERTY(OBJECT_ID('dbo.TableA'),'TableHasIdentity') = 1
...
August 24, 2012 at 3:44 pm
Not saying it is a hack, of course I haven't checked the link/article you mention. I am speaking from experience. I have backed up to a file share,...
August 24, 2012 at 2:44 pm
infodemers (8/24/2012)
Yes I did get this resolved. It is kind of an ugly work around. The error is because I am getting...
August 24, 2012 at 2:38 pm
Rod at work (8/24/2012)
August 24, 2012 at 2:30 pm
The following code on my laptop running SQL Server 2005, 8 GB RAM, 8 cores, x64 processor:
SELECT TOP 1000000
SomeString = REPLICATE('0',ABS(CHECKSUM(NEWID()))%5) --...
August 24, 2012 at 2:12 pm
Jeff Moden (8/24/2012)
tyson.price (8/24/2012)
Do you think this:
SELECT SUBSTRING(@Source,PATINDEX('%[^'+@Char+'X]%',@Source),1000)
out performs this:
select REPLACE(LTRIM(REPLACE('000temp001', '0', ' ')), ' ', '0')
"A Developer must not guess... a Developer must KNOW!" 😉 Test it. ...
August 24, 2012 at 1:57 pm
You don't say how many disks are used in the RAID-5 nor how much space is available. Your comment about the current database being about 15GB tells me that...
August 24, 2012 at 1:14 pm
I have worked with systems where the phone number was broken out to a separate table. The table was tied to a specific individual and the numbers had attributes...
August 24, 2012 at 12:48 pm
Viewing 15 posts - 9,916 through 9,930 (of 26,489 total)