Viewing 15 posts - 1 through 15 (of 28 total)
its not mentioned directly on BOL but its takin int value of 4 bytes so is ir safe to assume that it will take
data from -2^31 (-2,147,483,648) through 2^31 -...
September 21, 2005 at 2:37 am
hi
thanks for reply
the above query will give orderid and productid but its not telling that orderid is mapped as "new orderId" in alias
there is no mapping between columns in...
September 20, 2005 at 7:35 am
hi
thanks for reply
the above query will give orderid and productid but its not telling that orderid is mapped as "new orderId" in alias
there is no mapping between columns in...
September 20, 2005 at 7:35 am
this is the actual view used
create view Invoices AS
SELECT Orders.ShipName, Orders.ShipAddress, Orders.ShipCity, Orders.ShipRegion, Orders.ShipPostalCode,
Orders.ShipCountry, Orders.CustomerID, Customers.CompanyName AS CustomerName, Customers.Address, Customers.City,
Customers.Region, Customers.PostalCode, Customers.Country,
(FirstName + ' ' + LastName)...
September 15, 2005 at 4:16 am
yes 'sa' works , my question is y i need a sql login to access a text file .
also the example i gave was for sp_addlinkedserver
August 22, 2005 at 6:10 am
books online suggested for adding a linked server to text file
--Create a linked server
EXEC sp_addlinkedserver txtsrv, 'Jet 4.0',
'Microsoft.Jet.OLEDB.4.0',
'c:\data\distqry',
NULL,
'Text'
GO
--Set up login mappings
EXEC sp_addlinkedsrvlogin txtsrv, FALSE,...
August 22, 2005 at 5:47 am
this statement is working
EXEC sp_addlinkedsrvlogin txtsrv1, FALSE,null,'admin', NULL
but can anybody point me to the difference between them ??
August 22, 2005 at 5:23 am
thnx a lot
that was really fast
jus one thing , can somebody explain me the diff between 2 queries , mine was...
August 18, 2005 at 6:38 am
thnx for the reply
we are using the query to find data from lefttable thats not available on right side table.
is there a better way of performing it
amrita
August 17, 2005 at 11:00 pm
thanks for the reply Noel
that syntax problem is my copig wrong query
apart from that , we cant create a view because we...
August 2, 2005 at 9:13 am
ya that makes sense , thnx for all the help
August 1, 2005 at 2:12 am
thnx for the answers
another question here, which one is better in terms of performance
ie subquery or left outer join
i have read subqueries are slow but in this case left...
July 29, 2005 at 4:51 am
thanks for the query , this one seems to work nicely
July 29, 2005 at 12:40 am
i like the idea , but isnt it same as the corelated subqueries ??
we cannot use the views as we are not dealing directly with the data and jus makin...
July 22, 2005 at 3:21 am
Viewing 15 posts - 1 through 15 (of 28 total)