Viewing 15 posts - 91 through 105 (of 159 total)
I was hoping I could get a sample query with my data.
January 12, 2011 at 4:10 pm
Picture perfect my friend. Thank you very much!
October 13, 2010 at 1:23 pm
Thanks! Insert is failing Let me debug.
Insert Error: Column name or number of supplied values does not match table definition.
October 13, 2010 at 1:13 pm
Excellent, anyway to put the DB names inside the output?
October 13, 2010 at 12:49 pm
Jeff, members like you really make this site great!
August 7, 2010 at 6:58 pm
I ran the DBCC's on the system DB's. Stupid question. Where do I find the output? In my query window I am getting the command completed successfully.
July 1, 2010 at 5:19 am
SELECT @@VERSION
--Microsoft SQL Server 2005 - 9.00.3042.00 (Intel X86) Feb 9 2007 22:47:07 Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition on Windows NT 5.2...
July 1, 2010 at 5:03 am
Two things jump out at me. Any ideas?
Event Type:Error
Event Source:MSSQL$xxxxx
Event Category:(3)
Event ID:19019
Date:6/30/2010
Time:10:33:38 PM
User:N/A
Computer:xxxxx
Description:
[sqsrvres] CheckServiceAlive: Service is dead
Event Type:Error
Event Source:MSSQL$xxxxx
Event Category:(2)
Event ID:602
Date:6/30/2010
Time:10:33:16 PM
User:N/A
Computer:xxxxx
Description:
Could not find an entry for table...
July 1, 2010 at 4:37 am
I understand that. I scripted out the table structure above which shows the data lengths. I was showing the max length of the data did not exceed 8000...
June 15, 2010 at 5:07 am
What information do you need? The information I provided you was valid.
June 15, 2010 at 4:50 am
All the information you need should be there. I am running:
DECLARE @To int, @From int, @LogonID int
select @To=3000064, @From=500006, @LogonID=1
INSERT INTO ClientXAttributeText (clientid, attributeid, attributevalue, insertedby)
SELECT @To, AttributeID, AttributeValue,...
June 15, 2010 at 4:39 am
Nope, that is it. here is the table structure. It's truncating at AttributeValue column.
select max(len(AttributeValue)) from ClientXAttributeText
--3167
USE [Reference]
GO
/****** Object: Table [dbo].[ClientXAttributeText] ...
June 15, 2010 at 4:28 am
Viewing 15 posts - 91 through 105 (of 159 total)