Viewing 15 posts - 286 through 300 (of 595 total)
OK, bringing som ehumour to the forum...
A couple days ago, in the QOD thread, a forum user remarked that really what the question was about was purely semantics. Brian...
June 20, 2003 at 1:02 pm
There are transaction log viewer utility applications out there that allow you to see thi ssort of information. Lumigent's Log Explorer is one such tool.
June 20, 2003 at 8:10 am
Not that this thread isn't too belabored already, but I just wanted to point out that in most cases, it is much more efficient to have a normalized solution than...
June 20, 2003 at 6:28 am
OK, you cannot reference a MS Access Form field value in SQL Server Query Analyzer. Are you executing this string exactly?:
Exec UpdateInfo '3526'
June 19, 2003 at 2:20 pm
Not quite sure what you are referring to with :how a table is read in code". Do you mean table/index hints? or the ADODB.Connection/Command objects' inherent CursorType, CursorLocation...
June 19, 2003 at 1:36 pm
Do a quick MsgBox(Forms!frmEmployee!txtEmpID) when you execute this function to ensure that there is a correct value in the field at runtime. If there is, then MsgBox out the SQL...
June 19, 2003 at 1:21 pm
You didn't copy my code quite right. You left out the quotes, which indicate that the @sql variable is a string:
...
SET @sql = 'SELECT *...
June 19, 2003 at 12:44 pm
Are you trying to insert a UNICODE character into a VARCHAR field?
June 19, 2003 at 12:18 pm
If you post your code, we'll be able to see the error more clearly...
June 19, 2003 at 12:15 pm
quote:
Set @EmpID = '1%'Select * from tblEmployee where EmpID = @EmpID
This will return all Employee ID's that begin with a 1, but...
June 19, 2003 at 11:28 am
stax68,
the problem is that your code will aggregate the COUNT(DataID) will not return a count of all questionnaire records, but just the count of the questionnaires in the group keyed...
June 19, 2003 at 7:46 am
quote:
SELECT account_id, bill_contact, bill_address,bill_method = CaseWhen 'CC' Then (SELECT CC_Number, CC_TYPE, CC_Exp FROM credit_card)
FROM account
WHen 'ZZ' Then Do something else
End as 'The...
June 19, 2003 at 6:48 am
This is not what the poster is asking for. They are requesting that in the same query, return both scalar and non-scalar aggregates, ie count of all and also...
June 19, 2003 at 6:41 am
quote:
another way is just to do a selectleft(getdate(),12) - does return it as a varchar though
June 19, 2003 at 6:38 am
Viewing 15 posts - 286 through 300 (of 595 total)