Viewing 15 posts - 8,446 through 8,460 (of 13,876 total)
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
Anshul Parmar (4/24/2015)
Package 1 –
It is not a good practice to create a database and tables in SSIS packages.
I'll suggest if it is an initial load, create all databases and...
April 24, 2015 at 4:39 am
vipin_jha123 (4/24/2015)
yes true, but if in case we duplicate bbxkey come in source then how to avoid this .
De-duplicate your source before merging, or find a better match key.
April 24, 2015 at 2:32 am
Is there any way in merge itself to avide this issue.
Sure. Always match on a unique key (must be unique in both source and target).
April 24, 2015 at 1:27 am
Do you mean a fixed-width file?
I've never heard of a fixed-length file before.
April 23, 2015 at 8:31 am
One way of achieving this is by creating your source query such that you get one row per job code history. So, get results that look like this:
(EmployeeNumber, FirstName, LastName,...
April 23, 2015 at 12:31 am
think the metadata for source and destination over data flow task cannot be changed at runtime.
This is correct. It needs to exist at design time.
April 22, 2015 at 5:54 am
Viewing 15 posts - 8,446 through 8,460 (of 13,876 total)