Viewing 15 posts - 406 through 420 (of 440 total)
Hi
Check out the below link
http://msdn2.microsoft.com/en-us/library/aa933154(SQL.80).aspx
Thanks -- Vj
February 24, 2008 at 2:01 pm
Hi,
You can have DECIMAL or INT datatypes but this is not the right way to do it. The best thing would be declare this column as CHAR(1) to store the...
February 24, 2008 at 1:55 pm
Hi
1) It depends on the requirement. Most of the people uses ASP/Microsof technologies.
2) http://support.microsoft.com/kb/169377
3) I dont think there are any websites for these kind of templates.
Thanks -- Vj
February 21, 2008 at 4:31 pm
February 21, 2008 at 4:22 pm
Hi
In many instances you can accomplish the same task using either a stored procedure or a function. Both functions and stored procedures can be custom defined and part of any...
February 21, 2008 at 4:15 pm
February 21, 2008 at 4:08 pm
Hi,
check out the below code this give you the exact error.
EXEC @hr = sp_OAMethod @object, 'Connect', NULL, 'my_server',
'my_login', 'my_password'
IF @hr <> 0
BEGIN
EXEC sp_OAGetErrorInfo...
February 20, 2008 at 1:16 pm
February 19, 2008 at 9:51 am
Hi,
Certainly you can restrict the no. of records using TOP, but this is performnace issue. It would be better to use to some WHERE condition to restrict the records.
Thanks --...
February 19, 2008 at 9:48 am
Hi,
It depends on what is your target database? I have used OWB and it is good.
Thanks -- Vj
February 18, 2008 at 2:49 pm
Hi,
There are two steps.
1) Sending out an email from SQL Server. Use the below link
http://classicasp.aspfaq.com/email/how-do-i-send-e-mail-from-sql-server.html
2) Schedule this activity at 3:00PM everyday. For this you need to SQL...
February 17, 2008 at 3:12 pm
Hi,
The query is exactly same. Is this kind of one time behavior? or you are always getting like this?
It would be better if you give us the data also, so...
February 17, 2008 at 3:07 pm
Hi,
in Nutshell use the below query to find out the duplicate records.
SELECT
list_of_all_columns
FROM
tablename
GROUP BY
list_of_all_columns
HAVING
count(*) > 1
Thanks -- Vj
February 17, 2008 at 2:49 pm
Hi,
I would say no coz hibernate adds more complexi ty the whole architecture.
Thanks -- Vj
February 15, 2008 at 11:02 am
Viewing 15 posts - 406 through 420 (of 440 total)