all groups > sql server mseq > september 2003 > threads for september 15 - 21, 2003
Filter by week: 1 2 3 4 5
filegroups
Posted by delbert at 9/18/2003 1:11:13 PM
After you restore a backup, how do you assign a new
filegroup?
I have a 280 GB that uses one file group and I want the
current files to point to different filegroups. How is
this done?... more >>
Reports running slow
Posted by Hienzs at 9/18/2003 9:19:02 AM
Hi Thanks for reading.
One of my client uses a medical software called advantx.
We recently had to convert them to a new w2k Server
running sql 7 and active directory. Shortly After importing
the database (1 month) i noticed the database size
starting to grow at a rate that i thought to be... more >>
selecting a range of records from the database
Posted by Chaitanya at 9/17/2003 12:30:20 PM
Hi all,
I have a database consisting of more than 2000 records. I
need only a certain number of records be displayed on the
page at a time. When I click 'next' Another set of same
number of records need to be displayed. I know 'top' and
'rowcount'. But how can I select a range of records, sa... more >>
how do I INSERT into an array of ints?
Posted by Button Boy at 9/17/2003 7:09:02 AM
Here's my table:
CREATE TABLE foo
(
id INT UNSIGNED NOT NULL
AUTO_INCREMENT,
PRIMARY KEY (id),
password CHAR(16) NOT NULL
DEFAULT 'BabaLooey',
int_array INT(200) UNSIGNED NULL,
)
The question is- how do I write a SQL statement that
fills in the entire int_array with valu... more >>
Left Pad month
Posted by Alice at 9/16/2003 1:51:58 PM
I have a need to left pad the month with 0, can you
help me do this?
For eg. if the month is January, in the query
it returns 1, I want it to return 01.
select datepart(mm,Workorderdate) from <tablename>
It would be still better if I could get the entire
date in yyyymmdd format from Work... more >>
Query truncated
Posted by James Upton at 9/16/2003 9:25:48 AM
I have a query that builds a concatenated string, which
will be 409 characters. I am using a Char type, which from
my research can have up to 8000 characters. The result is
truncating at 256 characters when run.
Any ideas or what is my problem?
Thanks... more >>
@@@ Tiggers @@@
Posted by Leonardo Almeida at 9/16/2003 7:05:14 AM
Relationship Databases
Hi,
I have a DataBase called "ServerInformation" where there´s a table
called "Clients"
Another database aplication "Index2003" using the same SQL Server, will
acess the information in the table "Clients" from then
"ServerInformation" Database.
My question is.... H... more >>
Pulling 2 responses per user
Posted by Will at 9/15/2003 2:01:38 PM
Pulling data from an Oracle Server and creating a temp
table(User, Response, ResponseDate). Have 75 unique users,
and over 10,000 responses and the date submitted. How do I
limit the results to only two distinct responses per user
with dates? TOP 2 does not work, SELECT DISTINCT does not
e... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Help with SQL query
Posted by Calvin Steele at 9/15/2003 12:14:15 PM
I am trying to query a table to get records sorted in a certain way. There
are two kinds of records - A and B. I want A's to be sorted on "Start Date"
and B's sorted on "End Date". And B's should follow A's.
So, Lets say the table looks like:
Name StartDate EndDate
------------------------... more >>
|