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
August 2008
all groups > sql server programming > november 2005 > threads for monday november 21

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

INDEX
Posted by Kenneth at 11/21/2005 11:59:06 PM
IF I have two index Index1with column iCutomerID, sFName and Index2 with iCutomerID, sFName, sEName IM I right that I can delete Index1 none is clustred /Kenneth ...more >>


Identifying the logical files before restoring database
Posted by GS at 11/21/2005 11:55:05 PM
We have a requirement to restore the relational database from a .bak file. This .bak file can contain more than one data file and log file. How do we programatically determine the logical files within this bak file and restore accordingly. I tried using 'Restore Filelistonly', but then here ...more >>

Easiest way to determine if only client tools are installed?
Posted by Rob Meade at 11/21/2005 9:52:01 PM
Hi all, I've been trying to register my local sql server in enterprise manager without any success - I can see my remote sql server, but it just wont connect to the local one on the laptop - I think I may have only install "client tools" in the past because I thought I'd only want to connec...more >>

Debug sp from Business Intelligence Dev Studio?
Posted by TomT at 11/21/2005 9:38:02 PM
Is there a way to debug SQL Server 2005 stored procedures from within BI Studio? I don't see any way to do it, but may be missing something. I can do it from a VS 2005, but some systems don't have that installed. Thanks, Tom...more >>

Size of Record if fields are NULL?
Posted by Stephen Howe at 11/21/2005 9:30:38 PM
Hi, Using SQL Server 2000 Qn 1. Is the record size smaller if a field that of type int is Null for that record? Have I saved 4 bytes? Does it make any difference for any other SQL data type? Qn 2. Can you have FK's on fields that are nullable? If you can, is it considered poor practice...more >>

@@FETCH_STATUS loops?
Posted by Contraptor NO[at]SPAM gmail.com at 11/21/2005 8:49:50 PM
I've seen in several examples where cursors are used particularly on this board that people use While @@FETCH_STATUS <> -1 BEGIN IF @@FETCH_STATUS <> -2 BEGIN ... END END On most of the Microsoft BOL examples I see that they seem to always use... WHILE @@FETCH_STATUS = 0 BE...more >>

dts import wizard
Posted by wendy elizabeth 26th at 11/21/2005 8:25:04 PM
I want to import an excel spreadsheet 2000 into a sql server 2000 database. When I import the columns from the excel spreadsheet, I am not always certain what columns, and how many columns are included in each excel spreadsheet in advance. Thus is there a copy to automatically import all t...more >>

Remove records from result based on record in another table
Posted by BenignVanilla at 11/21/2005 7:31:13 PM
I am working to customize some forum software. So I have a table of topics, and I added a second table (read topics) that tracks whenever a user reads a topic. Currently there is a query that grabs records from the topics table based on a date range, so users can see topics posted since x days...more >>



Creating UDF In SQL Server 2005?
Posted by mikes NO[at]SPAM vmsmailingservices.com at 11/21/2005 6:46:12 PM
I find PLENTY of examples of User Defined functions. However, I struggle to see how/where to SAVE this function! I can go under the database, Programmability, Functions, Scalar Functions, and create a scalar function. However, when I click SAVE I get prompted to save the ..sql file to disk. If I...more >>

Creating UDF?
Posted by mikes NO[at]SPAM vmsmailingservices.com at 11/21/2005 6:45:31 PM
I find PLENTY of examples of User Defined functions. However, I struggle to see how/where to SAVE this function! I can go under the database, Programmability, Functions, Scalar Functions, and create a scalar function. However, when I click SAVE I get prompted to save the ..sql file to disk. If I...more >>

CREATE TRIGGER gives error 21001
Posted by alto at 11/21/2005 6:37:41 PM
I want to use a trigger to enforce referential integrity on a table where a FK is not possible (PK of the referencing table is composed and one of its columns is absent in the referenced table). The trigger passes the syntax check but fails to be saved with the following msg: "Error 21001:[SQL...more >>

