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 > october 2004 > threads for tuesday october 19

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 30 31

HELP: Point in time restore : HOW ?
Posted by Pagus at 10/19/2004 11:22:39 PM
I have full backup of database at 13:00 and another full backup at 17:00. I've made backup of transaction log at 17:05 When I try to restore database to state at 15:10 (point in time) , the dialogue in Enterprise Manager says that only time after 17:05 is valid. It seems to me that I'v...more >>

Merge Join
Posted by Leila at 10/19/2004 11:08:22 PM
Hi, I executed the following query in Northwind: select c.* from customers c join orders o on c.customerid=o.customerid There are original indexes available on these two tables: 1) Clustered (Customers.CustomerID) 2) Clustered (Orders.OrderID) 3) nonClustered (Orders.CustomerID) The...more >>

Binary compare?
Posted by Egbert Nierop (MVP for IIS) at 10/19/2004 9:50:46 PM
Is there a more readable alternative (syntax) for this below? (@sPass and @sPassword are nvarchar(20)) IF @sPassword COLLATE Latin1_General_BIN <> @sPass COLLATE Latin1_General_BIN SET @success = 0; ...more >>

Results from ExecuteWithResultsAndMessages
Posted by Arnoud Commandeur at 10/19/2004 8:46:17 PM
Hello, Currently I'm trying to make PERMANENT changes in a sqlserver database INSIDE a tranaction. Via the site: http://www.sqlteam.com/item.asp?itemid=2290 a have made a simple test which works fine. Now I wonder how to retrieve a value after the sql statement has been executed. For examp...more >>

Add a "sequence no." column for each row in select result?
Posted by Jackal at 10/19/2004 8:29:03 PM
Dear all, How can I get a "sequence no." column for each row in select result? The following is what I want, [Original] Name Birthday ------- --------- ABC 11/06 DEF 08/18 GHI 12/25 [Desired] Seq. No. Name Birthday --------- ------- ---------...more >>

SQLDMO
Posted by Bonj at 10/19/2004 7:51:45 PM
Is SQLDMO.dll redistributable? Also, is it included with MDACTYP.exe? ...more >>

SQL Question
Posted by Aleks at 10/19/2004 6:30:01 PM
Sorry if someone has already answered this, but I cant simply find the answer in today's postings, so here is my question: I am trying to combine two sql statements to get just one result, right now I have: SELECT Count (ActivityId) AS ActTotNum FROM dbo.Activities WHERE CaseId = MMColPar...more >>

Create a delete trigger!! Urgent
Posted by Michael Persaud at 10/19/2004 4:57:09 PM
Hi, I would like to create a trigger that fires when i delete an item from a table. This trigger must that the said records and place them into another table. Please help Thanks MP ...more >>



Como obtener los nombre de las columnas?
Posted by Evacolors at 10/19/2004 4:37:21 PM
Hola a todos, me gustaria saber si alguno sabe como obtener mediante SQL los nombres de las columnas de una tabla Es decir me saque un reporte como el siguiente: select nombrecolumna(tabla.*) as columna from tabla y el resultado sea asi columna --------- clave nombre apellido saldo ...more >>

Calculate multiple of terms?
Posted by culam at 10/19/2004 4:35:07 PM
I have a opened date, and a term field. I would like to calculated the number of terms that has passed for a particular accounct. For example: opendate = '02/15/2004' and Term = 2 months Result should be 4. For example: opendate = '02/15/2004' and Term = 4 months Result = 2 Thank...more >>

SQL, ASP .NET, VB .NET Authentication
Posted by Nikolay Petrov at 10/19/2004 4:29:08 PM
Is it possible to authenticate user using a SQL database, containing users and passwords? What I want to achive is: I have as SQL database containig data for my app. This database also contains usernames, passwords and rights which are specific for my app. Also I have a middle tier WebService...more >>

