I want to have a list of available SQL servers (Not Databases)
on my company network.
(If possible for use with visual basic .Net)
Thanks
Menno
...
more >>
I'm having some trouble understanding why SQL Server seems to be
handling millisecond precision wrong. Consider the following sample
code:
------------------------------
CREATE TABLE [dbo].[testdatetime] (
[my_datetime] [datetime] NULL
) ON [PRIMARY]
GO
INSERT [dbo].[testdatetime] (my_...
more >>
the SQLServer diagrams are good for a quick view of tables and their
relationships, but i'm looking for something with a little bit more
metadeta in it. is there a diagram tool that will list the index,
default values, and trigger information per table as well? something a
little more visually e...
more >>
Greetings.
I have a database table with columns of type varchar length 80 that contain
floating point data I'm trying not to lose any of.
First of all I thought that numeric was appropriate for floating point
numbers,
but I don't see any decimal points or values in the output for numeric ...
more >>
If I have a date (smalldatetime) column in a table, and want to get a result
set where there is a row for every minute (even though no data point might
exist for that minute), how would I do something like this?
...
more >>