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 2006 > threads for wednesday february 1

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

Table Variable Problem, Please help!!!!!!
Posted by Scarlet at 2/1/2006 11:00:49 PM
This totally weird, I have no clue why it's happening. As a part of a script which loops through some records and does stuff based on that, I have an update state ment like following: Declare @TMPVAR TABLE (myCol nvarchar(3)) /*Loop starts here, @TMPVAR is populated with a 3 character string...more >>


Setting date to null
Posted by Tor Inge Rislaa at 2/1/2006 10:41:14 PM
Hi I have a data field i a table where I want to set all values to null. How? update myTable set myDate = ? from myTable TIRislaa ...more >>

Casting bit data type to represent something else
Posted by Robert Bravery at 2/1/2006 10:04:27 PM
HI all, I have inhereted a table that has a bit datatype with 0 representing Male gender, and 1 Representing female gender Is there a way I can cast/convert this to have it display M ... or F in my select statement Thanks Robert ...more >>

updating / inserting a cast column
Posted by Robert Bravery at 2/1/2006 9:45:21 PM
HI all, Is there a way/how is it done, that one can update and or insert values on a cast column. i realise that one has to convert the datatype back again, but Im unsure of the process here Thanks Robert ...more >>

How to parse millions of rows?
Posted by BenignVanilla at 2/1/2006 9:31:37 PM
I've got a table I need to loop through comparing each row to some other outside data source. This is a VB app, but I figured the SQL gurus here may have an answer or idea. BV. ...more >>

UDF question
Posted by Yannis Makarounis at 2/1/2006 9:07:29 PM
I would like a UDF to return the value of a different field each time depending on a parameter ie something like Create GetFieldValue(@aFieldName varchar(30), .....) returns varchar(100) begin Declare @ss varchar(100) Declare s cursor FOR Select <<@aFieldName>> From Table Where ...... ...more >>

Oracle "Dual" table equivalent in SQL Server
Posted by SG at 2/1/2006 8:38:52 PM
Hi, I am new to SQL Server. Can anyone please tell me if in SQL Server there is any equivalent of "Dual" table just like we have in Oracle ? Thanks SG ...more >>

Extracting Data from Badly Designed Table
Posted by George at 2/1/2006 8:07:12 PM
I've inherited a crappy data structure on a project, see table below .... CREATE TABLE [REPL_COMPONENT] ( [ReplacementID] [int] IDENTITY (1, 1) NOT NULL , [RepairID] [int] NULL , [Repl1] [int] NULL , [ReplCost1] [int] NULL , [ReplType1] [int] NULL , [Repl2] [int] NULL , [ReplCost2] [int...more >>



UDF to open xml file and return as table
Posted by Calvin KD at 2/1/2006 8:02:29 PM
Hi everyone, Is there a way to create a user defined function (udf), pass it an xml string, parse the xml string then return the results in a table-type value? example: CREATE FUNCTION MyTable(@xml Varchar(500)) RETURNS @tempTable TABLE (val1 varchar(50), val2 varchar(50)) AS BEGIN DECLA...more >>

Executing SP for all results
Posted by Doc Parker at 2/1/2006 6:25:19 PM
I would like to have my stored procedure executed for each item returned by a Select query Ex. Declare @file_id varchar(5) Select @file_id = file_id from GEN where this_value <> '' execute sp_mystored_procedure @file_id go Currently it only works for one record How do I ge...more >>

Executing SP for all results
Posted by Doc Parker at 2/1/2006 6:24:43 PM
I would like to have my stored procedure executed for each item returned by a Select query Ex. Declare @file_id varchar(5) Select @file_id = file_id from GEN where this_value <> '' execute sp_mystored_procedure @file_id go Currently it only works for one record How do I ge...more >>

monitoring changes on a view
Posted by Michael Schroeder at 2/1/2006 6:23:01 PM
I have a number of tables, each with many fields. I put together information by a view onto the relevant tables and fields. Now I'd like to monitor if data in my view has been updated or inserted. I don't care about the fields not included in the view. If something changes, the ID of the cor...more >>

forcing a truncate
Posted by dew at 2/1/2006 5:20:03 PM
I have a script that dumps data from several tables into one, where the source tables are not always the same data length. They are all varchar but some are 30 chars, some 255, etc. Below is my insert query, which errors because it won't truncate the 255 character data into 30. Is there a s...more >>

