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 2003 > threads for wednesday october 29

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

Identity
Posted by Jonas Mandahl Pedersen at 10/29/2003 11:35:55 PM
I have two cursors insertíng quite often into a table with identity on the ID. Can anyone confirm that by calling select @@IDENTITY AS 'Identity' i get the last Id for the record inserted by a specific cursor. ex listed in order of execution: 1) Cursor1 : insert blablabla 2) Cursor2 : inser...more >>


Foreign Key OR 0
Posted by Michael Carr at 10/29/2003 11:34:10 PM
I'd like to set up a constraint on a field such that it must be either zero or equal to a foreign key. Is there a way to do this in SQL Server? Thanks! Michael Carr ...more >>

using the replace function inside the select statement
Posted by AussieRules at 10/29/2003 11:05:44 PM
Hi, I have a select statement that selects a number of rows, and concatinates this into a single value returned to the client. ie Select a + b + c + d, c, d ,e .... For formatting reasons I have included a carraige return in the select statement so that each record is on its own line. ...more >>

Alter Table Alter Column Syntax
Posted by Sanka at 10/29/2003 11:02:34 PM
Hi, I have a table called "Invoice" with "InvoiceDate" field defined to be "DataTime" data type with length 8 and Allow Nulls true. I need to change the Datatype of "InvoiceDate" field to Varchar(20), Not NULL with Default "---". Can this be done through SQL statements. Regards, ...more >>

code to copy tables
Posted by John A Grandy at 10/29/2003 10:24:06 PM
does anyone have some tested t-sql they use to copy tables from one db to another, possibly on different sql-svr-instances ....with option to completely overwrite target table metadata & data ? thanks. ...more >>

Syntax for file name
Posted by newman at 10/29/2003 10:03:05 PM
I am writing a script tha will insert some data into a file on a daily basis, but I want to have the month attached to the file name like 'Sales_October'. I have tried a couple of different things but nothing seems to work. Can anyone help me with the syntax for creating this file name ...more >>

Is Column Exist?
Posted by Ragu at 10/29/2003 9:40:10 PM
Hi All, Please any one help me to find the command to find the particular column in table. If the column not available i need to add the column. The actual problem is given below If NOT Exist (dbo.<Column Name>) ALTER TABLE dbo[<table Name>] ADD <Column Name> INT NULL Please pos...more >>

