all groups > sql server programming > february 2005 > threads for sunday february 20
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003
Posted by Jack at 2/20/2005 11:18:56 PM
Hello,
I am getting this error:
Cannot create a row of size 8068 which is greater than the allowable maximum
of 8060
When updating/added row to SQL 2000 on Windwos 2003.
Thanks for all you help,
Jack
... more >>
Mixing dirived table and subqueries alltogether (long) REPOST
Posted by Henry at 2/20/2005 9:55:24 PM
--
Bemærk venligst, atHi
I'm building an application where the data structure is hierarchical, I have
used 5 tables related with each other throug x.nodeid=x+1.parentid down to 5
levels.
Level5 is containing an extension number (serie).
The point here is to give the user a tool to... more >>
user defined function and syntax question
Posted by nicholas gadacz at 2/20/2005 9:21:03 PM
hello all,
I am tring to build a form building tool inside the database. I know most of
you will say put it in the application layer, but I would like to keep this
text formatting in the database so I only have to write the function once and
our 2 unix server, and one windows server can all... more >>
sql mail
Posted by chinna jambu via SQLMonster.com at 2/20/2005 8:33:28 PM
i created a query which insert rows in to another table, and send mail to
the recepient using sql mail task.
the work flow Success is sending mail even 0 rows inserted into the table.
Is their any way i can send mail only if row insert in to table?
--
Message posted via http://www.sqlmo... more >>
Conditional Join
Posted by Jeronimo Bertran at 2/20/2005 6:22:21 PM
Hello,
I have the following problem...
I am musing ADO.NET with SQL Server. I have a table that stores events
that are linked to different tables.. for example, lets suppose that I
have the following tables : Airplanes, Cars, Trains. Each table is
different, however, events produced ... more >>
SELECT INTO FOR XML AUTO workaround
Posted by Mario Splivalo at 2/20/2005 6:00:54 PM
When I do something like this:
SELECT * FROM someTable FOR XML AUTO, ELEMENTS
for instance, how can I use returned XML string within the SQL server, that
is, pass it to a stored procedure, for instance, or fill in some variable
with it?
Mike
--
"I can do it quick. I can do it cheap. I... more >>
Distributed APP strategies-What to do where is killing me...
Posted by Chad at 2/20/2005 5:37:16 PM
I just read this quote at DevX.Com
"It's generally better to use the stored procedure option to perform the
transaction against the database rather than initiate a transaction on a
Connection object. When possible, you should isolate transactions to the
data tier, because it's the DBMS that... more >>
True or False
Posted by Frank Dulk at 2/20/2005 4:06:06 PM
When creating a Stored, I noticed that SQL not accepts when placing the
value of the field as True or False. Is being True like this same to 0 or
equal to 1 and for the false which value does he take?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
recuperate a database
Posted by Frank Dulk at 2/20/2005 4:04:14 PM
I am needing to recuperate a database .mdf for mine it conspires.
Would anybody know how I make that?
... more >>
New to XML: xsd.exe utility question
Posted by Chad at 2/20/2005 3:54:27 PM
I just read a good article on DevX.com entitled "Store and Retrieve
XML-based Business Objects with SQL Server and .NET" and I decided to give
the example a try. Everything worked fine, I just want to take it a baby
step further.
Here's the article:
http://www.devx.com/dotnet/Artic... more >>
Insert fail
Posted by culam at 2/20/2005 2:47:03 PM
I got an error: "Cannot insert the value NULL into column 'PreScreenAmount',
table 'ccuDev.dbo.LMA_LoanInfo'; column does not allow nulls. INSERT fails.
The statement has been terminated."
Within the table I created this field as: PreScreenAmount DECIMAL(19,4) NOT
NULL DEFAULT 0
Should ... more >>
urgent help needed: error 7342 (full text search problem)
Posted by Timo at 2/20/2005 2:44:31 PM
I would be very grateful for advice or suggestions for the following
problem.
I have had no problem with Full Text Search in SQL2000 on my PC under XP Pro
using the Developers Version of SQL 2000. However, I have created another
copy of the same relatively small (100mb) database on a notebook... more >>
IDENTITY value copy in INSERT statement
Posted by Remco at 2/20/2005 1:49:57 PM
Hello,
I would like to insert the value of an identity column into an other field
during the same insert statement and not by using a trigger.
Sample Table
CREATE TABLE Test (INT DocumentID IDENTITY(1,1), DocumentParentID)
Sample statements NOT working but to indicate what I would li... more >>
Stopping certain applications from connecting to the server
Posted by Vince at 2/20/2005 10:33:58 AM
I was wondering if I could stop certain applications from connecting to the
SQL Server. For instance, under Management (Enterprise Manager), I find
(say) application "XYZ V 1.1". I want to stop this application from
connecting to the SQL Server in the future (deny the connection when it
trie... more >>
Unmatched query
Posted by jaylou at 2/20/2005 8:09:07 AM
Hi all,
I was wondering what the best SQL code is to find all records in table_A
where they do not exist is Table_B
I use
select a.* from Table_A a left outer join Table_b b
on a.ID = b.ID
where b.ID is null
Is the the most efficient way to do this or is there better codsde for this?
T... more >>
SQL Server memory ballooning during mass import
Posted by Mark Rae at 2/20/2005 7:30:52 AM
Hi,
Apologies if this is not the correct newsgroup - I've also posted this
message to the microsoft.public.dotnet.framework.adonet and
microsoft.public.sqlserver.datawarehouse newsgroup...
As part of a datawarehoue application, I have a Windows service which
iterates through a mySQL Data... more >>
Can an adapter handle a stored procedures?!!
Posted by Nab at 2/20/2005 6:51:05 AM
Can someone please help on this issue and tell me how to amend this code:
<WebMethod()> _
Public Function GetRecord(ByVal anyname As String) As DataSet
Dim adapter As New SqlDataAdapter
Dim result As New DataSet
adapter.SelectCommand.Connection = Conn
... more >>
|