Passing Character paramter to stored procedure
Posted by Tim Harvey at 2/1/2006 5:09:25 PM
I need to pass to an SQL stored procedure a character parameter that exceeds the nvarchar limit, what would be the best way to accomplish this? Thank you. ...more >>

Delete vs. Truncate Table
Posted by Emmanuel Petit at 2/1/2006 4:53:16 PM
Using SQL server 2005 express, I am wish to delete data from my table. I cannot use TRUNCATE TABLE as some tables are referenced by a foreign key constraint. So I use DELETE FROM myTable This is fine, except that I would like my identification column, to start again at 1, rather than the las...more >>

Conditional Where Clause
Posted by Sarah Sarah at 2/1/2006 4:50:27 PM
Hi - I am writing a C# program using SQL Server. The form I have is collecting search criteria for a database. The main 3 fields are Category, Type, Author. Any combination of the 3 fields can be used. That is, All 3 fields can be used to search on, or just 2 or just 1. If the user selec...more >>

Help woth cursor!
Posted by Damon at 2/1/2006 3:41:50 PM
Hi, I have a stored procedure which cycles through a select statement and loads the results into a cursor. It then sends an email off for each result. I was wondering if it was possible to group all the results into one email? My stored procedure is below for reference:- OPEN surveilla...more >>

Is_Member shows 0 for known Role member
Posted by AkAlan at 2/1/2006 3:36:26 PM
I'm using Query Analyzer to determine if a user is part of a Role. I'm using: SELECT IS_MEMBER('SomeRole') It returns a 0 if I am connected using my login with Windows Authentication but 1 if using SQL Server authentication with a test login. I'm absolutely sure that both logins are membe...more >>

Newb question
Posted by Nock at 2/1/2006 3:18:57 PM
I am attempting to retrieve specific task related data from a Project server environment for input to an Excel 2003 spreadsheet and have created the following SQL view using: SELECT dbo.MSP_PROJECTS.PROJ_NAME, dbo.MSP_TASKS.TASK_NAME, dbo.MSP_TASKS.TASK_IS_MILESTONE FROM dbo.MS...more >>

Filtering rows
Posted by Swami at 2/1/2006 3:11:27 PM
I have the following table for example: id colA colB colC 1 test1 test2 15 2 test4 test5 13 3 test6 test7 15 I basically want to return the whole thing, except that there cannot be any duplicate colC entries....the colC corresponding to the id with the max...more >>

Creating a Dynamic Temporary Table
Posted by Shariq at 2/1/2006 3:03:16 PM
When I execute the following Stored Procedure with a parameter (EXEC MyProc 'MyTab'); it creates a table ##MyTempTable. What happened to the parameter @MyTempTable that was passed in the SQL statement? I meant to create the temp table named MyTab as passed to the SP from the statement. CRE...more >>

Code works without transaction but not with transaction?
Posted by Crash at 2/1/2006 2:44:00 PM
C# VS 2003 ..Net Framework V1.1 SP1 SQL Server 2000 SP3 Enterprise Library June 2005 I'm working with some code {not of my creation} that performs the following sequence of actions: - Open SqlConnection using SQL authentication with UID & PWD in connect string - BeginTransaction - Ca...more >>

NULL output when trying to script objects with SQL-DMO
Posted by CadeBryant at 2/1/2006 2:20:22 PM
The following statement SHOULD generate a script of the specified stored procedure. Instead, it returns NULL. Please tell me what I'm doign wrong: DECLARE @oServer int DECLARE @method varchar(300) DECLARE @TSQL varchar(4000) DECLARE @ScriptType int EXEC sp_OACreate 'SQLDMO.SQLServer', @oS...more >>

SQL Server 2005 - Need help on setting the permission using PERMISSION_SET = EXTERNAL_ACCESS on an Assembly.
Posted by pradev NO[at]SPAM gmail.com at 2/1/2006 2:14:50 PM
Hi there, We are using SQL server 2005 and I am trying to create an assembly with the permission set EXTERNAL_ACCESS as below CREATE ASSEMBLY Permissions FROM 'C:\SQL Labs\User Projects\Permissions\bin\Permissions.dll' WITH PERMISSION_SET = EXTERNAL_ACCESS But it gives me the below err...more >>