Getting the ID from an insert
Posted by RSH at 11/21/2005 4:12:18 PM
Is there a way using t-sql to get the ID of an inserted row following the insert? Example: @RowID as int @RowID = INSERT INTO Contacts (Person,Phone_Number) Values('John Smith','123-456-7890') SELECT * FROM Contacts WHERE ID = @RowID Thanks, ROn ...more >>

How to convert one column dataset to multiple columns?
Posted by Caspy at 11/21/2005 4:11:45 PM
I nee to print labels for employees. Each lable has Employee ID, Employee Name, Department Name, and Office Code. The label sheet has 4 labels per row. I am using SQL reproting service to generate PDF file and print it on label sheet. Here is dataset I have: EmployeeID EmployeeName D...more >>

Need SQL statement help!
Posted by ROBinBRAMPTON at 11/21/2005 3:04:12 PM
Hello everyone, I need help with two SQL statements The first is: I have a table called tbSitters which contains two columns named bsLastName and bsAboutMe. I want to be able to find records where the value stored in bsLastName can be found in bsAboutMe for a single row (not all records) ...more >>

SQL Equivalent of Access's MAX & IIf
Posted by Will Chamberlain at 11/21/2005 2:28:34 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 >>

SQL Profiler Access without being sa
Posted by Patrick at 11/21/2005 2:25:11 PM
Hi Freinds, SQL 2000 How can I give a user SQL profiler access without making him SA Thanks in advance, Pat ...more >>

SQL 2005: Table variable problem
Posted by TomT at 11/21/2005 1:57:06 PM
I am having a strange problem in a stored procedure using a table variable. Here's a snip of it: DECLARE @tblVar TABLE ( ordnum int, ordDate datetime, ordVal money ) INSERT INTO @tblVar SELECT order_num, creationdate, 0 FROM dbo.Orders WHERE (creationdate > '1/1/2005') ...more >>

date ranges question
Posted by got4a at 11/21/2005 1:50:24 PM
Hi, I am working on Time Off schedule. Here is how SQL Server table looks like: ID BeginDate EndDate ======================= 1 01/03/2005 01/05/2005 I have a webpage in VB.NET that employees are using to add vacation dates for themselves, which are then inserted into the above tab...more >>

disable constraints
Posted by Yaniv at 11/21/2005 1:31:53 PM
Hi, I disabled all constraints on a database before using DTS by running the following command: exec sp_MSforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL' When comparing the source tables and the destination tables after the DTS I found that some DEFAULT constraints were not disabled. ...more >>

Current Year
Posted by newbi at 11/21/2005 1:25:58 PM
Hi, I am new at T-SQL. I need to access a table with the field inv_dt. I need the sum of the invoices where it takes only the sum of the current year invoices. When 2006 arrives I only want the sum of 2006 invoices without having to rewrite the code for each year that rolls around. Any ...more >>

Trigger? Function? Bestway
Posted by jeffbellus NO[at]SPAM yahoo.com at 11/21/2005 1:15:20 PM
Newbie question: What would be the best way to implement the following: I have a database in production with an amount field as an int. I need to to encrypt the amount using a simple encryption method of varchars and placing that value in another field (varchar(100)) and insert a zero valu...more >>

Dynamic SQL Concatenation
Posted by scott at 11/21/2005 1:13:50 PM
In FIGURE 2, I'm successfully building a dynamic statement on Northwind. However, in FIGURE 1, I'm trying to add a WHERE subquery that should return FIGURE 2's results but only for the last 10 days. I'm getting a strange error in QA. Can someone help me with my syntax in FIGURE 1 near the ERRO...more >>

Restoring a database on Linked server
Posted by Rodger at 11/21/2005 1:13:12 PM
Hi I have enabled manual log shipping on a server, Every night the database is backed up on Server A and restored on server B . The restoration happens with a stored procedure created on Server B, executed from server A. the command is exec serverB.master.dbo.restore_db After this com...more >>

