all groups > sql server programming > january 2006 > threads for sunday january 1
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 29 30 31
CLR Assemblies
Posted by KH at 1/1/2006 8:05:01 PM
From SQL 2005 docs (type "Designing Assemblies" in the index lookup; bottom
of the page):
Supported .NET Framework Assemblies
Users can refer to the following .NET Framework assemblies in SQL Server
2005 without registering them by using CREATE ASSEMBLY:
custommarshallers.dll
Microsoft... more >>
time out
Posted by Agnes at 1/1/2006 7:31:32 PM
the application run in my office is very well. However, as it move to the
client's company, Timeout and general network error always happend.
We found that the firewall had a default setting "if it detect a idle
connection , it will cut it".
So, if the user open the application and leave it al... more >>
How to force SQL Server to handle all numeric types as doubles?
Posted by Tomas Machala at 1/1/2006 3:11:20 PM
Hi, is it possible to force SQL Server to handle all numeric data types as
doubles? Eg. I have an very simple query:
SELECT 1+1 AS Result
I need SQL Server to work with number 1 as with double and also to return a
result as a double (however it doesn't make any sence in this situation).
Thank... more >>
SBSMONITORING??
Posted by Paul Pedersen at 1/1/2006 3:01:05 PM
What is SBSMONITORING, and why does it refuse the recent SP4 hotfix? (I get
an authentication error.)
... more >>
trigger.
Posted by gary at 1/1/2006 2:46:18 PM
i have 2 tables,
1 = table [A A A] , with column [b b b]
1 = table [C C C] , with column [d d d]
how can i add a trigger to add a row into [C C C] while adding a row into
table [A A A], assuming column [b b b] is same type with [d d d]
thx.
... more >>
online sites
Posted by intermediate at 1/1/2006 1:17:55 PM
What are the good online sites for T-SQL Queries, Joins and stored
procedures?
... more >>
Date format reloaded
Posted by Sharon at 1/1/2006 12:03:41 PM
Hi all.
How can i make sql 2000 server return dd/mm/yyyy instead of mm/dd/yyyy?
I know i can make formatting functions for that, but in this case i need to
set
the sql server locale correctly.
Thanks.
--
Sharon.
... more >>
why deadlock?
Posted by Frank Lee at 1/1/2006 11:46:53 AM
I use the following code to test concurrency.
Following the DDL part.
---DDL
drop table test
go
create table test (
ID int identity(1, 1),
SN int not null default 0,
Nothing char(1) null
)
go
CREATE INDEX IDX_Test_SN ON Test(SN)
go
CREATE INDEX IDX_Test_IDSN ON Test(ID, S... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Sending/Using NULL in sp
Posted by David Chase at 1/1/2006 11:03:27 AM
I am creating a stored proc that will sometimes send the value of a date as
empty(null). For example:
EXEC ef_updContact 1234, NULL
-or-
EXEC ef_updContact 1234, '12/05/2005'
The stored proc then needs to determine if the 2nd parameter is null and
process different commands.
(1) Woul... more >>
Multiple file import SQLExpress
Posted by Dale at 1/1/2006 10:59:59 AM
Hi everyone one,
I'm very new to SQLExpress and I'm having difficulty with a procedure I
found on the net
to import multiple files into a table:
http://www.databasejournal.com/features/mssql/article.php/3325701
The method I'm using is method one.
I've done everything as outlined, howeve... more >>
|