Archived Months
January 2003
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007


all groups > sql server (alternate) > november 2005 > threads for november 15 - 21, 2005

Filter by week: 1 2 3 4 5

SQL Equivalent of MAX and IIF
Posted by Will Chamberlain at 11/21/2005 10:24:09 PM
I have looked around and found the equivalent for IIF (Access) to be a SELECT CASE in SQL. I have tried this with no success. I am also looking for the equivalent of MAX and have had no luck. The portion of the string I am trying to SQL'ize is: SELECT Max(IIf([ADCN.ADCN] Is Null,0,[ADCN.ADCN])...more >>

Tuning API CURSORS
Posted by kmounkhaty NO[at]SPAM yahoo.com at 11/21/2005 7:24:13 PM
Hi Guru, My company, every thing we need is to buy from a vendor. However, we have PEOPLESOFT CRM app that has around 6000 tables and around 5000 views and none stored proc. We start seeing the slowness of the app. When I started running a trace to capture some data, and there is no useful in...more >>

How to drop one of the tempdb files
Posted by New MSSQL DBA at 11/21/2005 6:41:13 PM
Hi all, I have a tempdb that consists of 8 datafiles, tempdb_data_1 to tempdb_data_8, each is 8GB. Now how can I drop 7 of them and leave only tempdb_data_1? Can this be done? Thanks a lot. ...more >>

Need help with Count function and temporary tables
Posted by Danielle at 11/21/2005 12:39:04 PM
I have data like this in a two column temporary table - ID Age 23586 3 23586 3 23586 2 23586 2 23586 1 23586 1 23586 1 23586 1 23586 1 I need to create a temporary table that look like this: ID ...more >>

