Viewing 15 posts - 1,606 through 1,620 (of 2,268 total)
Not sure about using a SAS dataset directly , but you could use SAS ODBC to connect to SQL Server db and run the query from there.
January 28, 2009 at 10:27 am
N means 'National'
It is used when you want to ensure that the value you are passing is a Unicode value
January 28, 2009 at 9:57 am
We were planning on upgrading to 2008, but due to budget cuts this is no longer an option.
Which is a shame as the project i am working on required...
January 28, 2009 at 7:20 am
kyle (1/27/2009)
After further thought, we could just...
January 27, 2009 at 10:49 am
how often is table used?
is it mainly used for inserting data or retrieving data?
If was fairly static then i would recommened putting a clustered index on ValidationPartyID, but...
January 26, 2009 at 10:39 am
Ed (1/26/2009)
Next question: The sysValidationList table (I did not design this), has a column, ValidationListID, of type int that is marked...
January 26, 2009 at 10:23 am
In some situations the way to get your foot in the door is to take a lower level position with a company that may lead you into some DBA...
January 26, 2009 at 10:12 am
Ed (1/26/2009)
January 26, 2009 at 9:41 am
Ed (1/26/2009)
IX_sysValidationList is a unique, non-clustered index on the column, ValidationPartyID. Is this index not appropriate for these joins?
You should really have a clustered index on the Primary key,...
January 26, 2009 at 9:13 am
aziz.kapadia (1/26/2009)
January 26, 2009 at 5:07 am
Okay sorry i mis-read the question..
It seems like the value is too big to fit into a numeric column
January 23, 2009 at 9:51 am
There will probably be a row that has a character that cannot be converted to integer.
try using this code to find the offending row(s)
SELECT * FROM YourTable
WHERE ISNUMERIC(YourColumn)=0
January 23, 2009 at 9:38 am
Swirl80 (1/23/2009)
what about checking the error logs?
checking the error logs can alert you to possbile corruption, but the only sure fire way is to use DBCC CHECKDB.
January 23, 2009 at 7:27 am
You will need to use a variable for this, in the FTP task editor set IsRemoteVariable to True. then construct a variable based on the date and use...
January 23, 2009 at 7:13 am
The problem is that you are doing the calculation on the left side of the clause, this leads to a non-sargable query that the optimizer will struggle with
http://groups.google.com/group/huyuhui/web/a-term-sargable...
January 22, 2009 at 9:22 am
Viewing 15 posts - 1,606 through 1,620 (of 2,268 total)