all groups > sql server (alternate) > november 2005 > threads for november 29 - 30, 2005
Filter by week: 1 2 3 4 5
Why upgrade to MS SQL Server (be it 2000 or 2005) from Access (say, 97)?
Posted by NickName at 11/30/2005 7:13:17 PM
Probably this question has been asked hundreds of times and yet net
search has not generated satisfactory enough answer, at least, to me.
And OK, let's assume your organization has more than 200 employees,
just one measure to indicate that it's not small and data processing
needs are quite ext... more >>
Help needed with query syntax
Posted by T. Wintershoven at 11/30/2005 3:46:11 PM
Hi
Can someone please tell me whats wrong with the last line of the query
below. The first three lines work fine but when i add the fourth line i get
an error message (see text at ERROR MESSAGE)
sql_HTTermijnRecords = "select * from Orders where FaktuurGeprint =
'J'" & _
"... more >>
Newbie:Not Exists?
Posted by Buzby at 11/30/2005 3:07:51 PM
Hi - hope I'm in the right place - I'm having trouble with a sql statement
for a web page using access as the db (explains the date bit!)
I have two tables - RoomTypes and Availability. The query below brings back
the information I need - except I need to filter it one more time and
exclude... more >>
Extracting and joining header from denormalized table
Posted by Thomas R. Hummel at 11/30/2005 1:23:39 PM
Hello,
I am currently working on a monthly load process with a datamart. I
originally designed the tables in a normalized fashion with the idea
that I would denormalize as needed once I got an idea of what the
performance was like. There were some performance problems, so the
decision was mad... more >>
big log file
Posted by pluton at 11/30/2005 11:00:04 AM
Hi,
I have a big log file in my database.
Probably it is result of debugging process
of my application (break execution before commit).
What should i do with this log ?
Is it possible just to remove it ?
best regards
pluton
... more >>
HELP: Strange Blocking Performance Problem with Simultaneous Queries
Posted by loosecannon_1 NO[at]SPAM yahoo.com at 11/30/2005 10:14:16 AM
Hello everyone, I am hoping someone can help me with this problem. I
will say up front that I am not a SQL Server DBA, I am a developer. I
have an application that sends about 25 simultaneous queries to a SQL
Server 2000 Standard Edition SP4 running on Windows 2000 Server with
2.5 GB of memor... more >>
Indexing and Queries
Posted by Hennie7863 at 11/30/2005 8:53:22 AM
Hi everybody,
After days reading stuff about indexing, extents, pages, 8KB, 64 KB,
IGNORE_DUP_KEY, CREATE INDEX, bla bla, lalalala, lllllll, grrrrrrr and
testing with different kinds of queries, indexes, situations i'm
getting confused, irritated, etc.
SITUATION
I have the following situat... more >>
splitting a string
Posted by RSummersJr NO[at]SPAM gmail.com at 11/30/2005 7:22:00 AM
Hello,
I have been placed in charge of migrating an old access based database
over to sql server 7.0. So far, I have imported all the tables into
sql server, but now I have come across the issue of needing to split a
string variable. For instance, in the old database, the variable for
name ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Clustered versus Create table on high speed FILEGROUP
Posted by Dr Warehouse at 11/30/2005 2:17:47 AM
Hi,
I am expanding our data warehouse solution with new filegroups on
several subsystems.
I want to know which idea is better!
- create clustered indexes on tables to 'move' them to new filegroups
- create these tables on the new filegroups.
The background of this question is as follow... more >>
String case problem
Posted by vishal at 11/29/2005 11:33:21 PM
I am using a select statement like
SELECT ENAME FROM EMPTABLE WHERE ENAME ="vishal"
I am getting the result as 1 row affected.
Ename
----------
Vishal
The Problem is the query I have passed is "vishal"(lower case) and
getting the output as "Vishal"(V is Upper Case)
How do I solve t... more >>
Index Design Recommendation - Examine Column Uniqueness
Posted by serge at 11/29/2005 9:35:27 PM
I am reading "SQL Server Query Performance Tuning Distilled",
on page 104 it talks about one of the index design recommendations
which is to choose the column that has very high selectivity of values
instead of a column that has very few selectivity of values.
My question is if I have currentl... more >>
NEWBIE QUESTION?
Posted by Niraj Agarwalla at 11/29/2005 8:41:37 PM
I want to learn SQL Server 2005, so should I buy the Developer's
Edition, or just use the Express Edition? Which would be more
beneficial?
Thanks,
Niraj
... more >>
PAGEIOLATCH is a lead blocker
Posted by kmounkhaty NO[at]SPAM yahoo.com at 11/29/2005 2:06:06 PM
Hi Guru,
After spening quite sometimes to watch my box, I've seen PAGEIOLATCH is
a lead blocker in my SQL Server 2000 server. Below is the detailed:
SPID lastwaittype waitresource blocked status cmd
57 LCK_M_S KEY: 7:963690681:8 65 sleeping execute
65 PAGEIOLATCH_SH 7:1:217904 0 sleeping se... more >>
Query question
Posted by Yannick Turgeon at 11/29/2005 11:38:01 AM
Hello all,
Say we've got these data:
----------------------------------------
CREATE TABLE #Test (
pid INT PRIMARY KEY NOT NULL,
type CHAR NOT NULL,
data VARCHAR(10) NOT NULL
)
INSERT INTO #Test (pid, type, data)
SELECT 1, 'A', 'pizza' UNION ALL
SELECT 2, 'A', 'cake' UNION ALL
SE... more >>
Wildcards On Columns?
Posted by cyber0ne at 11/29/2005 7:47:32 AM
My use of wildcards thus far has been limited to matching a given
string anywhere in a column as follows:
SELECT * FROM Table WHERE Column LIKE '%string%'
However, I'm wondering if there's a way to do this in reverse. That
is, is there a way to match the column anywhere in the string?
Pseu... more >>
Show owner of database
Posted by andreas.bjorck NO[at]SPAM gmail.com at 11/29/2005 6:26:32 AM
Hello,
Does anyone know what procedure to run to show information such as the
owner of a specific database for MSSQL2000? I want to make a script to
loop through all the databases on a server and display owner and other
helpful information.
Best regards,
Andreas
... more >>
Temp Table and SP Advise
Posted by Ks at 11/29/2005 2:05:26 AM
Hi All,
I have a little scenario here, i am need of inserting some rows into a
temp table which will be returned by a procedure... Here is little
explanation
I am planning to make a proc A and a temp table in proc A.
I will be calling proc B from Proc A.
What i want is the data returned by... more >>
STORED PROCEDURE - passing table name as a parameter
Posted by Steve at 11/29/2005 2:00:46 AM
I am trying to develop a stored procedure for an existing application that
has data stored in numerous tables, each with the same set of columns. The
main columns are Time and Value. There are literally hundreds of these
tables that are storing values at one minute intervals. I need to calculate
... more >>
Subtracting two columns from diff tables
Posted by alomrani NO[at]SPAM gmail.com at 11/29/2005 12:28:19 AM
Hi all,
I encountered this small problem
I have two tables A and B with two columns 1 and 2 each, I would like
the first column of each table when match the first in the second table
is to subtract the second column
so the result would look as follows
Column 1 | Columnn 2
wher... more >>
LOAD .SQL file
Posted by mr.nitinjain NO[at]SPAM gmail.com at 11/29/2005 12:20:35 AM
Hi dear members,
Can onyone please tell me that how can we load multiple files/ or even
a single .SQL file stored on any physical location(Hard Disk) from SQL
prompt.
i have written some scripts in diffrent files, now i want to run those
scripts, Do i always need to manually open those scripts ... more >>
|