Viewing 15 posts - 841 through 855 (of 925 total)
You asked almost the same question a couple of weeks ago:
http://www.sqlservercentral.com/Forums/Topic843394-338-1.aspx
Was there a problem with that solution that we can help you with?
BrainDonor.
January 25, 2010 at 2:42 am
Me.TidesTableAdapter.FillByDate(Me.TidedataDataSet.tides, CType(DateTimePicker1.Text, Date).ToString("dd/mmm/yyyy"))
Would that be because you're not formatting it to either of the formats suggested by Lynn...
January 20, 2010 at 8:26 am
Lynn Pettis (1/20/2010)
Actually, the best format to convert the date to is yyyymmdd. SQL will interpret this correctly regardless of the current language setting.
Hi Lynn,
I was going to challenge...
January 20, 2010 at 7:22 am
This can be caused by the date format in your date control being different from the date format that the database is using. For example today's date can be '20/01/2010'...
January 20, 2010 at 6:26 am
lmu92 (1/6/2010)
Dave Ballantyne (1/5/2010)
...And another
http://www.dotnetspider.com/forum/236299-Urgently-needed-Stored-Procedure-Please-Dont-Ignore-It.aspx
One thing he deserves credit for is the number of forums he knows to ask for help. :hehe:
He reminds me of one of my kids...
January 6, 2010 at 2:51 am
We're happy to help, but need example data and a look at what you've tried already.
For information on how to post sufficient details:http://www.sqlservercentral.com/articles/Best+Practices/61537/
BrainDonor
January 4, 2010 at 1:51 am
A dead thread!
Don't you people realise that some of us need this thread - if only as a temporary diversion from the heady excitement that is a working day? Two...
December 31, 2009 at 1:53 am
Read this series of articles on indexes:
http://www.sqlservercentral.com/articles/Indexing/68439/
BrainDonor
December 30, 2009 at 1:13 am
I recently replaced a Cursor that built a csv string with something along the lines of this:
DECLARE @CSVString VarChar(MAX)
CREATE TABLE #Test(ID int IDENTITY, TestText VarChar(MAX))
INSERT INTO #Test(TestText)
SELECT '1'
UNION
SELECT '2'
UNION...
December 24, 2009 at 4:29 am
Hi,
Could you post some sample data, along with the code you've tried so far, so we can help:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
BrainDonor
Edit to use hyperlink.
December 23, 2009 at 1:37 am
Hi Jitendra,
There are a couple of errors within this, and no sign of a question.
What is it that you want help with?
BrainDonor.
December 21, 2009 at 9:14 am
Have a look at their history - it isn't the first time they've done that.
I don't think some people appreciate the hoops others are prepared to jump through to try...
December 21, 2009 at 8:49 am
This has the smell of homework about it.
What have you tried so far?
BrainDonor.
December 21, 2009 at 7:35 am
You were right - AdHocRemoteQueriesEnabled is the option you wanted. To see what the settings are for the various options you can run
SELECT * FROM sys.configurations
ORDER BY name
and you should...
December 21, 2009 at 3:39 am
Viewing 15 posts - 841 through 855 (of 925 total)