Archived Months
January 2003
March 2003
April 2003
May 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
November 2007
April 2008


all groups > sql server programming > february 2004 > threads for saturday february 7

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

DROP DATABASE
Posted by EMW at 2/7/2004 11:08:42 PM
In my VB.NET program I want to execute a DROP DATABASE. But when I do that, I get an error telling me the database is in use. How can I disconnect from this database. I've tried DISCONNECT DATABASE, but that is unknown. Any help is welkom. rg, Eric ...more >>

outer join
Posted by taylor at 2/7/2004 9:07:24 PM
Recently I have been asked in a interview how the two queries processings( architect wise) are different. or how the two queries are diff in internal processing. ANSI syntax SELECT fname, lname, department FROM names left outer join departments ON names.employeeid = departments.employee...more >>

Performance problem - Adding column and assigning value to table with 60M rows
Posted by TJTODD at 2/7/2004 7:27:42 PM
Hi, I have alarge table with 60 Million rows. I needed to add a new INT column to the table and then assign it a value of 0. The Alter statement to add the column ran pretty quick: ALTER TABLE tb1 ADD c1 INT NOT NULL but the update statement: UPDATE tb1 SET c1 =...more >>

Directory tree recursion?
Posted by mnamiri NO[at]SPAM yahoo.co.uk at 2/7/2004 6:18:53 PM
Hi, I've recently been trying to develop a directory structure for a database orientated file storage system. I've seen some posts around, but what I am really stuck on is how to select a folder object and all its sub-objects (folders and files) and then return them. I want to use the resul...more >>

Conditionally building query & '
Posted by Mary at 2/7/2004 5:55:35 PM
I'm using the LIKE in a query that is built conditionally and can't figure out how to reference the single quotation mark associated with the '% when it's inside a string. I'm a dope. Really appreicate the help. Example below. mary --------------------------- Declare @VisitorLastName as...more >>

Logon Triggers etc.
Posted by Victor Kroese at 2/7/2004 5:03:55 PM
I saw a very interesting concept in Oracle where you can create your own context (like a session in ASP). You can fill this on logon. So you could for example hold a customerID in a cache that later will be uses in Views, Stored procedures or Functions. In a Virtual Private Database (VPD) you can...more >>

Default Language
Posted by Con at 2/7/2004 4:57:24 PM
WE have recently moved to MS SQL from an inhouse database, our issue is that we have a number of offices connecting. Is it possible to set each user with a default language and dateformat when they logon. I am using ASP to connect to the DB, and have tried the following: Sql = "SET LANGUAGE En...more >>

cast uniqueidentifier to varchar? not working!
Posted by mnamiri NO[at]SPAM yahoo.co.uk at 2/7/2004 4:46:23 PM
Hi all, From what I understand from SQL help online, convert (or cast) are meant to change the datatype of a value to another datatype. However, in this case neither of them seem to work! I've been staring at this line for the past few hours, and cant even begin to imagine what im doing wrong...more >>



Rounding
Posted by Lasse at 2/7/2004 4:02:53 PM
Hi, How do I get a value to round to 3 decimals in a select statement ? Select Round(SUM(Float_Value1)xSUM(Float_Value2),3) I expect it to show 3 decimals but it still show a lot of decimals, does the datatypes need to be Decimal? Using MS SQL 2000 Lasse ...more >>

