Viewing 15 posts - 4,291 through 4,305 (of 5,111 total)
It's been quite some time since I've actually used VB, datagrids in virtualmode isn't something I've used so i wouldn't like to hazard a guess.
I did wonder, instead,...
February 6, 2017 at 8:54 am
Can I presume that the datagrid is therefore interactive and acts as a 2 far interface (both for returning data and inserting)? If so, I'm not sure you can get...
February 6, 2017 at 7:02 am
February 6, 2017 at 5:34 am
There's not even an error message there. Did you run the file As Administrator?
February 6, 2017 at 4:44 am
I agree with the others, you don't want to store your data in different measurements, you should store them in 1 and convert at the front end. How do you...
February 6, 2017 at 4:26 am
Eirikur Eiriksson - Monday, February 6, 2017 12:45 AMOut of curiosity, why duplicate the results?
😎
That data set you have doesn't...
February 6, 2017 at 2:02 am
Try this:SELECT t.c.value('(message/text())[1]', 'nvarchar(100)') AS [message] ,
t.c.value('(to/text())[1]', 'nvarchar(100)') AS [to],
b.d.value('(text())[1]', 'nvarchar(100)') AS [from]
FROM @x.nodes('/revieves/recievemessages') AS t(c)
...
February 5, 2017 at 1:50 pm
Apart from that it's spelt SINGLE (not SINLGE), you're attempting to pass a variable as part of the SQL, which you can't do. Much the same way couldn't do
February 5, 2017 at 4:00 am
Or you know, you could just turn BBC One on ;)... Spam reported.
February 4, 2017 at 7:47 am
I can see MSSQL12.MSSQLSERVER and MSSQL12.SQL2 in your images.
February 3, 2017 at 11:57 am
Duplicate of post https://www.sqlservercentral.com/Forums/1854197/export-to-xml-file-with-separate-rows. Please keep to one topic per question.
February 3, 2017 at 10:15 am
I think i understand what you're saying.
I've written this for my own log table for our website (so you'll need to amend for your own table names) which...
February 3, 2017 at 10:00 am
I'm not quite sure on the question, sorry, however, what is the point of this statement: datetimestamp >= DATEADD(day,-1, datetimestamp). datetimestamp is always going to be greater...
February 3, 2017 at 9:26 am
Chris is right, moving the jobs to an Agent on a different server isn't going to achieve much, as the jobs are still going to interact with the server that...
February 3, 2017 at 8:51 am
Viewing 15 posts - 4,291 through 4,305 (of 5,111 total)