problem with Select query
Posted by Sandy at 11/21/2005 12:00:00 AM
Hi, I have a table A (ID, time,...) first I want to select rows with max value of time. Then from these rows I want the row with max ID value. i am doing the following but its giving me the error mentioned below select max(ID) from (select * from A where time in ( select max(time) from ...more >>

About bcp_init
Posted by Scarab at 11/21/2005 12:00:00 AM
Hi All, When I use bcp APIs to import data into sqlserver database, after batch rows to the tableA, I want to import data into tableB, so I invoke bcp_init again to init tableB, but it can't success. unless I re-connect database and then do bcp_init. But re-connect db will waste some time. My ...more >>

Limit saving DTS package to SQL Server
Posted by New MSSQL DBA at 11/20/2005 7:32:42 PM
Hi all, I know that you can save a DTS package to SQL Server (local package under Data Transformation Services in the EM). I wonder can I limit which login has the right to save DTS package? I mean, I would like logins with sa right to have this right but not for other ordinary logins. Ca...more >>

Scheduled job hangs the server
Posted by Bill at 11/20/2005 9:49:56 AM
Sorry re-posted as my email setting were wrong on the last post I wonder if anyone can help. I have a scheduled job running overnight to delete old records for a particular Db table. The table contains more than half million records and the script simply uses the date field to delete...more >>



Scheduled Job Hangs the server
Posted by aaa NO[at]SPAM bbb.com at 11/20/2005 9:42:42 AM
I wonder if anyone can help. I have a scheduled job running overnight to delete old records for a particular Db table. The table contains more than half million records and the script simply uses the date field to delete any of the records which have a date older than 7 days. My guess is t...more >>

Compressed folder & Query speed
Posted by CK at 11/20/2005 12:00:00 AM
One way to save storage space is to put the SQL data files into a compressed file. Has anyone got any idea how this will affect the query speed? ...more >>

UBOUND
Posted by Eugene Anthony at 11/19/2005 1:11:07 PM
<% if UBOUND(Arr) > 0 then%> <% end if %> I am getting the following error: Error Type: Microsoft VBScript runtime (0x800A000D) Type mismatch: 'UBOUND' How do I solve the problem. Your help is kindly appreciated. Eugene Anthony *** Sent via Developersdex http://www.developersdex...more >>

Recordset
Posted by Eugene Anthony at 11/19/2005 12:00:00 AM
This asp code displayes records in a combo box: <% openDB() call updateDB("usp_retrieveOptions",rs) if not rs.eof then %> <tr> <td width="66">Options</td> <td width="137"> <select name="...more >>

Hiding secret columns from users
Posted by Morten Mikkelsen at 11/18/2005 11:01:36 PM
Hi, On my SQL Server 2000, I have a table of data (tblAllData) containing a number of columns, some of which are 'secret'. I have to let some users access the database using ODBC from an Excel sheet, and I would like that they do not know at all that the columns exist. I tried creating a view...more >>

Splitting a filename out of a filepath
Posted by starritt NO[at]SPAM gmail.com at 11/18/2005 10:30:55 AM
I have to create a view where the filename is seperated from the path to the file. Examples of the data include: m:\images\big\myimg.jpg m:\images\medium\myimg.jpg z:\media\images\highqual\myimg.jpg Is there a function that will return the position in a string of the last \ ? With th...more >>

BULK INSERT and APPLICATION ROLE
Posted by avicentic NO[at]SPAM gmail.com at 11/18/2005 4:39:37 AM
I want to add bulkadmin permission to my applicatio role. Is it a posible. My windows account havo only public permission on database. I'm using application role EXEC sp_approlepassword 'MyRole', 'password'; Therefore I want to BULK some data with BULK INSERT command. Error is: The cu...more >>

verify if database exists
Posted by Cismail via SQLMonster.com at 11/18/2005 12:00:00 AM
Hi, Is there a simple way to verify if a database exists? I'm writing a stored procedure that will accept a database name as an input parameter, and create the database if it does't already exist. -- Message posted via http://www.sqlmonster.com...more >>

About dtsrun
Posted by Kevin at 11/18/2005 12:00:00 AM
when I run the following in sql Analyzer : dtsrun /S"Local" /Ntestemail /UExternalRO /P"changmail" got this error: Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near '/'. Is the command right?And how to run this dts package in commandline? Thanks...more >>

Database Problem related Clusterd data
Posted by vibha vyas at 11/17/2005 11:13:11 PM
Hello sir We have a very huge database its around 6 lakh records are being stored in it. records are not being a sorted order so we checked all record field through clustering option in Sql server.when we used clustering records are showing in sorted order but speed ...more >>

Log Invalidated after truncate table
Posted by ronin 47th at 11/17/2005 8:03:10 PM
Hi group, In one of the books 'Gurus Guide to Transact SQL' i found this info: ------------------------------------------------------------ TRUNCATE TABLE empties a table without logging row deletions in the transaction log. It can't be used with tables referenced by FOREIGN KEY constraint...more >>

need a DBA Suggestion.
Posted by chavasreedhar at 11/17/2005 7:26:11 PM
Hi, I've 2 Databases one is online and one is offline (connected t Internet).. using SQL SERVER for both servers, i need to update th OFFLINE Database one on a time schedule for every 15 mins from th Online DATABASE .. can anybody suggest a better way other than web services.. coz ou serv...more >>

Alex
Posted by Performance: SQL table vs NTFS via SQLMonster.com at 11/17/2005 4:03:56 PM
I have a .NET application that needs to work with about 5,000,000 XML files 5Kb each. Mostly the application randomly reads these files and it adds/modifies about 100 files every 10 minutes. What would be the best data storage in tirms of performance (connection, search and retrieval times) a bi...more >>

Make a Bunch of Rows from a Table Resemble a Column
Posted by laurenq uantrell at 11/17/2005 3:09:11 PM
Currently I'm using a UDF and a physical temp table to accomplish this and I want to know if there's any way of doing it in a query or subquery instead... In TableA there are a bunch of rows: InvitationID (PK) PartyID Partygoer 1 1 Jim 2 ...more >>

Simple SQL Query (To Neglect time from DateTime DataType)
Posted by kashifsulemani NO[at]SPAM hotmail.com at 11/17/2005 12:34:35 PM
we have a table like this OrderNo OrderDate 1 2005-11-04 01:12:47.000 2 2005-11-19 04:26:54.000 3 2005-11-16 11:03:23.000 4 2005-11-21 15:58:37.000 5 2005-11-24 21:45:04.000 what will be the sql query, so that the Result look like this. only to neqlect the time factor fr...more >>

What looks like a basic SQL query still not resolved
Posted by Laphan at 11/17/2005 10:55:02 AM
ARRRRRRRGGGGGHHHHH!! Please can you help, I'm going round the bend with this. I have a simple and small table called STOCKCATS, which I need to query to get back a dataset in a particular order, but although it looks simple I can't get it to work. My table schema plus sample data to see the...more >>

stored procedure with array of parameters
Posted by Rick at 11/17/2005 9:44:28 AM
I have a table on the database with columns like the following: Name Date Data Joe 11/5/05 data1 Joe 11/6/05 data2 Bob 11/5/05 data3 Bob 11/8/05 data4 I want to retrieve all data from an...more >>

HIT and MISS
Posted by kmounkhaty NO[at]SPAM yahoo.com at 11/17/2005 8:19:55 AM
Hi Guru, My profiler trace does not display SP:CACHEMISS event, even thought I drop store proc, clear both data cache and buffer cache but still does not work. Every thing works fine like: cachehit, cacheinsert,cacheremove,executecontexthit etc... Is there any special option that I need ...more >>

Query returning 1.7million records slow
Posted by JeremiahOSullivan NO[at]SPAM gmail.com at 11/17/2005 6:21:22 AM
Hi, I have a sql server database with 1.7 million records in a table, with about 30 fields When I run select * from tablename it can take over 5 minutes. How can I get this time down or is it normal? Thanks Jerry ...more >>

SQL Server Msg 1105, Level 17, State 2, Line 1
Posted by Branco Medeiros at 11/17/2005 5:33:33 AM
Dear (and mighty) all: I backed up a database (SQL server 7.0) and tried to restore it on another system (SQL Server 2000). This is not the first time I'm doing this and never had a problem before: -- in the source db BACKUP db_icoaraci TO DISK = 'C:\TEMP\BACKUP-ICOARACI.DAT' --in the de...more >>

[Newbie] Restoring.............
Posted by Erland at 11/17/2005 5:28:10 AM
Hi, I am very new to Microsoft Technologies, infact new to database world :)I have a SQL-Server 7.0 back. How can i restore it? Moreover , can i restore this backup by using SQL-Server 2000Enterprise edition, how should i go about it? Any help or comments will be highly appreciated. -Erland ...more >>

Best use of inner join
Posted by corassaumzinho NO[at]SPAM gmail.com at 11/17/2005 4:04:40 AM
Hello group, I have a doubt on where use inner join and use the signal of equal. Is there any difference in performance? Where is the best? Thanx Marcelo Sabino ...more >>

need help
Posted by John Longstreet at 11/17/2005 3:10:30 AM
I am not a DBA and would appreciate any help with the following question Is there any easy method to search all tables in a given database for a particular value ? I am using sql server 200 standard edition all help appreciated Thanks ...more >>

Inner join weirdness in DTS
Posted by Andy Kent at 11/17/2005 2:48:04 AM
I am trying to import data from Access 2000 in SQL Server 2000 using DTS. One of the tasks requires a multi-table join but I am getting syntax errors if I generate the query with Build Query. With just a single join like this it works fine: FROM Tracker INNER JOIN ...more >>

Is this normal
Posted by CK at 11/17/2005 12:00:00 AM
Hi. Sorry if I am asking a stupid question since I am an absolutely beginner in SQL Server. Here is the question . . . About 13 hours ago, I got my SQL Server 2000 to index a table which has 104 million records. At first the CPU usage was high. But after an hour or two, the process has seem...more >>

Creating WHERE clauses based on IF (or CASE) STATEMENTS Transact-SQL
Posted by Ryan at 11/16/2005 6:36:24 PM
I am trying to create a stored procedure whose where clause is dependent on a parameter. If the parameter @myparam is null or '' then I want the where clause to be one thing, else I want it to be a completely different thing. I can do it easily using iif but obviously that is not an option he...more >>

Creating WHERE clauses based on IF (or CASE) STATEMENTS Transact-SQL
Posted by Ryan at 11/16/2005 6:33:02 PM
I am trying to create a stored procedure whose where clause is dependent on a parameter. If the parameter @myparam is null or '' then I want the where clause to be one thing, else I want it to be a completely different thing. I can do it easily using iif but obviously that is not an option he...more >>

Optimizing Stored Procedure with Datetime parameter
Posted by paulmac106 at 11/16/2005 3:26:18 PM
Hi, When I pass a date time parameter the stored procedure takes about 45 seconds, when I hard code the parameter it returns in 1 second. How can I rewrite my stored procedure? @createddatelower datetime WHERE dbo.tblCaseHistory.eventdate > dateadd(d,-7,@createddatelower ) AND dbo.tblCa...more >>

sql query update
Posted by diablo at 11/16/2005 12:34:45 PM
Hi i need help with formulating a query that will update the a field on one table depending on the values from another for example i have a cart table: cartid, buyerid, productid, quantity i have a product table: productid, quantity i want to do a: select * from cart where buyerid=x...more >>

SQL statement to compute employee pay for a year at different pay rates
Posted by Chad Richardson at 11/16/2005 9:56:45 AM
I would like a single SQL to return all employee's total billable compensation for a year. Their billable rates change throughout the year so under the employee table (one), there is a compensation table (to many) which has the employee id, effective date, billable hourly rate. So in a given...more >>

adding identity column dynamically
Posted by Sam at 11/16/2005 6:33:03 AM
Hi, In my stored procedure I'm doing a SELECT on INFORMATION_SCHEMA.TABLE_CONSTRAINTS. However there is no unique id on this table, so I was wondering if it was possible to add it dynamically in my SELECT, so that I would assign a unique id to each record returned by my SELECT? Thanks for yo...more >>

need information on SQL SERVER 2000 with multi-threading CPU
Posted by NiponW at 11/16/2005 4:56:13 AM
Hi, I have SQL SERVER 2000 SP4 Enterprise , Windows 2003 Enterprise on Xeon 4 Processors (now with multi-threading CPU) and I have questions which seem weirds to me (used to have the same config without Multi-Threading) as following: 1. SQL Server s...more >>

full text catalog on remote (shared) server
Posted by niceguy at 11/15/2005 11:16:33 PM
Can any one help - my Full text catalog on a remote shared sql server has died and i need to recreate it completely - I have done this before but i've lost the code to do it. If I remember right what i did was use start --> run --> to run an exe in the mssql folder that connected to the re...more >>

There is a question when i work on Linkedserver~Pls kindly help me:)
Posted by xchong.zhou NO[at]SPAM gmail.com at 11/15/2005 6:42:18 PM
I have a question when I work on Linkedserver The Linkedserver name is [Hp-server],the Datebase name is Newexec,the Table name is Customers_CoypTest The SQLScript is below: Update [Hp-server].Newexec.dbo.Customers_CoypTest set Unitname=b.Unitname ...more >>

