all groups > sql server programming > march 2005 > threads for sunday march 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 29 30 31
Trimming Padding spaces
Posted by Designer at 3/20/2005 11:35:03 PM
I have a table with 17 fields out of which 8 are of Char datatype. While
retrieving the records from this table, found that all the fields with char
datatypes are filled with padding zeros. Because of this reason, my
application doesnt allow me to edit any of this field values.
Kindly prov... more >>
Dates & Stored Procedure
Posted by ayman at 3/20/2005 8:55:02 PM
Hi
I want to know how can i Pass tow Dates to Stored Procedure in sql server
2000 by using vb6.
here below my code i used northwind database ,when i run the code i got
error in the cmd.excute .
i thing my problem in passing date, can any when tell me what is the problem
Private Sub Co... more >>
Database Size - how to get
Posted by Just D. at 3/20/2005 5:58:26 PM
Could anybody remind please, how can I get the current database size having
the full access to this database and server? What's the SQL query?
What else helpful about the current database can I get using queries? Load,
statistics, what else?
Thanks,
Just D.
... more >>
Multi row key updates?
Posted by Gary K at 3/20/2005 5:27:01 PM
I have been using MS Viso (the one that integrates with Visual Studio .NET)
to generate ddl script for my database. It uses the following update trigger
code to enforce the referential integrity, but will only execute the code for
one row updates, it will throw an error for multi-row updates. ... more >>
No way out Please help --- second post
Posted by Tanweer at 3/20/2005 3:29:03 PM
I am trying to write a query which when run can tell what courses a
department require and what courses were taken by the employee
/*
create table #temp(people_id int,course_taken varchar(50),
date_taken datetime,full_name varchar(50),
assign_id int,dept_taken varchar(50),jobcode_taken ... more >>
Creating Queries
Posted by JLong at 3/20/2005 3:01:04 PM
Is is possible to create a query to do something like
this:
For each "Record" from {SELECT field1 FROM table1}
SELECT * FROM table2
WHERE field2='Record'
next "Record"... more >>
tcp/ip connection work for remote maintenance
Posted by TJS at 3/20/2005 1:57:22 PM
trying to connect to remote MSDE database to manage it
--msde instance with DISABLENETWORKPROTOCOLS=0 is installed and working.
--local connection works to confirm username and password
--firewall ports are configured correctly and listening
--remote telnet connection works to confirm ip and ... more >>
Best place for company info?
Posted by Brett at 3/20/2005 1:02:56 PM
Say I have 4 applications which each use their own database. There are two
SQL Servers involved and the databases are split across servers like this:
SQLServer1
- BigApp1
- SmallApp1
SQLServer2
- BigApp2
- SmallApp2
The above helps balance load. If I want to store inf... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to use text in row option?
Posted by Showjumper at 3/20/2005 1:00:35 PM
I have to store in some cases more than the 8000 character limit. And i have
read about the text in row option. Seems like that will do what i need. But
i dont really get how i enable it. I have searched google and google groups
for some idea as how to enable it - and all i find is EXEC sp_tab... more >>
Passing Dates to Stored Procedure
Posted by ayman at 3/20/2005 12:11:02 PM
Hi
I want to know how can i Pass tow Dates to Stored Procedure in sql server
2000 by using vb6.
I need samplr code
Best regards
ayman ... more >>
Programming Tool
Posted by Fao, Sean at 3/20/2005 11:53:23 AM
I wasn't really sure where to post my question, so if I'm off-topic,
could you please refer me to a more appropriate newsgroup?
I'm quite new to MS SQL Server 2000 stored procedures development and
I'm finding the Enterprise Manager to be quite difficult and cumbersome
to work with. I'm looki... more >>
Triggers and office applications
Posted by Mark at 3/20/2005 5:03:02 AM
Hi,
Can anyone tell me if it is possible to run an office application such as MS
Access as a result ofsay an insert trigger occurring. Many thanks in advance.
Mark
... more >>
Insert row and retrieve identity using stored procedures
Posted by Carlos Santos at 3/20/2005 4:27:02 AM
Hello,
I'm using this stored procedure:
<code>
CREATE Procedure ProductInsert
(
@ProductID int OUTPUT,
@CategoryID int,
@Reference nvarchar (50),
@Name nvarchar (50),
@SmallImage nvarchar (50),
@Image nvarchar (50),
@OnSale bit,
@UnitCost money,
@Stock int,
@Description nvarchar (3... more >>
sp_cursoropen + RDO
Posted by Dave Slinn at 3/20/2005 3:24:55 AM
Our VB6 app uses RDO to access our SQL server. I have created a stored
procedure that performs a union of a couple of select statements and returns
either 1 or 0 records, depending on the parameters passed in and the data
retrieved.
I call this sproc using the rdoConnection object's OpenResul... more >>
|