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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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),
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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? ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 28, 2008 at 2:02 pm
Could you be more specific? Are there any errors? Is is not deleting files?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 28, 2008 at 11:33 am
Yes there is C# Express and VB Express 2008 available.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 28, 2008 at 11:32 am
ISNULL (R.RateCount,'0') as R.RateCount should be ISNULL (R.RateCount, 0) as RateCount
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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:...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 28, 2008 at 7:31 am
Is there any delimiter you can use?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 28, 2008 at 7:05 am
Viewing 15 posts - 7,066 through 7,080 (of 9,643 total)