Replicating Result Set with T-SQL
Posted by Tomer at 10/29/2003 9:32:50 PM
Hi All, Can you please suggest an easy and efficient way to multiple (Make replicates) of my result set? For Example: If I have the following TSQL: SELECT OrderDate, cost From Orders Where OrderID=7 Which obviously return 1 record: Oct 29 2003, 700 But I need to multiply it (with...more >>



Cannot STart Enterprise Manager
Posted by news.verizon.net at 10/29/2003 9:25:17 PM
All of a sudden, I cannot get into enterprise manager. I am getting following error. Can someone please help me to fix it. Thanks --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Runtime Error! Program: C:\WINNT\system32\mmc.exe R602...more >>

Accidentally dropped the table
Posted by satya at 10/29/2003 7:49:46 PM
Hai all, My database contains 24 tables. I accidentally dropped a table(static).The Dropped table is parent table for other two tables . I have back up of the database yesterday's night The table I dropped didn't changed from yesterday's night .Is it possible to restore only the dropped table...more >>

delete with stored procedure
Posted by shank at 10/29/2003 7:09:05 PM
I have the below ASP code that calls a stored procedure that is supposed to delete a record from the database. The stored procedure is below also. The query works in the query analyzer and the SP checks OK syntax wise. But when I run the code, it does nothing. No records are deleted. Does anyone ...more >>

Transaction log file
Posted by Fran Varona at 10/29/2003 6:37:03 PM
Hello from Spain. I know that the transaction log file is important if you want to rollback the transactions you have done to data... But I have a question about that. Is the mdf file the only one who has the data? I mean: imagine that I want to copy a database from one server to another, and ...more >>

External Databases and Views
Posted by Ken at 10/29/2003 6:21:04 PM
We have two different Databases on one SQL Server. I would like to create a view containing data from two tables in one database and one table in the other database. Is this possible and if so, what is the syntax for this relationship in the Select Statement of a View....more >>

parsename
Posted by HartA at 10/29/2003 5:43:55 PM
I have a table with a NAME field that I need to break apart. I need to take these fields and update another table. data sample: Doe,John E Doe,Andy Doe,Jim T With the code below(this was passed to me) if MiddleInit doesn't exist is pushes Firstname where MiddleInit goes. Also how do I d...more >>

fileexist
Posted by HartA at 10/29/2003 5:31:29 PM
Can you use xp_fileexist to check a partial file match ? c:\dataload\itm* ...more >>

Variable for a table name
Posted by Dave Barrans at 10/29/2003 4:46:19 PM
I need to use variables for the table and column names in a SELECT statement somthing like - DECLARE @Table varchar(50) DECLARE @Field varchar(50) Select @Table = (select NameTable from Config) Select @Field = (select NameField from Config) SELECT a.CUSTNMBR, a.CUSTNAME, FROM @Tabl...more >>

Simple Transaction;;;;Please help
Posted by SStory at 10/29/2003 4:45:43 PM
I don't know how in a stored proc, but need to do a transaction in the transaction I want to INSERT A RECORD IN ONE TABLE AND UPDATE A RECORD IN ANOTHER TABLE both pass or both fail. so I need a transaction. Could anyone give some sample stored proc that would do an insert and the...more >>

Use BCP from .NET?
Posted by Glen at 10/29/2003 4:39:13 PM
Is there any way to use the bcp_batch type processing to copy data from program variables in a .NET language? Thanks, Glen ...more >>

updating rows
Posted by shane at 10/29/2003 4:31:10 PM
I would like to know how to update rows from a staging table to a live table. test for job number then test for job desc then test for percent complete then test for der_date is they are the same as the staging table then end else update the the row that has changed. This is to be run over a whole s...more >>

New table data based on if statment
Posted by JoeProgrammer at 10/29/2003 4:28:53 PM
In this view i want to set a flag(boolean) column value based on whether the C.email_addr is null. N for empty and Y for populated. I can't find a solution in any of my books. Any help would be greatly appreciated. TIA Joe... create view UPS_SQL as select O.Ord_No, O.Cus_No, O.Bill_To_Na...more >>

CPU% and Memory%
Posted by Tim Xox at 10/29/2003 4:13:45 PM
Hi, Id like to collect some information about SQL server itself like "% of CPU Usage" or "% of memory usage". Something like SELECT @@CPU_Usage ........ ? Thanks, Tim. ...more >>

sp_addlinkedsrvlogin problems
Posted by John Beatty at 10/29/2003 4:08:05 PM
Hi - When using linked SQL Server definitions, and using sp_addlinkedsrvlogin, is there any way to designate the remote user as a Windows Domain login? Given that OHIO is the Domain and OHIO\Joe is in the System Administrator role on the remote server; sp_addlinkedsrvlogin @rmtsrvname ...more >>

design change on multiple tables
Posted by Paul at 10/29/2003 3:49:46 PM
I'm trying to setup replication on a fairly big database (100 tables ish), of which most tables have PK as IDENTITY. So i have to set them to be NOT FOR REPLICATION on the table design. But going through Enterprise Manager takes *ages*, and the script that it generates is really complicated as ...more >>

SubQuerying Vs Joining
Posted by Awah Teh at 10/29/2003 3:49:19 PM
Which is most effective (consider the query below for an example)? Please give me some explanation (FMI:) as to why one is faster over the other. --Both Queries are designed to get the users information of users that received passes in the Year of 2003 --** *************** --** Q...more >>

Compound Key vs Composite Key
Posted by CJM at 10/29/2003 3:37:14 PM
Many moons ago, I did an SSADM course... in it I learnt the formal meanings of 'Compound' & 'Composite' keys... Recently, I was talking with a colleague, and where he used 'Composite', I used 'Compound', but strangely neither of us noticed the discrepancy and both of us were clear and in agree...more >>

case-sensitive search
Posted by TJ at 10/29/2003 3:32:47 PM
We are on SQL 2000 with a few case-sensitive databases (vender requirement). Is there some sort of SET command or directive that we can include in our stored procedures that would ignore the case and search on the content? -- Any and all contributions are greatly appreciated ... Regards TJ ...more >>

Exceeds configured Threshold
Posted by C K at 10/29/2003 3:31:55 PM
I have a large query that exceeds the configured threshold of the sql server. The error msg is: The query has been canceled because the estimated cost of this query (76) exceeds the configured threshold of 60. Contact the system administrator. Changing the threshold is not an option, and I ...more >>

Server Password..
Posted by I_AM_DON_AND_YOU? at 10/29/2003 3:15:19 PM
I know this question should be posted in Windows Newsgroup...but no one is reply here.... and I know people here are very smart so may be someone tell me very quickly here... I forgot the password of Administrator user of Windows 2000 Server. Could any one please tell me how do I change it and...more >>

RunningCounts By Week
Posted by Suresh at 10/29/2003 2:58:14 PM
IF EXISTS(SELECT * FROM information_schema.tables WHERE table_name = 'Contributions' AND table_schema = 'dbo') DROP TABLE dbo.Contributions GO CREATE TABLE dbo.Contributions( ContributorName VARCHAR (50) NOT NULL, ContributionDate DATETIME NOT NULL ) GO INSERT INTO dbo.Contrib...more >>

wanting to select a field, but automatically translating language
Posted by jeremyirons NO[at]SPAM genevus.com at 10/29/2003 2:41:07 PM
Using PHP and MSSQL, what I want to accomplish is to SELECT a field and have it automatically translate language based on content in another table. What I would normally do is have a few function wrappers in PHP that would take care of checking & updating the language translation table with a...more >>

UTC Dates
Posted by Bob at 10/29/2003 2:22:06 PM
I am currently trying to write a view that displays data from the database. Some of the dates have been entered into the database in UTC format. Does anyone know how I can take any date and transform it back into the correct local time for that date. ie. A date in the summer might only be altered by...more >>

Optimizer challenged
Posted by Bob Frasca at 10/29/2003 2:10:35 PM
Consider the following two Updates. ----------------------------------- -- Conference Credits ----------------------------------- UPDATE [LinkedServer].Subscriber.dbo.tblConferenceCredit SET fldBillingEventID = @BillingEventID WHERE fldCreditID IN (select fldCreditID from tbl...more >>

Error converting varchar to float
Posted by Vikas at 10/29/2003 2:10:04 PM
I have some data in a varchar column. The data looks like 0.7049. I'm trying to convert this data to float and populate another column. I have tried using CAST and CONVERT with the same result. I get this error, "Syntax error converting the varchar value '0.7047' to a column of data type in...more >>

VB script
Posted by Carla at 10/29/2003 1:55:54 PM
I know this is a silly question and I need to learn VB. But until then I would appreciate any help on this. Following is the script I need to write and I don't know how to do create the global variable and set whatever I need to have to make this script run. I haven't even been able to par...more >>

bulk insert and network drive
Posted by Rogério at 10/29/2003 1:47:21 PM
Hi all, This sample is from BOL: BULK INSERT Northwind.dbo.[Order Details] FROM 'f:\orders\lineitem.tbl' WITH ( FIELDTERMINATOR = '|', ROWTERMINATOR = '|\n' ) in my environment "f:" is a network drive and when I run the statement the error is: "...more >>

trigger problem!
Posted by Lars Grøtteland at 10/29/2003 1:46:39 PM
Hello! How can I set a trigger to trig only when one field has changed? I want to update a datetime field "chgDate" when the Password field has changed. How can I set that trigger? -- - Lars ...more >>

Referential Integrity Checking based on one row
Posted by Martin Schweitzer at 10/29/2003 1:41:43 PM
Hello! I am searching for a easy possibility to check wether a certain record in the table is referenced by an record in another table using defined foreign key constraints! Thanks! Martin ...more >>

Spell our Numbers
Posted by jasonl22 NO[at]SPAM yahoo.com at 10/29/2003 1:33:51 PM
Is there a funtion or combination of functions in sql server that can be used to spell out numbers? If not, does anyone know a work around? For example, I need to convert 123 to be "One Hundred Twenty Three". Thanks....more >>

Get filename list in SQL?
Posted by NB at 10/29/2003 1:14:18 PM
How to use SQL to get a list of file names under certain directory in SQL server and load the file names into a table or cursor and loop through the file name from there? Thanks a lot, NewBee...more >>

Update/Insert where 3 fields combined are primary key
Posted by alex NO[at]SPAM totallynerd.com at 10/29/2003 1:14:10 PM
Hi folks, I'm trying to insert/update a table with data where three fields combined are the primary key/unique identifier. Here's the destination table layout: DeptCode Varchar(6) Type VarChar(10) Period VarChar(6) Labor float Expense float Supply float A combination of ...more >>

Storing images
Posted by Satya Rao at 10/29/2003 1:06:45 PM
Hai all, I have created a table as below create table( TileId int not null unique, TileName varchar(20) not null, TilePreview image, Price money not null ) Is it possible to store images in the above table using T-SQL , if yes how? ...more >>

can this be done using pure SQL?
Posted by McCoy at 10/29/2003 12:45:24 PM
I have a table (HOTEL_STAY ) that captures client apartment stay data. Here is a simplified table structure: ID_STAY ID_CUSTOMER DT_STAY_BGN DT_STAY_END ID_STAY is the PK which is just a sequenced integer. I need to find out which customers have gaps between...more >>

Reporting Services Beta 2 available?
Posted by Alan Z. Scharf at 10/29/2003 12:45:09 PM
Has Beta 2 been made available yet? If so, how can I download it? I don't see it as an MSDN Universal download. I enrolled in Rosetta program, have confirmed beta ID from BetaPlace site, but haven't received email regarding download. I may have missed confirmation email with download inst...more >>

Max of a number of fields?
Posted by Stijn Verrept at 10/29/2003 12:44:39 PM
How do I get the max date of five date fields? I lookup up the Max function in the help and they give this example: Max({USA, CANADA, MEXICO}, Sales) I don't think it is appropriate for what I want. Thanks in advance, Stijn Verrept. ...more >>

execute @sql (permissions problem)
Posted by Brian at 10/29/2003 12:03:18 PM
I have a stored procedure that issues an UPDATE on a table. The appropriate groups were granted EXEC permissions on the procedure. The procedure builds a dynamic UPDATE string, which is then executed as: EXECUTE @sz_sql When a user calls the proc, it fails with UPDATE permission den...more >>

Daylight Savings Time
Posted by Jason at 10/29/2003 12:02:11 PM
MSS2000 Is there a way to know, at the moment you are getting a local date, if you are in Daylight Savings Time or not? Thanks! Jason ...more >>

30 days data
Posted by tkhan NO[at]SPAM hotmail.com at 10/29/2003 12:02:07 PM
I have 3 months data in my db, but I only want to pull last 30 days data. trying to pull by mydate, date format is: 2003-10-06 15:43:44.000 syntax i am using: mydate between date() and (date() -30) but no luck? Also, I want mydate back in mm/dd/yyyy format. thanks ...more >>

Min Max Question
Posted by Ginja at 10/29/2003 11:53:34 AM
Hi All, Any help on this one much appreciated..... I have the following table. CREATE TABLE [dbo].[tblIWFactFile] ( [Sedol] [varchar] (6), [DateID] [int] NULL , [Date] [smalldatetime] NULL , [ValuationDate] [smalldatetime] NULL , [StartPrice] [float] NULL , [EndPrice] [float] NU...more >>

Using File System Object from T-SQL
Posted by Alan Z. Scharf at 10/29/2003 11:51:58 AM
1. Is there a way to use the File System Object from a T-SQL stored procedure? I want to read in the filenames from a folder into a table of filenames. 2. I have this working in Access VBA with an Access table using the abbreviated code below, but need to switch to SQLServer. 2. A sea...more >>

Help with Update query between 2 tables linked by 1 field
Posted by at 10/29/2003 11:46:24 AM
I have 2 tables, Assets and Assets2, which are both exactly the same except that Assets2 is full and Assets only has field ItemNo filled. Basically I'd like to update Assets with the data in Assets2 based on the ItemNo Update Assets.Serv_date, Assets.Account, Assets.purch_date *with fields* A...more >>

Sample Directory...(again)..
Posted by I_AM_DON_AND_YOU? at 10/29/2003 11:30:10 AM
Right now SP3a is installed on my SQL Server 2000. As said by someon that : "......You can install the samples on an existing SQL Server installlation by choosing the Upgrade option, doing a Custom setup and adding the components......" then whether I would also have to install the service pack ...more >>

Getting date from number of seconds past
Posted by dre at 10/29/2003 11:28:01 AM
I am looking at a new database that has all of its times in seconds, apparently from 1/1/1970. I have the number 1024917951 and want to see what the date would be if I added 1024917951 seconds to 1/1/1970. How would I accomplish this? Thanks for any help....more >>

calculating datetime
Posted by Lars Grøtteland at 10/29/2003 11:16:26 AM
Hello! Having some problems to calculate datetime in sql server and vc. My date now is 29.10.2003 10:00:00 If I should add three months to this date - I would have 29.13.2003 - which of cource should be 29.01.2004. How can I add three month for this date, and the result date is calculat...more >>

High CPU usage with cascading deletes
Posted by Don at 10/29/2003 11:08:49 AM
Hi, I'm having a problem with SQL Server using up 100% CPU time when cascading deletes kick in with high numbers of rows (200,000) or more. I also have a huge trigger running on insert but the CPU time only goes up when the main table goes over 200,000 rows. I'm including the SCRIPT for...more >>

A little question
Posted by anna_marcos NO[at]SPAM mixmail.com at 10/29/2003 10:42:09 AM
Hello all I have a problem in a SQL Server system I have a sentence like this one Select Table1.Field1, Table1.Field 2, Table2.Field1 From Table1 , Table2 Where Table1.Field1=Table2.Field1 This sentence returns only the records that match between table 1 and table 2. I w...more >>

xp_sendmail save file to local disc
Posted by Nikola Milic at 10/29/2003 10:26:30 AM
Hi, Is it possible to use xp_sendmail just to save attached file to local disk? I need this as xp_sendmail can make many file types and formats (like Excel). I'm using SS2000 Enterprise edition SP3 on Win2000 Advanced Server SP4 Thanks in advance Nikola Milic ...more >>

Help with a query
Posted by mbokhari NO[at]SPAM hotmail.com at 10/29/2003 10:23:33 AM
Maybe someone will see something that I'm not.... If I can get these 2 query as 1 so the result set shows like.... Username Post Non-Post -------- ---- -------- User1 10 2 User2 5 1 ...that would be awesome. The only diffence between the 2 queries is th...more >>

Tracing User Login
Posted by Steven Wong at 10/29/2003 10:15:57 AM
Hi: Is there a way to generate a user log report with his/her last access date into each SQL Server database within the same server? Thanks!...more >>

Installation Q
Posted by George Durzi at 10/29/2003 10:15:42 AM
hey all, sorry if this is slightly off topic, but I'm not getting anywhere. Is there a reason I'm not able to install Sql Server 2000 on Windows 2003 Server Web Edition? The CD autoruns, I click on SQL Server 2000 Components, then click on Install Database Server, I see a quick InstallShiel...more >>

30 days data
Posted by tkhan NO[at]SPAM hotmail.com at 10/29/2003 10:06:39 AM
Having some problem to pulling 30 days data: Mydate format is mm/dd/yyyy This is what I am using in my sql: where Mydate between date() and (date() + 30) I want to pull 30 days data from my database. This is the code I use in ORACLE? what should I use in sql?...more >>

Show Server Trace
Posted by Joe at 10/29/2003 9:40:24 AM
Does anyone know why the Show Server Trace option would be unavailable (grayed out) on SQL 2000 query analyzer? My login is an admin for the database in question. Are there any other settings that may affect this? Thanks for any help that you can provide, Joe ...more >>

WHERE clause and null values
Posted by jon at 10/29/2003 9:15:57 AM
i have a web site using a sql server. I use a where clause to search on about 10 fields. When i use AND in my where statment unless i fill in every search field with the exact search criteria i get nothing back (that is what i would expect). If i use OR i get everything back, for example i...more >>

DateAdd Select query
Posted by Patty at 10/29/2003 8:43:37 AM
How would I write a select statement with the following info? I need to pull info from the table, if I put in a date (ie. 10/22/03), I need to pull all records by the StartDate in the table that are 2 months prior to the date I inputted. I beleive I have the correct formula to go back 2 months (...more >>

Blocking lock
Posted by Bernd Maierhofer (dato) at 10/29/2003 8:11:09 AM
Hi, I have an app which from time to time runs into a blocking lock. When I use the Enterprise manager to examine the statement which causes the lock (blocking process, properties), I find a statement which can´t be the cause. (e.g. simple select on a small table or an update on a single row) ...more >>

calculated column
Posted by marwan hefnawy at 10/29/2003 7:44:14 AM
I'm new to SQL Programming. Suppose that I have columns A,B each are float. How can I creat a third column C where C=A/B. How to make any new entry or any updates in A or B makes a new record or updates the existing records in C. What if the equation in C is more complex (Not Just A/B), for exa...more >>

sp_oaMethod
Posted by don pasquale at 10/29/2003 7:11:11 AM
hi, I must use sp_oaMethod to call a method inside another method. An example of this, maybe the following script ( where OpenTextFile method contain Write method ) : Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, Tru...more >>

Bulk Insert
Posted by ScubaFrog79 at 10/29/2003 6:51:15 AM
I'm using the following code for a bulk insert that works perfectly, however, the data in the table still contains the double quotation marks of any text fields. How can I remove those while inserting the data into the table CREATE TABLE [#Temp] ( [ID] [int] NULL , [FirstName] [nvarchar] (50) NU...more >>

Using OPENROWSET to INSERT using a DSN
Posted by lundd NO[at]SPAM fihrst.com at 10/29/2003 5:11:50 AM
Hi all, I need to export data from a SQL 2000 database, to any DSN on the client machine (DSN is selected by the user in a VB app). I Can't seem to export data from SQL, using OPENROWSET, to the DSN: The following works just fine: INSERT OpenRowset( 'Microsoft.Jet.OLEDB.4.0', 'E...more >>

UNION Query Sorting
Posted by Gee at 10/29/2003 3:54:42 AM
I trying to sort a UNION Query. When I run the query I get a result set but not a sorted one. I am also being forced to add a TOP clause to the select statement... IF I highlight just the SELECT ... UNION ALL .... SELECT ... part of the code, I get a sorted result set ??? Any Ideas an...more >>

Syntax error converting datetime from character string.
Posted by jonathan at 10/29/2003 3:00:21 AM
Hi, i am trying to search on dates using varialbes. If i replace the date variable in the where clause with an actual date it works. I have tried al diff ways of converting my input value to dates etc. here is my code ----------------------------------------------------- DECLARE @VehicleReg ...more >>

re: Avoiding to dump duplicate data in table
Posted by prad at 10/29/2003 2:53:42 AM
Hi, Iam making a data table in sql server, which is getting data from a text file through DTS package which is running every 10 minutes. Text file is getting data from a weather station which is updating the textfile every minute. Text file is storing all data. I want to put this data i...more >>

Accessing Global Address List from SQl Server.
Posted by Raju V at 10/29/2003 2:16:05 AM
How Do I access a particular contact's Business Phone number from the Global Address List through Sql Server 2000? ...more >>

Case statement
Posted by Satish at 10/29/2003 1:02:10 AM
Hello All, I have a table with column called Amt I want to write a query which says if Amt =0 then 'Nil', if Amt>0 'Greater', if amt<0 then 'Lesser' CREATE TABLE tblAmount(ID INT NOT NULL IDENTITY(1,1), Amt INT) INSERT INTO tblAmount(Amt) VALUES(1000) INSERT INTO tblAmount(Amt) VALU...more >>

Sample directory
Posted by I_AM_DON_AND_YOU? at 10/29/2003 12:33:03 AM
On my computer SQL Server is already installed. However, Sample directory is not there in C:\Program Files\Microsoft SQL Server\80\Tools\DevTools. (1) How should I copy these samples? (2) When we install SQL Server it doesn't ask anywhere as to whether we want to install or not Samples. At whi...more >>


DevelopmentNow Blog