Indexes being improperly used when selecting data through a view
Posted by joshsackett at 11/15/2005 2:05:41 PM
I am having a problem with indexes on specific tables. For some reason a query that runs against a view is not selecting the correct index on a table. I run the same query against the table directly and it looks fine. Can anyone give me some insight? Thanks. PRODUCTION1: CREATE TABLE MyTest1 ...more >>

QUESTION: Connecting with SQL Admin across domains
Posted by BD at 11/15/2005 1:52:30 PM
Hi, all. I am having some confusion with connecting to a SQL 2000 SP4 Server across a one-way trust. I have a SQL server in the trusting domain, and the Admin workstations in the trusted domain. I am not using domain-level authentication, I am only using SQL IDs. If I log onto the work...more >>

Optimal search for the nearest date
Posted by sk at 11/15/2005 11:24:55 AM
I have the following table CREATE TABLE Readings ( ReadingTime DATETIME NOT NULL DEFAULT(GETDATE()) PRIMARY KEY, Reading int NOT NULL ) INSERT INTO Readings (ReadingTime, Reading) VALUES ('20050101', 1) INSERT INTO Readings (ReadingTime, Reading) VALUES ('20050201', 12) INSERT ...more >>

get the DB index SQL
Posted by dBlue at 11/15/2005 11:13:43 AM
Hi all is there any efficient way to get the T-SQL statement for an existing index? In the EM, we can 1) right-click on a tablename -- All Tasks -- Manage Indexes; 2) select an index, then click on "Edit"; 3) Click on "Edit SQL" to get the SQL for the indexes as below CREATE UNIQUE ...more >>