Recursive Delete in Stored Proc
Posted by thadfield NO[at]SPAM hotmail.com at 2/7/2004 3:43:45 PM
Sorry if this has been done before, I'm new to SQL and can't seem to get this to work. The basic idea is I have Table1 that has a heirarchtical structure, and a second table that holds information about the nodes in the heirarchy. I want to be able to delete from anywhere in the heirarchy (thr...more >>

Replacing Nulls
Posted by torjon NO[at]SPAM NOSPAMnterport.net at 2/7/2004 3:05:18 PM
I have a table with a bunch of nulls. I wnt to replace all the nulls with a space. I can't use Replace(mycolumn,null, ' ') becase replace requires a string and the word null is not a string. what do I do? is this the right news group for this? Thanks!!!...more >>

Calling exec multiple times?
Posted by Steven Livingstone at 2/7/2004 2:52:41 PM
So in my stored proc i create a temp table with 3 columns. I populate that temp table with 50 rows of data (say). I have an existing stored procedure and i want to call it (using "exec") for each row in the temp table. Each column in the temp table represents a parameter to the stored procedu...more >>

Case sensitivity Text data type?
Posted by Rob Meade at 2/7/2004 2:51:12 PM
Hi all, I have just noticed an error when I try the following : SELECT * FROM viewWebPages WHERE UPPER(PageContent) LIKE '%my_text%' Can you not use UPPER on a 'text' data type? If not, does it ignore case sensitivity altogether? Any help would be appreciated, Regards Rob ...more >>

Design Easy Question
Posted by CSharp ( ILM ) at 2/7/2004 2:33:29 PM
Given two tables how do I store a unique number in each Row that is unique to both tables at the same time example: Table 1 someColumn ( rows 1-7) 1, 2, 6,7,8, 11, 16 Table 2 someRow ( rows 1-9 ) 3,4,5,9,10,12,13,14,15 I need to design these table in the right way Thanks ...more >>

Searching database driven website
Posted by Rob Meade at 2/7/2004 1:28:32 PM
Lo all, Ok - just spotted a problem I'm going to have. All of the rows for the page content in the database contain formatting ie, <b>some bold text</b> This will cause me a problem initially as if I wanted to search for <company name> the SQL statement might end something like this : ...more >>

Get # of rows indexed for a table
Posted by Ketan Patel at 2/7/2004 1:23:00 PM
We have a table, in which contineous insertion is being done. At some = time, we need to reindex the whole table. But before this, want to know = that how many rows are not indexed since last reindex is being done. So = is there any way in sql server to get this informations ? - Ketan Patel...more >>

how to check for existence of table column
Posted by TJS at 2/7/2004 12:11:27 PM
how can I check for existence of table column from within a stored procedure ?? ...more >>

Simple question on SPs
Posted by Venkata at 2/7/2004 11:32:16 AM
There are 10 fields which get the values from a stored procedure and displayed in the Frontend. My doubt is Out of 10 fields 5 fields are on Server A Table A 5 fields are on Server B Table B stored procedure is on SERVER A so My stored procedure looks something like this ...more >>

Update on linked server updating all rows...
Posted by BM at 2/7/2004 11:24:20 AM
I have an update statement, which when run on a local server runs fine. It is written as follows: UPDATE table1 SET field1 = 1 WHERE field2 = 'ABC' and field3 = --(also runs fine with "in" keyword) (select min(field3) FROM table1 where field2 = 'ABC') This updates one row as expected...more >>

refreshed demo database for each asp.net session
Posted by J McD at 2/7/2004 11:16:06 AM
Hi I have an asp.net/sql server application that I would like to demo on a website. I'd like each new visitor to see a pre-populated database setup which they can then manipulate, but their changes should be lost as soon as they end the session and their changes should not be visible to any other...more >>

Determining which Service Packs are installed
Posted by Ben Fidge at 2/7/2004 11:13:35 AM
Hi, Does anyone know how to determine which service packs are installed, either programmatically or via a query, on versions 7 and 2000? Ben ...more >>

Parent-Child relation easy question
Posted by CSharp ( ILM ) at 2/7/2004 11:05:11 AM
Hello, I have few table like this GreatGrandParent, GrandParent, Parent, Child ( related by PKs) Activity table that keeps track of their activity. Now I want to get a set containing a GreatGrandParent, YoungestGrandParent, YoungestParent, YoungestChild Note Youngest = last entered int...more >>

Date Problems
Posted by James Proctor at 2/7/2004 9:31:07 AM
Hi Ive got two tables with date fields in them. They are both set to datetime. When i write to the tables they store in the format mm/dd/yyyy. How ever when i pull the back from the tables and load them into vb.net on table returns dd/mm/yyyy and the other returns mm/dd/yyyy. Why is this and how c...more >>

Change query (ODBC driver), change query result
Posted by Andy at 2/7/2004 9:24:48 AM
Hello Situation: Application->ODBC->MSSQL2K I need to change some queries (replace) between ODBC and MSSQL on the fly, or, in the other words transparently to application modify some query before they executed by SQL server. Another Q. There is the query: SELECT COUNT(A) FROM B WHERE B.A='C'...more >>

Slow Query
Posted by ebtsup at 2/7/2004 8:16:06 AM
I have query similar to the following SELECT * FROM (TB1 INNER JOIN TB2 ON TB1.RecNum = TB2.RecNum) INNER JOIN TB3 ON TB2.RecNum = CNT3.RecNum Where ((DteProc > DteDone ) or (DteProc>='02/07/04 09:58') or (DteUpd>DteDone) or (DteProc<'01/01/2003') ) We have about 4 thousand records in the tabl...more >>

@variables
Posted by Peter Newman at 2/7/2004 7:01:05 AM
i know you can do a SQl statment like thi Select @variable = Count(*) From Table can you do something similer for a statment like thi INSERT INTO Table1 SELECT Field1, Fields2 FROM Table2 WHERE Field1 = 'AValue' or do i have to use the @@rowCount to check if the record was u...more >>

Returning log file
Posted by Don Grover at 2/7/2004 6:12:05 AM
I need to return the sql server log file for source 'logon' grouped by description in a qry for today. Is there any internal function that will return that. Client is non technical and I need to send them a security report of sql server by email. Don ...more >>

MAX function
Posted by Peter at 2/7/2004 5:11:06 AM
Im trying to return the record that has the greatest datediff between PswDate and todaysdat SELECT T1.Operator_recordId, T1.Operator_userName, T2.UsedPsword, DateDiff(Day, T2.PswDate, GetDate()) AS DAYS FROM Operators AS T LEFT JOIN OperatorUsedPasswords As T ON T1.Operator_recordId = T2.Operat...more >>

Delete related records from all table
Posted by Sharad at 2/7/2004 3:53:22 AM
Dear Friends I have three tables Employee primary table. Salary foregin Key table and Department Foregin key table. I want to delete all the records in one go for the provided Employee ID from all the three tables. Please suggest how i can achive the same. Best regards Sharad...more >>

Query .. Mind's gone Blank !!
Posted by Peter Newman at 2/7/2004 3:16:05 AM
ive set a quer SELECT T1.Operatorr_RecordId, T1.Operator_UserName, T2.PswDate, T2.UsedPswor FROM Operators AS T JOIN OperatorUsedPasswords As T ON T1.Operator_recordId = T2.OperatorID WHERE T1.Operator_UserName = @OperatorName This only returns 1 record, when there is one record in Opera...more >>

Backup / restore issue
Posted by Peter Newman at 2/7/2004 2:31:06 AM
we are using a third party Software package for our accounts system, which uses SQL. I have written a VB6 (SP5) application to auto insert invoices into the Accounts system using the Accounts Systems liberies. The problem i have is that there is no ' undo' facility in the accounts system, so if ther...more >>

End of table
Posted by Nikerz Inc at 2/7/2004 12:02:59 AM
How can prevent an error from my stored procedure when it gets to the end of the table with no more records to select? ...more >>


DevelopmentNow Blog