Unmanaged code from SQLServer 2005 CLR
Posted by Phil at 2/1/2006 2:06:27 PM
Hi, I am trying to write a C# user defined function in SQL Server 2005. From there, I have to access a dll that was written in unmanaged C++. I do not think that I can use dllimport since I need to create objects from that dll. So I created a C# wrapper for the work that I need to do with...more >>

ClrTrigger.HelpMe("Get Table Name?", Please)
Posted by Trex at 2/1/2006 1:51:30 PM
So, I've read some past articles that indciate there's no easy way of knowing within a CLR trigger what table the trigger is acting against?! I read there are 2 possible solutions: 1) Add a String argument to the CLR Trigger to pass the table name. Then Create a user defined function for...more >>

Advice on strategy to get next sequential number
Posted by Saga at 2/1/2006 1:27:16 PM
Hi all, I am updating an application that has a routine to get the next sequential number. This number is used as a client number, so everytime that a client is created this routine gets the next available number. The algorithm that gets the client number goes some thing like: get n...more >>

Capture MAC address in trigger
Posted by jenks at 2/1/2006 1:11:29 PM
I have a simple trigger that writes out records to another table when a user deletes a record. I am looking for a way to capture the Network Address value that is associated with the process. Is that possible ? Here is the trigger. I want to insert the Network Address value into the Lastuse...more >>

FORCEPLAN causes different results in SQL SERVER 2000
Posted by Chris Rutledge at 2/1/2006 12:45:52 PM
Hello, Has anyone run into a situation where using SET FORCEPLAN ON changes the results set of a stored procedure? I've got a large, complicated procedure that spits out a large hierarchical table of aggregated values. I noticed that some of the data was coming out incorrectly, even though ...more >>

