Viewing 15 posts - 8,446 through 8,460 (of 13,882 total)
Is there a chance that some other process has the file open when the job runs? Are you editing it yourself? 🙂
April 30, 2015 at 9:04 am
Try this
select t.Person
,UpdatedDate = max(isnull(t.UpdatedDate, getdate()))
from #Table1 t
group by t.Person;
April 29, 2015 at 6:06 am
select *
from dbo.T1 t1
cross apply (select Code = min(Code)
...
April 29, 2015 at 5:54 am
Koen Verbeeck (4/29/2015)
Phil Parkin (4/29/2015)
Unless you've paid over US$10,000 for a licence, you cannot use it as Enterprise on a production server.$10,000? That's a bargain 😀
I did say 'over', as...
April 29, 2015 at 3:22 am
Unless you've paid over US$10,000 for a licence, you cannot use it as Enterprise on a production server.
April 29, 2015 at 3:11 am
ankithimmatlalshah (4/29/2015)
I was assigned a work item wherein, I've a dataflow task on For Each Loop container at control flow of SSIS package. This For Each Loop container reads...
April 29, 2015 at 12:59 am
Is the value of the variable itself an expression?
April 28, 2015 at 9:31 am
Risking sounding repetitive, but...
What does this mean?
I need to know how to deal with the resultset with all the columns.
April 27, 2015 at 11:04 am
Please answer Sean's question. 'To deal' is not a well defined verb in the T-SQL world.
April 27, 2015 at 10:54 am
svanduffelen 83303 (4/27/2015)
I need to putNOT EXISTS(SELECT * FROM [TICKETS] WHERE [VOID] = [TICKET])
Into a constraint. So that the chained tickets do not form a loop.
This needs to be refined....
April 27, 2015 at 10:09 am
If you create a constraint that void < ticket, does that help? (Assuming ticket is an identity column.)
April 27, 2015 at 9:03 am
svanduffelen 83303 (4/27/2015)
1.) The First Column is the primary key, Ticket, of type Integer
2.) The Second is...
April 27, 2015 at 8:42 am
As an aside, storing dates as nvarchar(50) is generally considered a really bad idea.
April 27, 2015 at 12:11 am
You could try something like this (untested because you did not post DDL, sample data etc):
with OrderedSet
as (
...
April 26, 2015 at 3:57 am
This won't help you right now, but maybe in future. You should put some sort of unique constraint on your table which would result in an error if such a...
April 24, 2015 at 9:57 am
Viewing 15 posts - 8,446 through 8,460 (of 13,882 total)