Viewing 12 posts - 196 through 207 (of 207 total)
Trigger the asp page from the End user app. The only catch here is that the end user has to always have network connectivity to that page.
1- Call a stored...
September 25, 2003 at 9:25 am
quote:
Let me explain what I'm trying to accomplish, it sounds like there is a better way to do this. I have an...
September 25, 2003 at 6:52 am
I have to agree with Chris. It doesn't make logical sense to call an ASP page that performs a SQL Query when you can just write a stored procedure and...
September 25, 2003 at 6:39 am
quote:
select empidfrom emp
where empid = @empid.
Why not just do an Insert Into Table(EmpID) Values(@EmpID)
The...
August 12, 2003 at 7:09 am
Generally, in the past when I was checking my own work, I would write two or three sql statements to retrieve the same data back. If they all presented the...
August 11, 2003 at 6:42 am
quote:
...and why BI for the category??
Administration would probably be a more appropriate category.
August 7, 2003 at 6:13 am
In enterprise manager, from the design view of the DTS package, select package->save as from the menu and change the name of the server to a different server. The DTS...
August 5, 2003 at 6:25 am
quote:
As I suspected, tried with spcific columns but still the same error..............
I've had this error...
July 10, 2003 at 7:14 am
If using the cursor becomes too slow, you could always create a view on the fly passing your where clause and then run your query off of that view.
If there...
June 20, 2003 at 12:01 pm
I would be inclined to agree with Preethi.
Set up a table that holds a sessionid or some other type of unique identifier and one column for each parameter.
The other option...
June 18, 2003 at 6:28 am
If you want to eliminate using a temp table couldn't you do something like this:
Select
CASE IsNull(T.Column1,'Null')
WHEN 'Null' THEN 'Do Something'
ELSE
END 'Example'
FROM
(
SELECT T1.Column1,T2.Column2,T3.Column3
FROM TABLE1 T1
INNER JOIN TABLE2 T2 ON T1.T1ID =...
March 3, 2003 at 6:58 am
Viewing 12 posts - 196 through 207 (of 207 total)