Get Max(ondate) but not as aggregate
Posted by JDP NO[at]SPAM Work at 2/1/2006 12:33:43 PM
I know there must be a better way..... What I have done in the past is to make each column a subselect ,ca.ondate = (select max(ondate) from ..... ,cs.ondate = (select max(ondate from.... This appears to be a poor way and performance would suffer. So, onto a new way, but it's not workin...more >>

Dirty Reads
Posted by Jim Sibley at 2/1/2006 12:27:30 PM
I have a stored procedure this is called multiple times from within a transaction. The sp inserts rows in a table and also reads data from the same table. I need the reads to see data that has been written to the table within the same transaction. I've tried the SET TRANSACTION ISOLATION LEVEL...more >>

Where is Text description of the selected column
Posted by sasachi sachi sachi at 2/1/2006 12:26:42 PM
Where in the system tables I can find the text description of the selected column? Thanks in advance, *** Sent via Developersdex http://www.developersdex.com ***...more >>

Formating Ntext
Posted by Phil at 2/1/2006 11:37:34 AM
Hi, I am using SQLServer 2000 I currently have a table with just one field in it of type (ntext), the reason for this is there is a very large amount of data in it of an XML format. The data looks something like below althought this is only a small sample there is actually a lot more i...more >>

Design Question - Primary Keys
Posted by pagates at 2/1/2006 11:29:31 AM
Hello All, I am in the midst of designing a database, and I have a very general (pseudo-newbie) question. Should all tables have a Primary Key defined? As I understand it, there are two reasons to have a primary key: - It is used in conjunction with a Foreign Key on a table, and - It ...more >>

Locking
Posted by Tony Scott at 2/1/2006 11:28:38 AM
I have a Stored Procedure serving an web application that returns data from a number of tables. This dat resides on three seperate tables, two of which I join in a single select statement, the third I use to lookup data dependent on some data retrieved from the original select statement. O...more >>

function for absolute day value
Posted by billdebug at 2/1/2006 11:21:50 AM
In other words, from whenever the calendar begins, a serial number representing the day. if 1/1/1904 is 1, then 1/1/1905 is 366, and so on. is there a function in tsql to get this number from a datetime field value? ...more >>

Difference between nvarchar(4000) and nvarchar(3999) in SQL Server
Posted by Yuriy at 2/1/2006 11:00:28 AM
Hi Can anybody explain why this select returns different results in SQL 200 and SQL 2005? ========= if exists (select * from sysobjects where name = 'test') begin drop table test end GO if exists(select * from sysobjects where name = 'vw') begin drop view vw end GO create table t...more >>

i need to get the value of the max(date) of a table per person
Posted by Emmanuel Vandal at 2/1/2006 10:30:27 AM
I got a table SITUATION with a userID, a date and a situation. Unique number UserID SitDate Situation Int I Need to get the last situation of the UserID I'm stuck there with that query and it come out with the last for each situation I only need the last situation. Query: SELECT DI...more >>

CLR Trigger Error: Could not find Type xxxx in Assembly
Posted by Trex at 2/1/2006 10:22:44 AM
I've got the following code (C# code) but when I execute the Create Trigger statement I get the error "Could not find Type 'InheritanceTriggers' in assembly 'CLRTriggers' I believe I'm satisfying all the rules: the class is public, the method is public, and the method is static. Anythou...more >>

MAX()
Posted by Alan at 2/1/2006 9:19:28 AM
Hello, This request return an error: SELECT MAX(date_loading), n_station FROM Load_station WHERE n_load=238 AND date_unloading IS NULL In this request, I would like to know the value of the column n_station of the record with the biggest date_loading and where n_load=238 and date_unloa...more >>

New request is not allowed to start because it should come with valid transaction descriptor.
Posted by Wayne Sepega at 2/1/2006 9:12:15 AM
I have a C# windows service that uses MSMQ, DTC Transactions, SQL server 2005 and Notification services. I am doing the following in the service: OnStart Create the queue set the Peek Complete event call Begin Peek PeekComplete WaitHandle[] waitHandle = new WaitHandle[] { new...more >>

Clustered index
Posted by HP at 2/1/2006 8:40:42 AM
Can anyone please give me the difference between a clustered index and non-clustered index? Thanks!...more >>

Error: Data source name not found and No default driver specified
Posted by sunpalozzi NO[at]SPAM gmail.com at 2/1/2006 8:26:33 AM
Hello all, I have an application which was written in VB6. I used DSNless connection for the odbc connection to access sql 8.0. The application works fine on one machine and when I try to run the appl. on another machine I got this error. Any idea why?? Here is my connection strin...more >>

deadlock on parent-child relationship
Posted by Roger at 2/1/2006 7:50:10 AM
I have a program that inserts a row to a parent table and before it commits then calls another program to insert rows to the child table. This is causing a deadlock. When I looked at it, the first program has an X lock on the primary key of the parent table and the second program is trying to ge...more >>

osql and unicode
Posted by Panos Stavroulis. at 2/1/2006 7:29:10 AM
Hi, Is anybody aware of any problems with inserting unicode chars via osql. I've got some unicode text and when it gets inserted it inserts not the character I am expecting. It works fine from query analyser etc. My collation is set to the generic collation no problems there. Thanks. Pan...more >>

Need script to add days to a date, and polulate another table
Posted by tsgadam at 2/1/2006 7:27:31 AM
Hi guys n gals, I'll confess now that I only know enough sql to get me by when web developing, so I really need a hand with this one... I've basically setup a Scheduling system within our office where people chuck in projects and they get scheduled... Having been asked to setup some recurri...more >>

DBCC INDEXDEFRAG
Posted by Kevin Bowker at 2/1/2006 7:14:53 AM
I've automated defragging my indexes with a stored procedure, but can't capture the results of the defrag into a table. How can I go about this? I've tried: Declare @sql varchar(1000) Select @sql = 'DBCC INDEXDEFRAG(''SOSManager'',''tmpKeys'',''PK_tmpKeys'')' Insert Into maint_IXDEFRAG (Pag...more >>

Backup operation/job fail information
Posted by Nikhil Kumar Jain at 2/1/2006 6:53:08 AM
Hi, I would like to know about the internal information regarding sql backup operation. I want to monitor the Backup operation in all version of sql server. I am able to get all the information from the msdb database but i'll not find any information regarding backup fails. Suppose i wan...more >>

get the rows where the info from one table is not contained in the
Posted by Xavier at 2/1/2006 6:52:27 AM
hello, i have 2 tables which have 2 fields. Common in the 2 tables is the id, the other field is a varchar(256) example Table1 Id UserInfo 1 Pc A.Julien-3400 2 Soft V.Noris-2800 3 Liz Barbara -2345 Table2 Id Username 1 Julien 2 Jack 3 Barbara I want to get the id value where...more >>

URGENT: alternative to log file being full
Posted by Rob at 2/1/2006 6:39:13 AM
I have a 540 million row table; in it, there is a column whose datatype that I am attempting to alter using the following command: alter table tb_History alter column browser INT NULL go In running the above stmt for the first time, it filled up the tran log, so I expanded it to over 130...more >>

Alternate rows from different table
Posted by pkb at 2/1/2006 6:15:14 AM
Dear All, I have a requirement in which I have to display a row from one table & the corresponding row from the another table. e.g. say there are 2 tables T1 & T2. Suppose there is a record in T1 say R1 & the corresponding record in T2 as R1' then the display would come as R1 /* ...more >>

SQL Server 2005, UCS-2, and support for UTF-16 surrogate pairs
Posted by asanford at 2/1/2006 5:51:14 AM
Hello, 1) Does SQL Server 2005 fully support UTF-16 character types, rather than UCS-2? According to the following link, it does not: http://msdn2.microsoft.com/en-us/library/ms186939.aspx Our concern regarding UCS-2 vs. UTF-16 support relates to support for surrogate pairs. As I und...more >>

sqlSendMail
Posted by pjscott at 2/1/2006 5:49:32 AM
I'm using sql2000 and Access 2002. I have a stored procedure that sends an e-mail when a command button is clicked. I have an Access Report "rptMaintWo" that I want to send as an attachment. How would I add the attachement to the e-mail? Thanks for the help, Paul...more >>

Concurrent SQL Tranasactions Fail
Posted by martr01 NO[at]SPAM hotmail.com at 2/1/2006 4:48:01 AM
Hi all, I am having trouble trying to get an efficient way of checking if a value pair exists in a table, and if not inserting the value pair and returning the new id in the identity column. The old method I have used has been fine for some time but the table has grown to a very large size an...more >>

Table variable
Posted by Aviad at 2/1/2006 4:41:30 AM
Hi, I have few questions about table variable: 1. Which is better, using table variable or sub-query select statement? For example: Select * from table1 where [col1] in (select [col1] from table2 where [col1]='david' or [col1]='harry') Or: Declare tableVar tabl...more >>

help
Posted by kalikoi NO[at]SPAM gmail.com at 2/1/2006 4:21:08 AM
Hi If i use select * from table...i get the following 10 Energy Energy Energy Equipment & Services Oil & Gas Drilling 10101010 10 Energy Energy Energy Equipment & Services Oil & Gas Equipment & Svcs 10101020 10 Energy Energy Oil ...more >>

help with writting a trigger
Posted by Przemo at 2/1/2006 4:16:33 AM
Hi, I have 2 tables ''Data' and 'LatestData' with same fields: - ID, - TruckNo, - DateTime, - Comment. My application adds data to the Data table. I would like to have a trigger which automatically updates or adds (if not exists) newly added records into LatestData table. This trigger ...more >>

Table Var
Posted by Aviad at 2/1/2006 3:54:28 AM
Hi, I have some questions about table variables: 1. What is better to use table variable or sub-query? For example: select * from table1 where [col1] in (select [col1] from table2 where [col1]='david' or [col1]='harry') or: declare tabale tableVar ([col1] varchar(100)) insert tableV...more >>

DTS and EXcel
Posted by Warren Hughes at 2/1/2006 3:39:27 AM
I am currently creating a DTS that will carry out a select from a table and insert the results into a spreadsheet. Each sheet has a formula at the bottom that calculates the sum of column A. In the DTS the first step that I do is to remove all data that was inserted into the sheet last t...more >>

Looking for a mapping table
Posted by Enric at 2/1/2006 3:37:29 AM
I've got an Oracle table with 140 columns. I'd like to know which are the most perfect and optimizable mappings between Oracle and Sql2000k DW001H_FEEFEC NUMBER(8) NULL, DW001H_INSEGRIE NUMBER(1) NULL, DW001H_INOPVENT NUMBER(1) ...more >>

Login process error
Posted by musosdev at 2/1/2006 3:35:27 AM
Hi guys Just setup a new system running Win2k3, SQL Server 2005, etc (all msdn). I've got a web app (.net 2) which is running perfectly well, most of the time, and then there's one page where I'm getting the following error... Server Error in '/' Application. A connection was successfully...more >>

Only counting values that appear more than once
Posted by andystob at 2/1/2006 3:30:35 AM
Hi guys I have a table containing serial numbers, some of which occur more than once. What I want to do is to only count serial number that only occur more than once. How would I go about doing this? Many thanks ...more >>

Last Date of previous Month
Posted by Peter Newman at 2/1/2006 3:15:26 AM
ive been trying very unsucessfully to try and get the last date of the previous month, ie if i run the query today i want the result to be 31/01/2006 ...more >>

Critical issue
Posted by Enric at 2/1/2006 1:48:27 AM
Dear all, I've got a table with a datetime field and I would like to delete all those rows which are >= "2006-02-01 09:54:22.863" How do I such thing? Any help would be very appreciated. Thanks a lot, ...more >>

Truly Great SQL book needed
Posted by CharlesA at 2/1/2006 1:42:39 AM
Hi folks, this is not a technical problem at all. I just wonder if you could recommend a truly great SQL/Transact-SQL book to read I'm not interested in Henderson (I have it already) , or tips and tricks, I want a solid well written intro to have SQL works from the ground up, not just a list...more >>

Complete Command of given PID
Posted by peppi911 NO[at]SPAM hotmail.com at 2/1/2006 1:29:34 AM
Hi, we sometimes have statements which seem to block the whole server. now i use this to get information of running processes: SELECT spid, kpid, status, hostname , USER_NAME(uid) , program_name , DB_NAME(dbid) , memusage,* FROM master.dbo.sys...more >>

Backup information
Posted by Leila at 2/1/2006 1:11:09 AM
Hi, I need to get information from a backup file. For example the logical name of database file (data/log) that exist in the backup set. I know that RESTORE FILELISTONLY and RESTORE HEADERONLY provide this information, but I need to get them in variables, or something that makes me able to u...more >>

stored proc speed/viability
Posted by nathan001 at 2/1/2006 12:01:10 AM
this procedure below is for use in a web application, I could not figure out how to get the bottom table itemShares to join with the top select union portion. Is there a more efficient/faster/viable way to do this? ALTER PROCEDURE dbo.itemsharedata ( @uid int, @tid int ) AS c...more >>

Crosstab in TSQL
Posted by Marc Miller at 2/1/2006 12:00:00 AM
Does anyone know of any code to produce a crosstab table or temp table? I found several examples of stored procs to do this, however they just produce results. I need to produce a table to use to update another table. Thanks much, Marc Miller ...more >>

known, expected or weird behavior ?
Posted by AlexM at 2/1/2006 12:00:00 AM
Hi all, Please have a look at a script below: USE tempdb DECLARE @t TABLE (c1 uniqueidentifier, c2 uniqueidentifier) INSERT @t (c1, c2) SELECT y.id, NULL FROM ( SELECT 1 UNION SELECT 2 UNION SELECT 3 UNION SELECT 4 UNION SELECT 5 ) x (id) CROSS JOIN ( SELECT NEWID() UN...more >>

Complicated problem to solve in sql, please help!
Posted by yaniv danan at 2/1/2006 12:00:00 AM
please help me solve this problem i have with my database! i have 2 tables : table A --------- id name table B --------- id tablea_id title now, what i need is this: return ALL joined rows from table B and A but it should only return maximum 2 rows with the same tablea_id. ...more >>

another question
Posted by AlexM at 2/1/2006 12:00:00 AM
Hi guys, please create a table in tempdb running following USE tempdb CREATE TABLE delete_me (c1 int, c2 int ) INSERT delete_me (c1, c2) SELECT 1, 1 UNION SELECT 2, 2 UNION SELECT 3, 3 UNION SELECT 4, 4 Then running the script below you can get (I do) the error message : Server: Msg 2...more >>

Restoration (Database in use!)
Posted by Leila at 2/1/2006 12:00:00 AM
Hi, When I want to restore my database, there might be some users browsing the web site and therefore they have connection to SQL Server. I need a quick way to kill all of users and perform the restoration. I think I must use KILL command but instead of writing an script and a cursor, I thoug...more >>

Exec a resultset to .txt file directly.
Posted by Geir Holme at 2/1/2006 12:00:00 AM
Hi all. Is there a way I can have my resultset saved to a file directly from a SP using SQL2000. E.g. use northwind CREATE PROCEDURE ToTxt AS SELECT * FROM Customers /* I want something like*/ /* SELECT * FROM Customers TO c:\Cust.txt */ /* Then I can run the following to creat...more >>


DevelopmentNow Blog