Local variables in stored procedures
Posted by Svenne at 11/21/2005 12:39:54 PM
Hi! I'm using SQL Server 7.0 and it is a multiuser application. My problem is that sometimes during parallel calls to a stored procedure it produces wrong results. It takes between 5 to 20 sec to execute the stored procedure. To be able to know why the result sometimes is wrong I will log som...more >>

dm_db_index_physical_stats
Posted by Koni Kogan at 11/21/2005 12:33:57 PM
Is this function as well as alter index reorganazi or rebuild backward compatible to sql2k? Thanks, KOni....more >>

How to install Visual Stuidio Template for SQL 2005 Database proje
Posted by Ram at 11/21/2005 12:31:04 PM
I installed sqlserver 2005 developer edition and running vs2005 developer edition. Visual Studio Project templates are not installed by default. How can i get the project templates installed with out going through set up? -- Thanks, <Ram/>...more >>

Intermittent Error!!! Help!!!!
Posted by Raphael Rodrigues at 11/21/2005 12:24:42 PM
I have a sequence of 3 operations, and its repeated many times by an aplication (timer loop) 1) Open a transaction 2) Execute 1 (ONE) insert in a "simple" table. This table has only an auto-increment identificator and some fields numbers and chars. 3) Comitt the transaction This proccess...more >>

SQL statement help needed!
Posted by ROBinBRAMPTON at 11/21/2005 12:09:31 PM
Hi everyone, My website database (msSQL 2000) has a number of tables of which two are named tbSitters and tbPcodes. Both tables have a common column named bsID. (tbSitters.bsID is a primary key and tbPcodes.bsID is a foreign key) I need to find out which records in the tbSitters.bsID column...more >>

Boolean data type
Posted by TS at 11/21/2005 11:25:04 AM
Is there a boolean data type in SQL? I'm trying to bind a number of check boxes and radio buttons in a .net app to some columns in a SQL table and I don't see any boolean data type. What should I do if I want to assign a data type "boolean" to a table's column in SQL? -- TS...more >>

Date/Time Question
Posted by Ben at 11/21/2005 11:21:06 AM
Hello, I do alot of searching by date alone and i currently have a column that will be converted to a date/time field. Is there any advantage to separating the date and time into 2 columns or would this be a waste of resources? Thanks for the input. ben...more >>

app role
Posted by Roy at 11/21/2005 11:19:10 AM
We can use sp_setapprole to enable application role. How to disable the app role?...more >>

uninstall Sql Server 2005 Beta
Posted by ghoting at 11/21/2005 11:15:27 AM
Hello, I am trying to uninstall Sql Server 2005 Beta in order to upgrade to the Sql Server 2005 Enterprise Edition but without success. Here is what I have already done: I had VS 2005 2.0 Beta and Sql Server 2005 Beta installed. I wanted to upgrade to the Professional Editions so I uninst...more >>

Checking Date column within the same table - DDL included
Posted by gv at 11/21/2005 11:02:16 AM
Hi all, I have included All sample data, just copy and paste in Query Analizer I would like to modify the query below to return all that had a prior "pretest" 30 days prior or equal to the "test". so the return result that I would like would look like this: 1 A 1997/12/08 pretest 1 A 19...more >>

