Viewing 15 posts - 4,396 through 4,410 (of 11,678 total)
How are you so sure it fails on that specific line?
October 22, 2013 at 1:16 pm
You could use a "simple case" expression (in contrast with the searched case expression you wrote).
SELECT CASE RTRIM(Customer.Source)
WHEN 'CREDITNEW' THEN 'CREDIT'
WHEN 'CREDITOLD' THEN 'CREDIT'
WHEN 'TOC' THEN 'CREDIT'
WHEN 'DEBIT' THEN 'UC...
October 22, 2013 at 1:13 pm
Your scenario isn't entirely clear to me.
You do not explain what the value @UserInputDt has to do with @para (=2014-02-01).
Why is the result for Begfiscal 2013-02-01 and for Endfiscal 2012-01-31?
Wouldn't...
October 22, 2013 at 1:09 pm
Griffster (10/22/2013)
TheSQLGuru (10/22/2013)
Griffster (10/22/2013)
October 22, 2013 at 12:54 pm
Unicode can handle a lot of characters. I don't know at the top of my head which characters are not supported.
If you know which characters you don't want, you can...
October 22, 2013 at 12:51 pm
Somewhere at the top of your screen you have a link to the control panel.
There, go to the options (left below) and choose forum settings.
October 22, 2013 at 7:23 am
Sorry, I checked the forum settings and the maximum is 50 posts per page.
October 22, 2013 at 7:10 am
hjvegt1960 (10/22/2013)
I found an interesting thread about linking SQL Server with other database applications.
This thread has many reactions and reactions at reactions etc. In all there are 13 pages.
Is...
October 22, 2013 at 7:09 am
This is a dangerous situation.
A query is issued to retrieve the configurations. If it retrieves multiple rows, all of those configurations are applied, with a configuration overwriting the previous one....
October 22, 2013 at 6:07 am
For the moment, SQL 2014 doesn't have much BI improvements (except for clustered columnstore), but they might announce new features. Who knows?
SSIS will get some new adaptors (OData and Azure...
October 22, 2013 at 5:36 am
PRR.DB (10/22/2013)
Thanks for your reply... Can i get all modified dates also?
Not that I know off.
October 22, 2013 at 5:12 am
aaron.reese (10/22/2013)
Also, I am not sure that you can change the value of a variable within the script unless you have it locked for write.
I never lock variables. Never ran...
October 22, 2013 at 4:59 am
Depends on the features you want I guess.
If you desperately want Hekaton for your OLTP, I would wait for SQL 2014.
If you have an environment which is more used for...
October 22, 2013 at 4:57 am
How are you trying to define the relationship?
Can you post the DDL of the tables involved?
October 22, 2013 at 3:09 am
string columnname = "Name";
DataTable myTable; -- don't forget to initialize datatable
foreach(Datarow row in myTable.Rows){
Console.WriteLine(row[columnname]);
}
Haven't tested it, but it shouldn't be far off.
October 22, 2013 at 2:19 am
Viewing 15 posts - 4,396 through 4,410 (of 11,678 total)