Hi,
what is the correct syntax to execute a query to a table on another
SQL-Server-Instance.
For example:
dbo.table on Server1 with Instance2 (Server1\Instance2)
Thanks in advance
F. L....
more >>
Hello and thanks for your efforts,
I have a table with Part, MonthSold, ItemsSold
i need to generate a view comparing this years sales to lastyears sales and
their differences by month.
this was my first shot at it:
SELECT DATENAME(month, inv_Monthly_Sales.MonthSold) AS Month,
SUM...
more >>
I think this should be easy, but I'm stuck. I have a datetime field with this
format: mm/dd/yyyy. It looks exactly as that format when I opened the table
in EM. How come when I used Query Analyzer, the format became yyyy-mm-dd
hh:mm:ss?
I need to create a crosstab table from this table using ...
more >>