I am a newbie to the world of SAN.
My question is - is there any way to implement some sort of startup script so servers will come back online in a specific order if power to the SAN is interrupted?
If not, is there some way to implement a script once the SAN is back on line to check all the...
I am using CF7 and CFMX.
For some reason, regardless of what I set the timeout attribute on my cfldap tag, the timeout will not work.
Can anyone think of a reason this is not working?
What is the work around?
I have a process that inserts records into a table. One of the fields is a tinyint field. The data in this field is 1,2,3,etc. For some reason, instead of the data being inserted as 1,2,3,4, etc. it might be inserted as 0,89,4,6.
This does not happen every time data is inserted into this...
When I receive a fax from my .cfm page, both the .tif and .pdf versions display upper and lower case A's throughout the document.
Any ideas what could cause this and the solution?
This doesn't happen on the printed or displayed version.
I am attempting to update a table. Below is my code:
UPDATE tbl_inventory
SET amt = (SELECT SUM(CostAmt) FROM InventoryDtl
WHERE groceryItm = 1ab0 AND groceryitmkey = 1),
gItmAmount = (SELECT SUM(gItmAmount)
FROM InventoryDtl
WHERE groceryItm = 1ab0 AND groceryitmkey = 1)
WHERE...
I am sending a .txt file from a cfmail tag. I can display the correct formatting on the screen; but I have not been able to successfully format the actual attachment. If I use <table> and <tr><td> tags, they appear on the actual .txt attachment.
Here is my code:
<form action="mail.cfm"...
The below script is called from an onChange command. I need the first option to always be blank but it's not. How can I make sure the first option is always blank with the below script?
var sub = 0
for (var i = 0;i < ListOne;i++)
{
if (document.form.ListOne)
{
var...
The search function is down and I'd like to resolve this today.
If I have a date (today for example) and I want to show the date six days in the future; but, I want to omit Sunday as a day.
How would I do this? I've gotten this far:
<cfset FutureDate = #dateformat(Today(), 'mm/dd/yyyy')#+6>...
I have three conditions within a VBScript. For some reason, all three seem to execute regardless of what is selected. (Ex: The e-mail is sent if the user enters no, or yes. I only want the e-mail sent if the value of what the user enters exceeds 50000.) Below is my code. What am I missing...
I have two forms - FormOne.htm and FormTwo.htm.
When FormOne.htm opens, I have FormTwo.htm open (when certain conditions are met).
I need to print both FormOne.htm AND FormTwo.htm using the same print button. How do I do this?
Is this logic correct?
IF (@ErrorSaveVariable = 11 or @ErrorSaveVariable = 23 )
BEGIN
PRINT 'Errors encountered, rolling back.'
PRINT 'Last error encountered: ' +
CAST(@ErrorSaveVariable AS VARCHAR(10))
ROLLBACK
END
I've built a website that uses a Linux platform.
I pass two url variables to another form but can not get the values of these variables to appear within the body of the form! I surround them with output statements but still no values! The technical support person tells me it is because I am...
How do I check if my popup window is open?
If it is already open, I want to pass a url.variable to it and keep any existing values still on the page.
Here is some code for the parent form.
<td>img src="Picture.gif" alt="" border="0"...
I have an output that contains hyphens. I could have an instance of one hyphen or more than one.
EX:
AK-AL-AB
MO-MS
KS
How would I count the number of hyphens in my output? I know what I want to do once I get the correct number of hyphens.
I need to include sequential record numbers in my cfoutput for data that has been grouped according to my customer's requirements.
How would I do this with CF?
<cfoutput>
(Ex:
Area One
1 Name1 HireDate1 Address1
2 Name2 HireDate2 Address2
Area Two
1 Name1...
Can I truncate a SQL table with Javascript? I've tried:
<script language = "Javascript">
function TableReset
{
strSQL = "Truncate Table tblname";
}
</script>
I have a powerpoint presentation I'm trying to open from a hyperlink on a web page. The presentation opens on any computer running Powerpoint 2000. It will not open on a desktop running Powerpoint '97. I have saved a '97 version and the presentation will still not open. The page appears to...
I need to display the various field/column names from various SQL tables. To do this I use:
<CFLOOP INDEX="FieldName" LIST="#tbl.ColumnList#" DELIMITERS=",">
Within this, I want to only display twenty columns/fields on my page. I usually rely on cfoutput...
I need to schedule a report to print everynight at 5:45. How would I do this? I've gotten this so far:
Dim Start!
Start! = "17:45:00"
DoEvents
PrintForm
I've got two fields in two different tables that contain city and state information. TblOne has city/state format. TblTwo has state/city format. Will soundex work to compare or match the two tables to see if the same city/state and state/city combination exists?
It seems like I did this...
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.