Viewing 11 posts - 1 through 11 (of 11 total)
I am sure you can use the disconnected feature of ADO.NET implemented using Datasets.
You can store all the data in the dataset and then in the end post all the...
January 20, 2004 at 12:26 pm
Starrting with SQL Server 2000. It is possible to have more than one instance of sql server on a single windows server. These instances are isolated from one another, they...
January 16, 2004 at 12:42 pm
I am sure you are trying this with SQl server 2000.
The connecting string should be
sConn = "Provider=sqloledb;Data Source=myServerName\myInstanceName;Initial Catalog=myDatabaseName;User Id=myUsername;Password=myPassword"
January 16, 2004 at 11:01 am
You can create a UDF for returning the third column. The UDF would accept claimID as the parameter and would loop to create a string separated with commans.
e.g. SELECT Claim.Claim_ID,Cust_Name,Entry_Date,UDF(CLaimID)
group...
January 15, 2004 at 2:21 pm
While using wild chaaracters one needs to use the escape characters while using symbols like % and [. Look in BOL for the syntax for I am not recollecting it...
January 14, 2004 at 7:29 pm
The Problem lies in how sql server handles locking mechanism. If sql server feels that placing 4 row locks would be more resource intensive than placing a single page lock...
January 14, 2004 at 5:28 pm
One major difference is the way date is handled, MS-Access uses # for dates while SQl server uses single quotes.
January 14, 2004 at 5:19 pm
One more option I can remember is using the charAt function.
January 13, 2004 at 7:50 pm
I guess you can use linked table features provided in access database. this would ensure that you have the data from the sql...
January 13, 2004 at 3:40 pm
You can use scope_identity for finding the last Id that was inserted.Also look in BOL for difference between @@identity and @@scope_identity
January 12, 2004 at 1:00 pm
Normally it's best to autogenerate the primary keys use identity columns if you are not in any way allowing users of your application to use them directly. You can define...
January 12, 2004 at 12:26 pm
Viewing 11 posts - 1 through 11 (of 11 total)