Viewing 15 posts - 7,066 through 7,080 (of 9,643 total)
From BOL:
A view is a virtual table whose contents are defined by a query. Like a real table, a view consists of a set of named columns and rows of...
October 29, 2008 at 6:37 am
When you just use FOR you are actually creating an AFTER trigger. What you want is an INSTEAD OF trigger. The issue with INSTEAD OF triggers is that...
October 29, 2008 at 6:33 am
This should work:
[font="Courier New"]DECLARE @AMGR_Notes_Tbl TABLE (Data_Machine_Id INT, Sequence_Number INT, Owner_Id VARCHAR(10),
Client_Id VARCHAR(10), Contact_Number VARCHAR(15),
TYPE CHAR(1), Private INT, DateCol smalldatetime,
TimeCol smalldatetime, NewRecord INT, Owned_By_Id VARCHAR(10),
...
October 29, 2008 at 6:20 am
bang725 (10/28/2008)
error on line 6object doesn't support property called "Folders"
Did you attempt to determine what might be the correct property to find folders within a folder? Maybe .Subfolders? ...
October 28, 2008 at 4:31 pm
jacopasto (10/28/2008)
I ad the 'DateCol' at the output but it doesn'work (name of column non valid 'DateCol').
Sounds like you have spelled the column name wrong, check that.
Also, i cannot retrieve...
October 28, 2008 at 2:35 pm
This is the general way to do this. Because you did not supply the schemas or clearly define what column in ptAppointments represents ScheduleID I used generic language. ...
October 28, 2008 at 2:02 pm
Could you be more specific? Are there any errors? Is is not deleting files?
October 28, 2008 at 11:47 am
That would be basically the same query I gave you with datecol added to the output and a where clause.
October 28, 2008 at 11:33 am
Yes there is C# Express and VB Express 2008 available.
October 28, 2008 at 11:32 am
ISNULL (R.RateCount,'0') as R.RateCount should be ISNULL (R.RateCount, 0) as RateCount
October 28, 2008 at 11:31 am
Check out this article[/url] and the associated thread as there is custom component attached to the thread.
October 28, 2008 at 10:50 am
My VBScript skills are a little weak, but something like this should work:
Dim fso,fol,f
set fso = CreateObject("Scripting.FileSystemObject")
Set fol = fso.GetFolder("C:\Test\")
For each f in fol.Folders
...
October 28, 2008 at 10:47 am
Nope I did it in VS 2008, but I thought I had the compatability mode in 2005.
Sorry
October 28, 2008 at 9:06 am
If you are guaranteed a consistent order in the data this works:
Declare @AMGR_Notes_Tbl table (textcol varchar(max))
Insert Into @AMGR_Notes_Tbl
Select
'Spoke with Joe Adams. i told him ti schedule a demo meeting.'+
'Phone Call:...
October 28, 2008 at 7:31 am
Is there any delimiter you can use?
October 28, 2008 at 7:05 am
Viewing 15 posts - 7,066 through 7,080 (of 9,643 total)