Need some help with a query
Posted by night_day at 11/21/2005 10:53:50 AM
Hello everyone, I have a table that is setup to record a page of web form elements. The form elements are dynamically created. Each page contains x number of questions. (x depends on many different things There are 4 pages. Since we never know how many form elements are on the page, the DB ...more >>

How to do this?
Posted by Paul at 11/21/2005 10:26:05 AM
I need to combine two fields in a single column in a query like Stock Number and Product in a way it will look like this: Stock NumberA - ProductA Stock NumberB - ProductA Stock NumberC - ProductA .....and so on What I want to achieve here is the position of the "-" seperate the Sto...more >>

Sending and shredding XML
Posted by RSH at 11/21/2005 10:21:14 AM
I am struggling a bit with Service Broker. Basically I am trying to setup a scenerio where I perform an insert(update, delete)on one server and the insert is sent as XML to a second server where the same insert (update or delete) will take place. All of the samples are pretty simple and ...more >>

Is it possible to run two ODBC statements from the same connection?
Posted by hagaiy NO[at]SPAM yahoo.com at 11/21/2005 9:55:38 AM
Hello, I am using ODBC to work with Microsoft 2005 SQL server express from a c++ program, when trying to run a select sentence I am getting the following error: "Connection is busy with results from another statement" I have searched the net and from what I understand it is not possible ...more >>

Sequential vs. Simultaneous processing
Posted by Goran Djuranovic at 11/21/2005 9:27:22 AM
Hi All, First the term explanation so you know what I am talking about: 1. HL7 - file that contains patient information; tab delimited. 2. CloverLeaf - interface engine that translates HL7 files into = different formats. For those of you who have some experience in single- and multi- = thr...more >>

Newbie question...Assigning a result set to a variable
Posted by RSH at 11/21/2005 9:26:53 AM
Hi, I am trying to build a stored procedure that Querys a table, and returns the resultset as XML so I can send it as a Service Broker Message. This is my non working code: .... DECLARE @QueryResults varchar(max) OUTPUT @QueryResults = SELECT * FROM HumanResources.Employee FOR XML A...more >>

making a set of possible values for a column
Posted by Brian Henry at 11/21/2005 8:53:03 AM
I use to know how to do this in oracle, but cant remember... how do i set up a constraint on a column in a table so it can say only be "START","STOP","INPROG" only as the text that column can have? thanks! ...more >>

Query Analyzer Error - Exceed limit of 256 tables
Posted by TroyS at 11/21/2005 8:52:52 AM
I have a view (View_A) that retrieves data from another view (view_B). There are several Union All statements in View_A that retrieves/groups various data elements together; the all use the same FROM View_B with differences in the WHERE When i try to open View_A, i get the following: -[Mi...more >>

Database Backups
Posted by Lontae Jones at 11/21/2005 8:10:02 AM
can I get someones opinion of full backups? I currently have full backups 3 days a week and t-logs every hour. I was thinking about switching to full bakcups every day. Is there a problem with this strategy?...more >>

SQL Work shifts
Posted by yurps at 11/21/2005 7:49:18 AM
Hello, I need a database to model various work shift for different companies. I don't want to set each day, but rather know that company A works 10 hour days 4 days a week and Company B does 7.5 hour days 5 days a week and 1 4 hour day on saturday.... Frankly I am perplexed how to go abou...more >>

Get datetime inserted
Posted by Stijn Verrept at 11/21/2005 6:08:09 AM
I'm wondering the following: If I have a table with records that don't have a timestamp column, is it possible to get to know when they were inserted? Thanks in advance, Stijn Verre^t....more >>

SET and SELECT Help Please
Posted by Patrice at 11/21/2005 5:48:31 AM
Hello, I am using the following code as part of a routine for an accounting procedure - the problem is that I originally was using a simple Select statement and then setting the variables to those amounts which did not return errors but once I put more than one set of related records in the...more >>

Getting a simple function to run in the CLR . Please help :-(
Posted by Simon Harvey at 11/21/2005 4:39:37 AM
Hi everyone, If anyone can help me with the following, I would be very greatful. I want to create a pretty basic function under sql server 2005's runtime. I've made the assembly and attached it. And when I do something totally simple like return a simple string it works fine. However when ...more >>

Qualification of system tables in queries
Posted by jdc at 11/21/2005 3:50:02 AM
I found an "undocumented" stored procedure that returns the size of the tempdb called sp_tempdbspace - this stored procedure queries two different tables to compute the allocated size of tempdb as well as figuring out how much of that size is being used. My question is about the queries u...more >>

Retriving data with same ID into single row
Posted by s3v3n at 11/21/2005 3:33:42 AM
Hi, I have a problem with retriving data from one table. Table looks like this: ID CONTACT EMPLOYEE_ID And now, one employee can how more than one contact, like this ID CONTACT EMPLOYEE_ID 15 e-mail 553 16 phone 553 ...and so on. How can I retrive this contacts, for same employ...more >>

Problem with Select Top ....(incorrect syntax near '@p')
Posted by td1369 at 11/21/2005 12:27:10 AM
hello, i want to return a nr of records depending on the parameter @nrRecords I tryed to execute this in the queryanalyser - but i get a error, what is wrong? Declare @nrRecords int SET @nrRecords=10 SELECT TOP @p companyName FROM myTable the error is Server: Msg 17...more >>

2005 and Triggers?
Posted by Arthur Dent at 11/21/2005 12:00:00 AM
Hi all of you who've had a chance to play with 2005... I have two quick questions with triggers in 2005. 1. Will there be available true "BEFORE" triggers as opposed to the "INSTEAD OF" triggers? 2. Will triggers now be fire-able in a "FOR EACH ROW" style as opposed to bulk triggers? ...more >>

Unique pairs
Posted by Tumurbaatar S. at 11/21/2005 12:00:00 AM
A constraint UNIQUE (col1, col2) _partially_ protects from inserting duplicate values for col1 and col2. It does not detect whether col1 and col2 values been inserting in reverse order. For example, val1/val2 - one record and val2/val1 - another record. Am I right? If yes, how to protect from t...more >>

Max() query problems
Posted by CJM at 11/21/2005 12:00:00 AM
I have a bit of code that checks through all orders and looks for all orderlines where the status is either closed, completed or cancelled, but where at least one is cancelled, and it sets the status of the order to closed. I also have an equivalent script which sets the order status to com...more >>

How to this with SQL
Posted by Serhat AKALIN at 11/21/2005 12:00:00 AM
Table and sample data is id date name value1 1 15-11-05 a 5 2 15-11-05 b 2 3 16-11-05 a 3 4 17-11-05 a 7 5 18-11-05 a 5 6 18-11-05 b 1 If date parameter ...more >>

MSDE to SQL Server 2005 Express
Posted by David Lozzi at 11/21/2005 12:00:00 AM
Howdy, My company is setting up a new dedicated hosting server and we're debating using the new SQL 2005 verse the MSDE. I'm not familiar with the new version, so I have one big question:: Outside of the connection string, will any syntax in my existing ASP.NET script/stored procs have to chan...more >>

sql code left outer join
Posted by Raj at 11/21/2005 12:00:00 AM
Hi, I'm trying to left outer join two tables onto one. For some reason the table is losing some of the left table data (vw_standard_costing_items). Please can you tell me why, and a fix please? I'm left outer joining vw_standard_costing_budgeted_amount and vw_standard_costing_pur...more >>

Outer join problem
Posted by Pau Domínguez at 11/21/2005 12:00:00 AM
Hi. I mean left outer join must return all rows in the left table. Why? SELECT DISTINCT a.cliente, a.Expositor FROM prm_Exp_x_PV a LEFT OUTER JOIN prm_paneles_x_pv c on a.id_expv = c.id_expv LEFT OUTER JOIN prompaneles d on c.panel = d.codigo WHERE ...more >>

Sp or UDF
Posted by Vikram at 11/21/2005 12:00:00 AM
i have a sp in which i am using multiple queries to build a single table. Now i want to use the result of this sp in other queries or as a source of a cursor.. How can i achive that ? will converting this sp to UDF is a good option ? ...more >>


DevelopmentNow Blog