all groups > sql server new users > november 2005 > threads for november 15 - 21, 2005
Filter by week: 1 2 3 4 5
Inputting data in a user-friendly way
Posted by James_101 at 11/21/2005 7:16:13 AM
I develop intranet-based training that connects to a database. My training
products are sold to customers. Because of a large customer, I am trying to
replicate an Access database (used in the past) to SQL Server.
I obtained the developer edition of SQL Server 2000 and have developed a new ... more >>
QUERY ANALYSER MYSTERY
Posted by James at 11/20/2005 12:27:29 PM
Hi,
If anyone can explain why this is happening, it would be greatly =
appreciated:
Problem Description:
1. Within SQL SERVER ENTERPRISE QUERY ANALYSER, an SQL statement is =
entered=20
and executed. No results are returned.
SELECT ID FROM PRODUCT_TABLE WHERE=20
ID NOT IN (SELECT ... more >>
Reporting Services
Posted by James_101 at 11/19/2005 6:28:02 PM
I develop computer-based training with a database for customers. The
database works with the computer-based training piece to store user results.
I am currently trying to replicate an Access database in SQL Server. For
large customers, Access is no longer adequate.
I obtained the devel... more >>
Resotre dropped tables
Posted by Loui Mercieca at 11/19/2005 1:46:51 PM
Is there a way to restore a dropped table???
... more >>
How do I get Northwind?
Posted by middletree at 11/19/2005 12:20:56 AM
Like a lot of people, I downloaded and installed the free Express versions
of SQL Server 2005 and Visual Web Developer (for ASP.NET). I'm walking
through one of the Walkthrough tutorials that came with the Web product, and
in the beginning it tells me that the Northwind database is a prerequi... more >>
Triggers in 2005, they changed it <GGGG>
Posted by Bob at 11/17/2005 6:13:57 PM
Been doing triggers for years in sql 2000 now I find I got triggers that =
worked in a previous versions but I can no longer just pick up and =
paste my code in sql 2005 triggers. One sample.
I'm in mydb on myserver and have a table mytable with two fields =
LastupdateOn and LastUpdateBy, I wan... more >>
passing values
Posted by David Kennedy at 11/17/2005 1:38:32 PM
Hi,
Any help would be greatly appreciated
Can anyone give me a detailed example?,I cant get this to work
I have stored procedureA which has one input and one output variables.
I also have stored procedureB which takes in the value of the output
variable from stored procedureA and performs a ... more >>
updating field with specific date?
Posted by r at 11/17/2005 1:04:38 PM
How do I update a date field to reflect a specific date? My field is
formatted at smalldatetime.
I've tried:
UPDATE dbo.Dealers
SET dbo.Dealers.BillQ2 = 2005/11/14
FROM dbo.Dealers, aipdn.qtr2
WHERE dbo.Dealers.DealerCode = aipdn.qtr2.DealerCode
And I've tried it as 11/14/2005 also.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Sql server management studio - no create trigger button?
Posted by Bob at 11/17/2005 12:09:59 PM
Had a create trigger button that was east to use in Enterprise manager,
Don't see it in the standard buttons in the new 2005 management studio. Was
that functionality removed? If not where is it.
Thanks for any help,
Bob
... more >>
Help Please!! Job depends on it!!
Posted by Ray at 11/17/2005 11:06:05 AM
Can anyone tell me how to remove a comma ',' from a text field? I am coping
records to a csv and it is separating my text field into two columns when it
finally reaches the CSV. SQL Server 2000 SP4. It is also wrapping some
rows to 2 or 3 lines.
My query I am using is:
Select notes
fro... more >>
copy files, create folder with sql
Posted by Sam at 11/17/2005 12:00:00 AM
is their a way in sql code to do jobs like copy files on disk, create
folders ect...?
... more >>
Remove Comma from a Text Field
Posted by Ray at 11/16/2005 2:50:41 PM
Can anyone tell me how to remove a comma ',' from a text field? I am coping
records to a csv and it is separating my text field into two columns when it
finally reaches the CSV. SQL Server 2000 SP4. Txs.
Select notes
from rn_appointments
results:
Col 1 Col2
How do y... more >>
How to reuse autonumber that has been delete?
Posted by eslim at 11/16/2005 2:18:50 PM
I have a field that is set to autonumber (identity type). As records have
been deleted, i found that new inserted records does not reused the number
(autonumber).
Any way to solved it???
--
xxx... more >>
Scan data into SQL Server 2000?
Posted by John at 11/16/2005 1:26:57 PM
Hello. Please forgive me if this post is not relative to this newsgroup and
if someone could advise which group I should post this in I would
appreciate.
Does anyone know or have any ideas on recommended software or methods in
capturing data from scanned paper documents into a SQL Server 2000... more >>
Copying data and indexes
Posted by Jaime Lucci at 11/16/2005 10:59:34 AM
Hi everyone!
How can I do to copy the data and the indexes from an existing table on a
database to a new table in another database?
I've tried with select * into base1.table1 from base2.table2, but it only
copy the data and not the indexes.
Can I do it by code? I'm trying to avoid the use... more >>
grant permissions
Posted by Sam at 11/16/2005 12:00:00 AM
is their any code for granting permissions
to all objects?
sam
... more >>
Help with Len
Posted by Arturo Iñiguez at 11/15/2005 2:17:03 PM
Hi Group
I interest count the characters in the field (string), because, the result i
need whit 2 characters i.e.
ALCOCER = 7
I need
ALCOCER = 07
If the name is has more than 10 characters.
Tnks... more >>
SQL Query
Posted by Aleks at 11/15/2005 10:34:07 AM
I have one recordset with multiple values, I need to retreieve those values
but instead of creating multiple recordsets I want to see if there is a way
to retreieve all values in just one recordset. The queries are:
Recordset 1:
SELECT paramvalue FROM ParametersUsers
WHERE paramname = 'do... more >>
problem in creating a job
Posted by Amit at 11/15/2005 7:43:11 AM
I am new to sql, I am trying to run a job with type transact sql . But when I
open the script it gives me an error saying that the sript is to large and
will have to be truncated. Can anyone tell me if I can increase this space so
that it accepts the script.
Thanks... more >>
Running Stored Procedure from another Database
Posted by Hez at 11/15/2005 12:00:00 AM
Hi all,
I'm hoping that perhaps someone could help me with a question. I am
running SQL Server 2000 standard edition. I have two databases, say A &
B, what I would like to know is whether it is possible to call a stored
procedure in database B from a stored procedure in database A? I've
t... more >>
|