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 2006 > threads for november 8 - 14, 2006

Filter by week: 1 2 3 4 5

problem with trusted connection (asp.net)
Posted by Mad Scientist Jr at 11/14/2006 4:33:12 PM
I am getting the following error when trying to access a database with a trusted connection: "Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection." My connection string is: "Server=MyServer; Database=MyCatalog; Trusted_Connection=True;" N...more >>


SQL to calculate surrounding suburbs
Posted by Pacific Fox at 11/14/2006 2:45:14 PM
Hello all, Does anyone know the SQL statement for calculating surrounding suburbs, or can point me in the right direction? I have a database of Australian postal codes and their centroids in longitude and latitude, I'd like to pass it either the long/lat or postal code to calculate from. And ...more >>

Using temporary tables within the stored procedure
Posted by Thyagu at 11/13/2006 11:54:36 PM
Hi, If one uses a temporary table/ table variable within a stored procedure, will it use the compiled plan each time the stored procedure is executed or will it recompile for each execution? Thanks in advance, Thyagu ...more >>

SLOW performance on table with image fields (SQL 2000)
Posted by news.tele.dk at 11/13/2006 7:04:29 PM
Hi We have a SQL server 2000 SP4 on a windows 2003 2x3Ghz XEON 4 GB ram. We have a table looking like this with currently 6 rows. Total data is aprox 10 kb i all row all together. CREATE TABLE [dbo].[BIOMETRICPROFILE] ( [BIOMETRICPROFILEID] [bigint] IDENTITY (1, 1) NOT NULL , [FINGERPR...more >>

urgent help!!!!!
Posted by frien at 11/13/2006 6:40:19 PM
I am using sp_helpindex to get the indexes of the database....... how do i pass the parameter tablename as a parameter????....and is the parameter a built-in or userdefined??? I used @TableName....which throws a exception saying "@TableName is not a parameter of the database" Thanks a L...more >>

COUNT FUNCTION ON MULTIPLE COLUMNS
Posted by k4 at 11/13/2006 5:18:13 PM
I have a database that contains a column for UnitName , BeginDate and EndDate. I want to pass two parameters (@BeginDate and @EndDate) and retrieve a table of values that include UnitName along with Counts for each UnitName. SELECT UnitName, COUNT(BeginDate) AS Start (SELECT COUNT(EndDa...more >>

Newbie needing help creating query
Posted by Mintyman at 11/13/2006 2:43:00 PM
Hi, I know some SQL but not enough to write the query i'm trying to create and could do with some help! I have 2 tables (Product and ProductProgram) that are linked by a common identified 'ProductID'. Each product has 5 different price levels (1,2,3,4,5) and these are stored in the Produ...more >>

General advice needed regarding MS Access, MS SQL Server, MySQL/PostgreSQL
Posted by Ted at 11/13/2006 12:40:28 PM
I am working on two versions of an application, one of which will be a windows forms application (which will need to be redistributable) and the other will be a web application. I have MS Visual Studio 2005 (along with the developer's edition of MS SQL Server), but not MS Access. I also have ...more >>



Automatic Fields
Posted by hmario at 11/13/2006 12:00:00 AM
Hi, it's possibile to define table fields for automatic Last_Update_Date and for Creation_date using column formula?? Thanks !!! ...more >>

case sensitivity
Posted by othellomy NO[at]SPAM yahoo.com at 11/12/2006 9:37:21 PM
Is SQL server defaults to case insensitive? I am sure there are ways to install case sensitive SQL server instance but coming from Sybase (which is always case sensitive) case insensitivity is something new to me (it requires coding change etc). Besides, is there any option I can set to turn on ...more >>

200611 to string 'Nov 2006'
Posted by klabu at 11/12/2006 7:51:28 PM
Hi how to conert (number) 200611 to string 'Nov 2006' ? thanks ...more >>

T-SQL Question
Posted by klabu at 11/12/2006 4:52:52 PM
How to write an equivalent SQL like this (which works on Oracle): SELECT * FROM sometable WHERE rec_id, rec_sequence IN (SELECT rec_id, MAX( rec_sequence) FROM alppremh GROUP BY rec_id) thanks ...more >>

Trigger on an Access database?
Posted by Jim Devenish at 11/11/2006 8:44:05 AM
We have an Access database with Access front-end to Access back-end. Another company has installed a separate application using SQLServer. At present certain information in the first application is entered manually into the second. We wish to automate this process. The other company is propos...more >>

How do i find indexes of the columns in SQL server 2000???
Posted by 001frien NO[at]SPAM gmail.com at 11/10/2006 1:14:15 PM
How do i find indexes of the columns of all the tables of the datbase...........most importantly in SQL server 2000 Thanks a lot ...more >>

Rolling up spans without breaks between them
Posted by davisutt NO[at]SPAM aol.com at 11/10/2006 12:57:44 PM
I'm trying to figure out how to this do with TSQL and preferably through joins rather than by using cursors or temp tables. I have multiple time spans for multiple individuals that I would like to rollup together where they don't actually have a gap in coverage. ID StartDate ...more >>

Instance Licencing
Posted by David at 11/10/2006 12:25:53 AM
Hi, We are have a 5 user licenced microsoft sql server 2000 cd. We need to set this up to run two instances of the server, as we need different setups on both databases. Does anyone know if with one cd you can do this, so that the user licences installed are shared between the two instances? ...more >>

FOR XML not working in a subquery
Posted by jonathaneggert NO[at]SPAM hotmail.com at 11/9/2006 11:54:53 PM
The following seems to work in SQL Server 2005, but I'm getting the error 'Incorrect syntax near xml' when I run it in SQL Server 2000. select a.accountid , (select street, city, state, zip from account b where a.accountid =b.accountid for xml auto, elements) as xmldata from account a ...more >>

WHERE columnName = 'this' AND anotherColumnName IS NOT NULL
Posted by jojowebdev NO[at]SPAM gmail.com at 11/9/2006 9:01:09 AM
Using SQL Query Analyzer how do I do something like: WHERE columnName = 'this' AND anotherColumnName IS NOT NULL I.E. SELECT * FROM CES_DATA WHERE DIV = 'MW' AND Not IsNull RO ORDER BY RO ...more >>

How to loop through this sql table and display in ms access listbox
Posted by Ron at 11/9/2006 8:50:57 AM
I have a table in SQL, that I know how to connect to using ADO, but I need help on how to read records from that table. So on a form I have a listbox where I want to populate that and i have a textbox with a userid. Here is an example of the table: USER ID TYPE PAYMENT ===============...more >>

select records between dates - query works in VS 2005 but it doesn't in asp 3
Posted by santiago NO[at]SPAM partirviajes.com.ar at 11/9/2006 8:14:06 AM
Hello. I'm having troubles with a query that (should) return all the records between two dates. The date field is a datetime type. The db is SQL Server 2000. When I try this SELECT RESERVES.RES_ID, PAYMENTS_RECEIVED.PYR_ID, PAYMENTS_RECEIVED.PYR_VALUE, PAYMENTS_RECEIVED.PYR_DATE, ...more >>

Schema changes to SQL Server
Posted by System Audit at 11/9/2006 5:20:55 AM
I am working with an old version of SQL Server (6.5), but the same mechanism may exist in later versions. If there were any changes made to the database schema, would this be recorded somewhere within the database? Would there be some way of determining if there had been any schema changes ...more >>

Transfer data from an excel sheet to table in sql data base
Posted by tamatem at 11/9/2006 5:03:13 AM
I have an excel sheet that contain colummns as in a table in a sql data base i want to transfer this data from the sheet to the table from business logic code layer not from the enterprise manager by wizard what can i do?? ...please urgent ...more >>

single quote
Posted by othellomy NO[at]SPAM yahoo.com at 11/8/2006 11:16:22 PM
How do I insert a single quote ' into a table? For example: Insert mytable values (1,''') I get an error message. Any ideas? The server does not recognize double quote (why? is this tsql, ansi?), otherwise I could have written it as: Insert mytable values (1,"'") Thanks. ...more >>

Actuarial sql statement Need Help.
Posted by Twobridge at 11/8/2006 12:18:24 PM
I hope someone can help me out with my problem. I have found a sql statement that basically pulls all bills filed within a certain time period and the payments made on those bills with in the same time period. I group the payments by payment year and filed year which gives me a matrix with the...more >>

hii
Posted by reneeshprabha NO[at]SPAM gmail.com at 11/8/2006 8:20:46 AM
Hiiiiii I want a qry which will give me the list of views which are not used in any SPs in that database. like suppose i have a view view1 and I have used that view in one of my SPs and i have a view called . View2 its just created but never called in any SPs. Somebody ll help me ? ...more >>

Please Help With Complex Update Statement Logic
Posted by pbd22 at 11/8/2006 5:17:21 AM
hi. I am having probelms with an update statement. every time i run it, "every" row updates, not just the one(s) intended. so, here is what i have. i have tried this with both AND and OR and neither seem to work. i dont know why this is elluding me, but i'd appreciate help with the solut...more >>

ISQL: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near ' '
Posted by axtens at 11/8/2006 12:55:16 AM
G'day everyone That's a space between the ticks. It's all part of a longer script but seeing as the failure occurs on line 1 if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[config]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[config] GO That'...more >>


DevelopmentNow Blog