Viewing 15 posts - 211 through 225 (of 1,346 total)
It is my understanding that when a UNION is performed between two SELECT statements, it's internally running a DISTINCT. Is this correct?
Yes Internally sql will only return Unique values.
From...
January 30, 2009 at 1:23 pm
Look at the column mappings in your Data Transfer Task, are you mapping a source column from the spreadsheet to this column in the table?
If so then the data in...
January 30, 2009 at 1:11 pm
Please do not post the same question to multiple forums. Most people who like to help look in all the forums.
Direct all answers here.
http://www.sqlservercentral.com/Forums/Topic647237-148-1.aspx
January 30, 2009 at 1:09 pm
May seem like overhead, but Create a numbers table with sequential numbers in it. It becomes very useful over time.
Check out this article,
http://www.sqlservercentral.com/articles/Advanced+Querying/2547/
Along with other forum post which has...
January 23, 2009 at 5:33 pm
Your not giving us enough information.
How do we know which row is the first row?
The one with the value or the one that is blank.
Do you have an identity column,...
January 23, 2009 at 5:28 pm
The only way I've been able to do this is create a Surrogate key in the destination table, and include it in the Data extract.
The Surrogate key from the extract...
January 23, 2009 at 1:52 pm
Okay,
No you cannot compare rows for conditional formatting Only columns.
I have not found a way to do this, and I really have not needed to.
January 23, 2009 at 1:31 pm
This may help you figure out how to do this. it is very easy
http://www.sqlservercentral.com/articles/Development/reportingservicesconditionalformatting/1423/
January 23, 2009 at 11:06 am
The way your describing your problem is confusing me.
It is failing because your trying to cast a String of spaces into a currency type. a string of spaces does not/cannot...
January 23, 2009 at 10:29 am
I don't think this has been done before.
You can't have an invoice lines without an Invoice.
But you want to require an invoice has Invoice lines when you insert the Invoice....
January 22, 2009 at 1:57 pm
Thats fine that they are using the same location. But makes them unique?
How do you know what site file belongs to?
January 22, 2009 at 1:25 pm
Not sure if it is allowed in 2008, I'm thinking not.
But as described above when modifying the Identity property of a column in SSMS, all it really does behind the...
January 22, 2009 at 12:53 pm
Use that table that you found the duplicates in as a derived table, Join to it on the fields you believe are the unique ones back to the original table(s)
Select...
January 22, 2009 at 12:47 pm
So your using VB Code to create Sql2000 DTS Packages, and your running those code generated Packages against a SQL2005 Server?
There are some issues running 2000 packages in 2005. Although...
January 21, 2009 at 1:02 pm
Once again this will always be true, so it will be an infinate loopl
While(select count(prize_seed_id) from prizes_seeds)>0
Based off your code I don't think you need a while statement
January 21, 2009 at 12:57 pm
Viewing 15 posts - 211 through 225 (of 1,346 total)