Viewing 12 posts - 1 through 12 (of 12 total)
I cannot figure what you intend to do in the Visual Basic program.
@@dbts gets incremented when a table that has timestamp column is updated or inserted and not deleted...
August 11, 2004 at 5:09 pm
you could try
isnull(rtrim(records.amphetamine), ' ')
I think this should work.
regards
Shaji
August 6, 2004 at 9:50 am
you cannot use Getdate() in a udf, Look for deterministic functions in bol.
August 2, 2004 at 2:10 pm
I think there are 2 error here. Looks like the dll that calls your SP does not have correct error handling. The dll is running as a service, but the...
August 2, 2004 at 11:46 am
To me looks like delete and copying is safe, so you can always be sure the databases are in sync. I am not sure if there is any other way,...
July 23, 2004 at 6:53 pm
I am sure there are several ways to do this.
How about create a new table with the excel file that you created, and then update the image filename columns...
July 23, 2004 at 1:43 pm
In the data columns to display, select BinaryData and you should see this.
Regards
Shaji
July 22, 2004 at 11:07 am
I have'nt seen this error.
I am sure you would have checked out these, but if you haven't -- here are some links
http://www.winnetmag.com/SQLServer/Article/ArticleID/14136/SQLServer_14136.html
http://support.microsoft.com/default.aspx?scid=kb;EN-US;309093
http://support.microsoft.com/default.aspx?scid=kb;EN-US;310834
July 19, 2004 at 6:43 pm
I think you are looking for this gropby query.
select GroupId, count(*) as [Count] from Customerdtl
group by GroupId
July 19, 2004 at 6:33 pm
since you have already created sql server users, did you try Trusted_connection = yes in the connection string or the one mentioned below. I have not tried this,...
July 14, 2004 at 5:38 pm
EM does that because it is using windows authentication to connect to the database. One way I can think of is to pass the userid from the client to the...
July 14, 2004 at 1:50 pm
When you use an aggregate function, the null values in the columns are ignored.
eg: Avg(Price), if Price column has a null, it is ignored
July 12, 2004 at 1:01 pm
Viewing 12 posts - 1 through 12 (of 12 total)