Hi all,
Does anyone use a version manager to source control their crystal reports? If so, how? I have heard through the grapevine that there is a 3rd party solution for versioning crytal reports...any one else heard of this?
Thanks in advance
I have one question, why would you want to store decrypted passwords in the database?
I have seen it done where the client application encrypts the password (through an API call) and then passes the encrypted password to the database that does a compare on the encrypted data for the match...
Try this, remember this is a sproc, so create this first
create procedure tabcount @tablename vharchar(64)
AS
select a.name, rowcnt(b.doampg)
from sysobjects a, sysindexes b
where a.id = b.id
and a.name like @tablename
after that you can really use this to your adavntage, by executing...
If this is a single select dropdownlistbox then you can use the index...
If index = 1 then
If multiselect you are going to have to loop through and check the state
FOR i = 1 to lb_value.TotalItems()
IF lb_value.State(i) = 1 THEN
END IF
NEXT
Good luck
You could try something like this....it may need some tweaking
select name, code, start_date, end_date, class
from test_table a
where class = 'M'
and convert(smalldatetime, start_date) < getdate()
and not exists
(select 1
from test_table b
where a.name = b.name
and a.code = b.code
and...
This is pretty crude but you could do this in an ISQL script
Label:
execute <stored procedure>
waitfor delay "01:00:00"
goto Label
As I said this is pretty basic...hope it helps a little
Good Luck
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.