dbTalk Databases Forums  

Sponsored Links


comp.databases.ms-sqlserver comp.databases.ms-sqlserver


Discuss in the comp.databases.ms-sqlserver forum.



Post New Thread
Threads in Forum : comp.databases.ms-sqlserver Forum Tools
  Rating Thread / Thread Starter Last Post Reverse Sort Order    Replies         Views     
Is there some reference material that shows how to connect to a SQL 2005 DB using Visual Basic 6? Any help is appreciated.
Charlie
06-29-2007 05:36 PM
Erland Sommarskog Go to last post
1 40
Hi, I need to update a field in about 20 records on a table. The table has an update trigger (which updates the field whenever a record is...
paulmac106@gmail.com
06-29-2007 05:29 PM
Erland Sommarskog Go to last post
2 49
I need to open a newly created xml doc (in the same format) each time a new one is sent to our web service. I would like to use a stored procedure...
KEN
06-29-2007 05:27 PM
Erland Sommarskog Go to last post
3 42
I've written this query: select distinct topics, questions, answer from topics AS A, QuesNans AS B where A.topicid = B.topicid order by...
nina297
06-29-2007 09:00 AM
nina297 Go to last post
3 45
This is kind of what I'm trying to do in my MS SQL 2000 query. Should I be able to reference s1.col1 inside the 2nd derived table? I'm getting...
Stephen2
06-29-2007 07:13 AM
Erland Sommarskog Go to last post
1 43
I have a problem in this query: select order from ordertable where orderdate >= '06/20/2007' and orderdate < '06/21/2007' this query do not return...
navneetkasulkar@gmail.com
06-29-2007 05:04 AM
navneetkasulkar@gmail.com Go to last post
5 268
I have a problem in this query: select order from ordertable where orderdate >= '06/20/2007' and orderdate < '06/20/2007' this query do not return...
navneetkasulkar@gmail.com
06-29-2007 05:00 AM
navneetkasulkar@gmail.com Go to last post
2 48
Here is my problem: I have two tables. Table1 contains two fields. Field1 contains names of job types (Accountant,Doctor,etc.) Field2 contains the...
k4
06-28-2007 05:31 PM
Erland Sommarskog Go to last post
1 57
Hello! I have this piece of SQL code: UPDATE a SET Field1 = c.Field1 FROM a INNER JOIN b ON a.GUID1 = b.GUID1 INNER JOIN c ON b.GUID2 =...
Richard
06-28-2007 05:12 PM
Alex Kuznetsov Go to last post
10 171
How does the phrase "Is Not Null" in the where clause effect the effectiveness of a query? If it is a determent to the effectiveness of the query,...
db55
06-28-2007 04:35 PM
Erland Sommarskog Go to last post
3 45
All, Is there any way to _set_ an IDENTITY column to have a certain value so as to create a gap in the set of identity values on purpose? All I've...
Weyus
06-28-2007 03:31 PM
Gert-Jan Strik Go to last post
3 42
Hell All, To reproduce one of our cusotmer's probem, I need to make the SQL to run for more than a minutes before it returns the result set. I do...
Raj
06-27-2007 06:30 PM
Raj Go to last post
8 53
All, I need to do some bulk loading of data, and in order to do it, I need to be able to do the following: 1) Retrieve the current identity value...
Weyus
06-27-2007 05:28 PM
Erland Sommarskog Go to last post
5 46
Does anyone know of a built-in function to return the maximum possible value of a given datatype? I have to return the biggest value for...
jshunter@waikato.ac.nz
06-27-2007 02:26 PM
Gert-Jan Strik Go to last post
6 290
Hello, I am loading data from our MS Active Directory into our data warehouse. (check out Mircosofts's Logparser, it can pull data from ADS, server...
rcamarda
06-27-2007 01:30 PM
Plamen Ratchev Go to last post
3 273
I have inherited a database that tracks if a customer ordered a product, with 1 being a yes and 0 being no. What I want to do is sum those columns...
azriley@gmail.com
06-27-2007 01:09 PM
azriley@gmail.com Go to last post
4 43
Hello, I need to alter fields in all my tables of a given database, and I would to do this via a t-sql script. Example, I want to change all fields...
rcamarda
06-27-2007 11:25 AM
rcamarda Go to last post
2 310
All, I'm new to MS SQL Server and I'm wondering if there is a free client that will allow me to connect to a remote SQL Server instance. Currently I...
Sashi
06-27-2007 08:07 AM
Erland Sommarskog Go to last post
1 278
Hello, I currently have Table1 and View1. View1 is a query from 2 or 3 tables that works fine on its own. However in my current query if I try to...
Yas
06-27-2007 06:55 AM
Erland Sommarskog Go to last post
1 296
If I have table1 and table2 with table2 having multiple rows tied to a single row in table 1. What I am trying to do is set up a view that has one...
M@
06-27-2007 03:29 AM
Erland Sommarskog Go to last post
3 41
I've got a weird one here. I'm running a DTS package on SQL Server 2005. It copies a bunch of stored procedures. I renamed them on the originating...
jshunter@waikato.ac.nz
06-26-2007 10:07 PM
Roy Harvey Go to last post
1 291
Hi, I got 'Invalid Column Name NewCol1' when I query the following: Select col1, col2, (some calculation from the fields) as NewCol1, (some...
sweetpotatop@yahoo.com
06-26-2007 04:29 PM
Hugo Kornelis Go to last post
5 40
Hi, I have a question regarding best practices in database design. In a relational database, is it wise/necessary to sometimes create tables that...
nyathancha@hotmail.com
06-26-2007 04:14 PM
Hugo Kornelis Go to last post
14 68
I have a customer using our program with SQL server and is occasionally getting a "Transaction (process ID xxxxx) was deadlocked on lock resources...
Altman
06-26-2007 01:36 PM
Alex Kuznetsov Go to last post
5 44
Hello All, I am trying to create a DTS package. I have two tables tbl_A and tbl_B with similar data/rows but no primary keys. tbl_A is master. I...
jb1
06-26-2007 12:12 PM
Ed Murphy Go to last post
7 60
Hello, Using SQL 2005. Columns: ID, int (PK, auto-increment by 1) WorkHours, int Name, varchar(100) I can't seem to get the following query to...
webdevaccount@gmail.com
06-26-2007 11:54 AM
Ed Murphy Go to last post
3 276
I am trying to compare the last two values in the same column of a table. First of all, I have a column titled Row_Index that uses an index which...
mcolson
06-26-2007 09:19 AM
Roy Harvey Go to last post
5 37
im trying to understand how the profiler works. so i started 2 profilers,one listen to another and I saw the profiler is running: exec...
ofirmgr@gmail.com
06-26-2007 07:55 AM
Dan Guzman Go to last post
1 31
Hello, We are using SQL server 2000 on W2k Server and MS Access 2000 ADP (like front-end). Now we try to change operating system for SQL Server 2000...
Maciej07@gmail.com
06-25-2007 06:02 PM
Erland Sommarskog Go to last post
1 35
I am doing an update to set a field value = anothe field value (in the same table) where it is not supplied. I'm handling this in the trigger, but am...
DennBen
06-25-2007 05:56 PM
Erland Sommarskog Go to last post
1 284
Hi folks I have a little problem converting from an access database to the SQL server I need to have a highscore that shows the top 10 scores,...
zuuperman
06-25-2007 08:32 AM
Roy Harvey Go to last post
2 46
Hi Folks, I'm not certain if this is the correct group to post this question in, if there is a more appropriate one please advise. We have a cube...
Tim
06-25-2007 05:50 AM
Tim Go to last post
0 132
I'm trying to get into an installation of v.6.5 to use with another server and I need the following information: Database hostname Database...
MackTheKnife
06-25-2007 03:26 AM
Erland Sommarskog Go to last post
1 43
Hello, I have a problem. I've linked MySql server to MsSql, in MySql I have a table with Latvian data(character set is ucs2, ucs2_general_ci) and the...
=?utf-8?B?UMSBdmVscyBNaWhhaWxvdnM=?=
06-25-2007 02:48 AM
P vels Mihailovs Go to last post
2 294
Hi Friends, Is there any way to get the table name which is referenced by the foreign key for example: consider two table "Staff" and...
ArunDhaJ
06-23-2007 09:00 AM
Marcin A. Guzowski Go to last post
1 280
All, Just want to make sure that I understand what's going on here. I have a table with IGNORE_DUP_KEY set on a unique, multi-column index. What...
Weyus
06-23-2007 05:09 AM
Erland Sommarskog Go to last post
2 266
Jim Lawton (usenet1 (AT) jimlawton (DOT) TAKEOUTinfo) writes: In SQL Server, you need to provide an alias for the derived table: SELECT * FROM...
Erland Sommarskog
06-22-2007 05:33 PM
Roy Harvey Go to last post
1 40
I have read all of the posts regarding this subject as well as 3 "Dummies" guides and I keep having the same problems. I have a very simple...
Billy
06-22-2007 05:29 PM
Erland Sommarskog Go to last post
1 38
CREATE TABLE ( (10) NULL ) CREATE TABLE ( (10) NULL )
rshivaraman@gmail.com
06-22-2007 10:00 AM
rshivaraman@gmail.com Go to last post
6 54
Hi, I am looking to check and set the encoding of the database using sql commands that work both for SQL-Server and JET. something equivalent to...
maarten
06-21-2007 06:18 PM
Erland Sommarskog Go to last post
1 284
Hi Friends, Is there any tool or assistant to upgrade SQL 2000 to SQL 2005. Thanks, Arunkumar
Oonz
06-21-2007 06:10 PM
Erland Sommarskog Go to last post
2 39
i have a copy of a SQL Server 2000 database on an external hardrive. I have SQL Enterprise Manager 2005 on my laptop and was wondering if it is...
Steve F
06-21-2007 06:02 PM
Erland Sommarskog Go to last post
1 39
Hello I have a VB6 application using classic ado (MDAC 2.8) for connecting ms sql 2000 server. Application uses a lot of server side cursors. Now I...
szymon.strus@gmail.com
06-21-2007 05:48 PM
Erland Sommarskog Go to last post
5 37
Hello everyone, I have a fairly unique need :) I am trying to determine the use/clients for databases in my corporation that I am maintaining, but...
jlaustill@gmail.com
06-21-2007 09:08 AM
jlaustill@gmail.com Go to last post
2 39
Is there a way to read a backup file to see if it contains a file without restoring the backup file? We are missing a record from a table, and I...
Neil
06-20-2007 05:58 PM
Neil Go to last post
2 34
I have googled by heart out trying to find answers to this and am only more confused. DB Server: Windows Server 2003 Enterprise 4 GB memory SQL...
michael
06-20-2007 05:17 PM
Erland Sommarskog Go to last post
1 36
I need to find the rows that exist in one table but not in the other with this condition: (prod_name exist in table1 and not in table2.prod_name )...
yuval
06-20-2007 04:55 PM
Hugo Kornelis Go to last post
2 31
Hi! I am trying to do a simple udpate on a table and I am getting the error: "Cannot insert duplicate key row in object 'UserInfo' with...
SJ
06-20-2007 03:27 PM
Roy Harvey Go to last post
4 45
Hi. I have an 'Attendance' table like this: PIN Year Category Days 1 2006 Authorized 1 1 2006 Available ...
Radu
06-20-2007 11:12 AM
Jason Lepack Go to last post
4 55
Hi I`ve Ms SqlExpress 2005 and question how to export/import all databases to/from file. Bcp.exe can do it but only for a table I think. Pls...
mw
06-20-2007 06:32 AM
Dan Guzman Go to last post
1 35
Post New Thread

Display Options
Showing threads 2451 to 2500 of 14080
Sorted By Sort Order
From The
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.