Viewing 15 posts - 286 through 300 (of 748 total)
My bad! I hit another sp, it works, amazingly like what I expect. Thanks lots.
September 26, 2012 at 9:48 am
ChrisM@Work (9/26/2012)
CROSS APPLY (
SELECT DueStatus =
case
When NextReviewDate < getDate() then 'Over Due'
When NextReviewDate >= getDate() And NextReviewDate < getDate() + 30 then 'Due...
September 26, 2012 at 9:42 am
Although no more replies here, I figured it out together with my colleague.
One thing that went wrong was the UDP port 1434 should be open instead of 1433.
Another thing...
September 21, 2012 at 5:15 pm
I have made the udl working and got the right connection string:
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AOR;Data Source=ISCSGCSTEST1\SQL_SGCS
When I used it in web.config, the page returns:
Keyword not supported: 'provider'.
I then...
September 20, 2012 at 8:58 pm
I also tried to start profiler to monitor the server, unfortunately it seems it didn't capture any login request.
In order to verify that the profiler is working, on the server...
September 20, 2012 at 8:25 pm
Sean Lange (9/20/2012)
Take a look here. http://www.connectionstrings.com/%5B/url%5DThis site has connection string details for just about everything.
So far I haven't found a working connection string, it always returns me error like...
September 20, 2012 at 8:15 pm
After further troubleshooting, I have manually enabled both servers' inbound/outbound 1433 TCP/UDP ports
My connection string is:
connectionString="Data Source=10.40.2.90,1433\SQL_SGCS;
I've tried:
connectionString="Data Source=servername\SQL_SGCS;
connectionString="Data Source=servername,1433\SQL_SGCS;
I got similar error message saying the instance couldn't be...
September 20, 2012 at 4:38 am
No problem ping the SQL server, BUT: telnet 1433 failed!
The firewalls for both the servers are turned off; netstat -an returns no 1433 is being listened. WHY?
September 19, 2012 at 2:36 pm
PaulB-TheOneAndOnly (9/19/2012)
halifaxdal (9/19/2012)
Event ID: 4105: Windows is in Notification period.I think your Windows O/S has also expired the license... message is consistent with unlicensed O/S
Other than waiting and applying the...
September 19, 2012 at 1:28 pm
opc.three (8/30/2012)
halifaxdal (8/30/2012)
1. Instead of creating a fancy report, just create a stored procedure to generate a spreadsheet and use it...
August 31, 2012 at 7:41 am
I guess sp_update_schedule can sort it out.
Comment and better idea is always welcome. Thanks.
August 30, 2012 at 7:33 am
To make things simpler, I feel this would be easier:
1. Instead of creating a fancy report, just create a stored procedure to generate a spreadsheet and use it as attachment,...
August 30, 2012 at 7:29 am
Luis Cazares (8/10/2012)
I can't try it in here, but have you tried to assign the default value to REPLICATE( '0', 15)?
Thank you! It works!
August 10, 2012 at 2:10 pm
Thanks for this enlightening discussion. To get the right result for sure for every time, I think I better put an order by clause for every query I write?
August 10, 2012 at 7:09 am
Thanks guys, I realized adding "order by" can resolve the issue but was just puzzling on why the result was generated differently and why for each DB the sp always...
August 9, 2012 at 2:28 pm
Viewing 15 posts - 286 through 300 (of 748 total)