SQL 2005 Unhandled Exception Error
Posted by SQLJunkie at 11/15/2005 9:47:46 AM
Hi, I have installed SQL 2005 RTM on a new server and I keep getting this error (described below) quite frequently. Was wondering if anyone has a clue on what's happening here. I tried googling but no success! This generally happens when I am browsing the tree in Object explorer in SQL 2005...more >>

SQL 2005 Developers Diagram question
Posted by Dave at 11/15/2005 9:45:34 AM
I detached a SLQ 2000 database and reattached it in 2005 Developers. When I try to access the Diagrams, the below message is received. My domain account is owner. I'm local Admin on my machine. Shouldn't be a problem right? How do I add the Database Diagram Support Objects? TITLE: Micr...more >>

flexible back-end data handling in .net + sql project
Posted by athos at 11/15/2005 9:07:40 AM
Hi guys, Got a problem now :( please help... now we got a project handling records saved in a table in a sql 2000(will upgraded to 2005 soon) server. every month around a million records will be inserted. now user raised a request, that is, once criterios are matched, the project should ...more >>

DTS package design - Not allaowed link
Posted by nai at 11/15/2005 2:59:55 AM
Hi all, I'm fairly new to this... I't trying to design a DTS package on SQL Server 2000`, which will connect to the server, export some table date into a .txt file (based on a select statement) and then delete the data from the table (based on a delete statement) upon successful completion of...more >>

Options to upgrade an SQL 6.5 DB to 2000
Posted by Laphan at 11/15/2005 12:00:00 AM
Hi All I know that if SQL 6.5 was on a server and you then install SQL 2000 on it you get the wizard option to upgrade an SQL 6.5 DB to 2000, but I don't have the luxury of this. I have an SQL 6.5 DB, which I want to convert, but only SQL 2000 on my server. Do you know what options I hav...more >>

Newbie: How to create a database from script?
Posted by Jozef at 11/15/2005 12:00:00 AM
Hello, I have an "Issue Manager" script that I would like to run on my SQL Server (2000). Being a novice, I'm not sure how to do this. I can't seem to find anything in the help file that makes sense to me, and I'm sure it's because my search strings suck, they only produce a single result...more >>

Query Question
Posted by Mike at 11/15/2005 12:00:00 AM
I have the following tables: Table Name: GL_CODE_DESC Field Names: GLCODE, GLDESC Table Name: GL_SVC_CODES Field Names: GLCODE, SVCCODE What I would like is a query that pulls the distinct rows from the table GL_CODE_DESC but only where the GLCODES are equal between the two tables. H...more >>

NEWID()
Posted by Eugene Anthony at 11/15/2005 12:00:00 AM
Is there a limitation of using: set @sessionID = NEWID() would there be a simular NEWID() being generated if used in a database application. Eugene Anthony *** Sent via Developersdex http://www.developersdex.com ***...more >>


DevelopmentNow Blog