Viewing 15 posts - 91 through 105 (of 345 total)
Since it's an error converting from date to datetime, have you tried casting your columns as date instead of datetime?
December 8, 2011 at 2:18 pm
Sean Lange (12/7/2011)
toddasd (12/7/2011)
ramanamreddy (12/7/2011)
I have a column patID with some values( with some condition 1), patID with some columns(with some condition 2).How can I merge all the values into...
December 7, 2011 at 3:39 pm
ramanamreddy (12/7/2011)
I have a column patID with some values( with some condition 1), patID with some columns(with some condition 2).How can I merge all the values into a single patID...
December 7, 2011 at 1:23 pm
Append this before your query:
select 'Name|Address_line_1|Address_line_2|City|State|Zip|Territory_Code|LDC_Account_Num|Account|POWERFLOW|POWERDROP|Unbilled|NotDue'
union all
Edit: Lowell got there first.
December 7, 2011 at 11:24 am
Oh, it's urgent. Well then, let me start right away. :Whistling:
Really, what have you tried so far? Maybe if we can see an effort at a query we can piece...
December 7, 2011 at 10:25 am
Looks like you just need to double the quotes on the trigger code except for where you use the variable. Try this:
alter PROC spReplaceAuditTrigger( @PassedTableName as NVarchar(255) ) AS
BEGIN
DECLARE @ActualTableName...
December 7, 2011 at 10:12 am
As far as I can tell, the OP is not trying to alter a table within a proc. OP has run the alter table and is now trying to alter...
December 7, 2011 at 8:45 am
Faye Fouladi (12/6/2011)
...
The data for updating EpisodePackage table and updating those new fields is coming from this table variable. I also added...
December 7, 2011 at 7:37 am
Faye Fouladi (12/6/2011)
When I expand the table columns, I already see the added columns. Is there anything ellse I need to do for the stored...
December 6, 2011 at 4:32 pm
jeff.coulson (11/28/2011)
November 29, 2011 at 9:35 am
So if you have three new positions coming in, E=2, K=3, and M=6, what happens to the Names (B,C,F) that were in those positions? At first I thought they were...
November 23, 2011 at 10:05 am
nfpacct (11/9/2011)
you are correct some of the tables have a multiple records.
Does the query syntax correct for joining multiple tables.
select a.dtimesheetid,b.dtimesheetid,c.dtimesheetid, d.dtimesheetid,e.dtimesheetid,f.dtimesheetid
from tblPRTS ...
November 10, 2011 at 10:51 am
You are welcome. It's is one of those deals -- having an open transaction and nothing else works -- that causes so much trouble, that you never forget that type...
November 4, 2011 at 9:40 am
You're getting a lock error on the select because you are not rolling back the transaction opened earlier. But there is no need to use a transaction when there is...
November 4, 2011 at 8:48 am
bubs (11/2/2011)
November 4, 2011 at 8:20 am
Viewing 15 posts - 91 through 105 (of 345 total)