Combine SQL statement
Posted by Aleks at 10/19/2004 4:04:57 PM
I am trying to combine two sql statements to get just one result, right now I have: SELECT Count (ActivityId) AS ActTotNum FROM dbo.Activities WHERE CaseId = MMColParam and ActType ='HISTORY' Which gives result: ActTotNum = 14 SELECT Count (ActivityId) AS ActCompleted FROM dbo.Activiti...more >>

Best Connect Method/String
Posted by Jon Glazer at 10/19/2004 3:58:57 PM
I am writing an ASP application and was wondering what the best method would be to connect to an SQL2000 server? What would a good connect streing look like? Thanks! Jon ...more >>

[sdldmo] ALTER TABLE script
Posted by Costi Stan at 10/19/2004 3:43:17 PM
Wheather I change a column datatype, other properties, or a collection item, I have to pute everything into BeginAlter, DoAlter. How can I see the ALTER TABLE script before applying those changes? Thanks, Costi ...more >>

SQL Question
Posted by Aleks at 10/19/2004 3:41:56 PM
I have two statements, each one gives me a number: SELECT Count (ActivityId) AS ActTotNum FROM dbo.Activities WHERE CaseId = 24 and ActType ='HISTORY' SELECT Count (ActivityId) AS Actotcompleted FROM dbo.Activities WHERE ActType ='HISTORY' AND (Lastmodified IS NOT NULL AND Dateinitiated ...more >>

Hierarchical data
Posted by ogipas NO[at]SPAM hotmail.com at 10/19/2004 3:29:41 PM
Dear colleagues, You may here find again the question about hierarchical data. I have already read posts by Mr. Celko, Mr. Kass among many as well as I visited appropriate sites (e.g. http://vyaskn.tripod.com/ - "Working with hierarchical data in SQL Server databases"). Unfortunately, I could...more >>

Updating derived table
Posted by simon at 10/19/2004 3:11:07 PM
I would like to update the items of order WHERE value of order is lower than 1000. So, I created derived table: UPDATE T2 SET T2.tsAd_ID=dbo.vrniReklamoPostavke(@datum,T2.cas_prejema_klica,T2.ID_MEDIJA,T2.ID_IZDELKA) (SELECT T1.* FROM (SELECT p.tsAd_ID,n.cas_prejema_klica,v.ID_MEDIJA,p....more >>

possible
Posted by Ed at 10/19/2004 2:37:01 PM
hi, is that possible i can do something like select type from Exec sp_depends 'Customers' or Insert Into Table (Type) values (Exec sp_depends) since i only want the column Type to be selected or inserted Thanks Ed...more >>

Very slow query
Posted by Steve at 10/19/2004 2:33:23 PM
Any ideas as to why a simple query (SELECT COUNT(*) FROM Table) on a table with 1,900,000 rows would take 3 minutes to run in Query Analyzer and more than 10 minutes to run from a VB 6 app using ADO? ...more >>

cant get the correct num of rows from Oracle. in 2 SQL servers ( sql 7.0 and SQL 2000)
Posted by Melih SARICA at 10/19/2004 2:05:31 PM
I ve got an Oracle 9. server running on AIx. and One SQL Server 2000 Sp 3on w2k and SQL server 7 on Winnt 4.0 i did link this Oracle server on both SQL serevrs. When run an simple SQL query i got different results. Num of rows are always different In SQL server 7.0 i got 49430 rows( w...more >>

SQL Query Analyzer - Is there a way to loop script for all user databases?
Posted by Marco Napoli at 10/19/2004 2:04:41 PM
I have different SQL Scripts that I have written with the SQL Query Analyzer, and I need to run each script for all of the User Datbases. The only way I can see to do this is to choose each database with the Combo Box then run the script and reapeat. Is there an easier way to do this? Th...more >>

money vs decimal
Posted by Zach Wells at 10/19/2004 1:57:31 PM
I recall reading a while back that using Decimal() for money types was the ANSI standard. Is there a defined precision that they recommend? Zach...more >>

Simple query question...
Posted by rc at 10/19/2004 1:19:36 PM
Hello, I have the following two tables: Table-1 has one column: [dates] Table-2 has two columns: [dates], [data] I would like a join query to have the following two-column output: Dates Data 01-01 some data 01-02 01-03 some more data 01-04 ...more >>

Help with decimal division on sql
Posted by Chris at 10/19/2004 1:19:09 PM
Hi, This is showing up as .00. How can I get the decimals on this select cast(5 / 240) as decimal(10,2)) Thanks...more >>

Simple Delete Statements
Posted by KritiVerma NO[at]SPAM hotmail.com at 10/19/2004 1:03:05 PM
I have a temp table which stores the temp values. I need to run a Query as Delete from #TEMP_DATA WHERE sName <> 'Samay' or Paymentplan <> -1 This Query returns me only the User with samay which has a paymentplan as -1 It does not diplay me the result which has either of the conditions true...more >>

datetime as host variables
Posted by sarab at 10/19/2004 12:59:04 PM
Hi, I am trying to write a query in ESQL which involves columns of type DateTime. How does one uses hostvariables for coulmns of type DateTime. Also, i am trying to use GetDate() function in the sql which errors out. E.g select count(*) from msdb..sysjobs where date_created <= getdat...more >>

Latest date from three date columns
Posted by Adrian at 10/19/2004 12:55:06 PM
SQL Server 2000 I have a table with a UserID column and three date columns CREATE TABLE [T1] ( [UserID] [int] NOT NULL , [Date1] [datetime] NULL , [Date2] [datetime] NULL , [Date3] [datetime] NULL ) ON [PRIMARY] GO INSERT INTO T1 values (1, '1 Jan 2003', '1 Jan 2004', '1 Jan 2005'...more >>

Multiple instances name ?
Posted by Patrick at 10/19/2004 12:22:29 PM
Hi, How can I know how many instances are running on my server and what are the names of those instances ? Thanks in advance, Pat ...more >>

Access remote XML in TSQL problem
Posted by mbiang NO[at]SPAM cramerdev.com at 10/19/2004 12:21:33 PM
Hi, I'm wondering what the best practice is for accessing a remote XML document in TSQL. Currently I am able to access it using the Microsoft.XMLDOM object and the sp_OACreate statement. However, I am running into roadblocks in that the size of the XML text returned is too big for an nvarchar...more >>

OPENROWSET and variables
Posted by Yuri Kazarov at 10/19/2004 12:09:06 PM
Hi! I am trying to create a stored proc that runs openrowset and I am trying to give a variable as an argument for the openrowset select statement. It won't work like this! It gives "Incorrect syntax near '@strTemp'." Does openrowset not accept any variables at all???? set @strTemp = 'SELEC...more >>

Can full text search be used for views?
Posted by Mac Dyer at 10/19/2004 11:58:43 AM
Hi I am trying to get full text indexing to work with views in SQL2000. Is this possible or is it tables only? If it is possible how do I set this up? -Mac ...more >>

Display Dependencies II
Posted by Ed at 10/19/2004 11:47:08 AM
HI, I try to use the following T-SQL to write all the dependent of each table into a table called "Depends" But I can only insert two fields "Name", "Type" I would like to do something like Insert Into Depends values (@ObjectName, Exec sp_depends @ObjectName) but it fails Thanks Ed D...more >>

SQL - Locking, concurrency, and long running processes
Posted by nathan.e.duncanson NO[at]SPAM lmco.com at 10/19/2004 10:28:29 AM
I have an application that needs to load data in bulk quantites. I use a single stored procedure to perform all the validation. Records which pass validation are loaded into the database, records that fail are returned with error messages explaining why they failed. The procedure can easily ru...more >>

Table deny modify (row lenght had exceed 8060)
Posted by max chen at 10/19/2004 10:24:46 AM
Hello Using sql2k. When I add a nvarchar column to a table, lenght exceed maximum lenght prompted, but it saved and opreation of inserting, deleting is OK. But, i can never modify the table with enterprice manager or query analyzer. The table is dead-lock, what a pain. Any idea ? P...more >>

SQL Help
Posted by SAXXX at 10/19/2004 10:22:30 AM
I have a table as below: mid pid rsid sid tdate rno m1 p1 r1 s1 1/10/03 null (1) m1 p1 r2 s1 1/11/03 null (2) m1 p1 r3 s1 1/12/03 null (3) m2 p1 r7 s2 1/10/03 null...more >>

Reviving Table
Posted by Oded Kovach at 10/19/2004 10:19:10 AM
Hello there I've by mistake drop critical table Is there a way to revive it? any help would be useful ...more >>

Display Dependencies
Posted by Ed at 10/19/2004 10:17:01 AM
Hi, I know I could use EM to show the Dependences of each objects(like Table, Views, Stored Procedures). Can anyone tell me how i am able to do it in T-SQL since I have 100 tables,100 views, 80 SP and I don't want to look at them in EM one by one. Thanks Ed...more >>

Finding User and Access
Posted by Patrick at 10/19/2004 9:58:44 AM
Hi Freinds, I need to know all users ( NT Aut. and SQL aut.) and theire access to databases and access levels. I need a script to figure this out. I know how to review through Ent.Mng but need to run script on SQL. Thanks in advance, Pat ...more >>

Is there a way to syntax check all stored procedures (without deferred name resolution)
Posted by mdixon NO[at]SPAM umpublishing.org at 10/19/2004 9:52:27 AM
We are in the process of making a big schema change. Removing many tables, changing column names, removing columns, etc. I would like to be able to check the syntax on all the stored procedures to see the ones in error. Also, is there anyway to disable Deferred Name Resolution and Compilation...more >>

replication
Posted by Justin Drennan at 10/19/2004 9:50:40 AM
I have replication running, transferring tables to a database. Is there a way I could replicate the data, however I would like the destination server to have 'slightly differnt' data. Eg. Row on server1 '1,1, test' Row on server2 '1,1, test2' Can this be done? thanks, ...more >>

Using macro for multiple insert statements into sql server
Posted by marina.sukhnev NO[at]SPAM thinknet.com at 10/19/2004 9:24:08 AM
Hi all, I have some question,I have to do multiple insert statements into SQL database, and it's really many. So I thought may be there is way to create some macro to do this stuff. I have: insert(projectid,date,category,amount,as_at) select(projectid,'date...','category',amount,'date.....more >>

Subquerie in CHECK Constrain
Posted by Nuno Silva at 10/19/2004 9:21:01 AM
Hi, I’m trying to create a check constrain that goes check in a table if the value exists. Something like: Natur_Jur IN ( SELECT ID_Natur_Jur FROM tblXML_V_NaturezaJuridica ) When I try to save the table I get one error message that I cannot have subqueries in check constrain, what I ...more >>

Please, I need a pro's help here
Posted by Chris at 10/19/2004 9:15:09 AM
Hi, I have tried all I know. This is my query select store,name,quantity1,prevquan,modif, (sum(case deli when 0 then quantity + over - deliv - short - damg else 0 end)) - (sum(case deli when 1 then quantity + short + deliv + damg - over else 0 end)) from openquery(server,'select cust...more >>

Select Question
Posted by John at 10/19/2004 9:03:02 AM
I have a table that has about 50 fields. I would like to select all the fields except for one. Is there a way to not have to say select field1,field2,.... for 49 fields? Thanks ...more >>

How do I use link server to link to the AS400
Posted by Vincel2k2 at 10/19/2004 8:57:03 AM
I need to get AS400 data into SQL Server 2k, I have tried link server using both OlDB and Odbc but I dont really how to set it up...more >>

Preventing overflow.
Posted by Sam Davis at 10/19/2004 8:55:08 AM
Anyone know of a function or method in which you can determine before you assign numeric data to a field if it will cause an overflow. We receive data files from vendors and on occasion a field which normally fits inside an int comes in as a numeric(18,0) (well that is the field size it would ...more >>

joins
Posted by Elisabeth at 10/19/2004 7:57:01 AM
HI, Given the following tables: create table Product (ProductID int primary key, ProductName varchar(50) ) insert Product values(1, 'Car') insert Product values(2, 'Bike') insert Product values(3, 'Van') create table Type (TypeID int primary key, TypeDesc varchar(50) ) inse...more >>

JOINS
Posted by Elisabeth at 10/19/2004 7:55:04 AM
HI, Given the following tables: create table Product (ProductID int primary key, ProductName varchar(50) ) insert Product values(1, 'Car') insert Product values(2, 'Bike') insert Product values(3, 'Van') create table Type (TypeID int primary key, TypeDesc varchar(50) ) inse...more >>

table size and indexes
Posted by CGW at 10/19/2004 7:51:02 AM
Newbie question: We have a table with 1.1 billion recs. Queries are slow. Our DBA says it's only an index problem. I'm curious. Is there a way to determine how many index levels/hits have to be transversed for a query... clustered and nonclustered? Is it true that with the right indexing, t...more >>

Complex Trigger
Posted by jez123456 at 10/19/2004 7:37:04 AM
Hi experts, I’ve got so far with this problem but now I’m stuck. Here is the code to create 3 test tables with data. CREATE TABLE [tblEmployee] ( [strLogonName] [varchar] (30) NOT NULL , [strEmployeeFullFirstName] [varchar] (50) NOT NULL , [strLogonManagerName] [varchar] (30) NULL , ...more >>

dotnet 2.0 in SQL
Posted by Bonj at 10/19/2004 7:05:37 AM
I've heard a lot of .NET 2.0 features integrating directly into SQL server - what are these features, and can you use them in express editions? ...more >>

Poor performance using Set FMTONLY On
Posted by EBohn at 10/19/2004 7:05:02 AM
I have two tables for which the application is issuing a query such as this to get an empty resultset of the correct structure: Set FMTONLY On Select col1, col2 from table1 Set FMTONLY Off Both queries specify the column names (no asterisks). Both tables have about 1 million rows. One of...more >>

Simple Best Practice Question
Posted by Marek at 10/19/2004 6:29:02 AM
Hi, I am looking for advice on best practice with SQL 2000. I have created a fairly simple database - about 12 tables. I am unsure about the best way to build the front end - it is going to be web based. Do I use asp.net code to create, edit and delete records or do I use stored procedur...more >>

Accessing "foreign" tables from a SP
Posted by M.L. at 10/19/2004 4:05:03 AM
Hi NG, I am executing an SP from a database in SQL Server 2000. My problem is that I would like to pass table-data selected along the way in this SP to a #temp-table in another db (on the same server). After this has been done I would like to continue working in this db (to avoid renaming e...more >>

Database desgin to store large files
Posted by StefanoMaind at 10/19/2004 3:23:01 AM
I need to develop a db to store large files; each files comes with a certain number of attribute (name, lenght ...). The main action is to search the attributes show results, select a record and download the file. The question is: it's better to use a single table which contains attributes and...more >>

least function
Posted by tarek at 10/19/2004 3:19:03 AM
i need a function that return the smallest number between some number in set like LEAST in oracle example: least(34,3.4,2,343) = 2...more >>

Checking for data changes in a trigger.
Posted by Howard at 10/19/2004 3:19:01 AM
Hi everybody I'm writing a trigger which must respond to any update to the table, UNLESS the update affected only a specific column. As the table has more than 40 columns, checking those column values from the "deleted" and "inserted" tables requires a lot of coding and will be vulnerable t...more >>

capturing drop statement on the server
Posted by inluvwitiou NO[at]SPAM bluemail.ch at 10/19/2004 1:36:38 AM
Hello Folks, Just one small question. It is possible to know in Sql Server when someone deleted a table ? I mean, i first thought about using Sql Profiler tool, add the required events, filter and so on,and trace for any drop statement occured on the server. But i thought it would be much bet...more >>


DevelopmentNow Blog