Viewing 13 posts - 31 through 43 (of 43 total)
better u build the querry in ur application and run/ execute from there
November 28, 2007 at 10:20 pm
you can try using begin and end tran for inserting and getting the identity
November 26, 2007 at 10:04 pm
please check the schema and put the details in your reply
November 21, 2007 at 2:41 am
you can try with following querry
select ServerName, max(DateFrom), max(DateTo)
from dbo.Server
group by ServerName
November 21, 2007 at 2:37 am
you check whether there are two tables with same name and with different users.
iam sure that might be the reason for your querry.
November 21, 2007 at 2:32 am
If you want to copy table including data you can try the below querry
select * into otherdbname..tblname from currentdbname..tblname
otherwise if you want to copy ony the table structure try below...
November 21, 2007 at 2:29 am
If you want to copy table including data you can try the below querry
select * into
otherwise if you want to copy ony the table structure try below querry
select...
November 21, 2007 at 2:27 am
please try with below querry
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
create function [dbo].[udf_PAT_changes_value] (
@id smallint,@datee varchar(50),@colName varchar(100),@tableName varchar(50)
) Returns varchar(MAX)
AS BEGIN
DECLARE @@theValue varchar(MAX)
exec('SELECT TOP 1
@@theValue = '+@colName+' FROM' + @tableName + '...
November 15, 2007 at 10:39 pm
just put the actual querry to have better idea...........
November 15, 2007 at 9:57 pm
Hi,
try below querry, it should work
Select a.* from T1 a
left join T@ b on a.PartNumber = b.PartNumber
...
November 6, 2007 at 10:34 pm
You may try bold or font weight
October 30, 2007 at 1:18 am
hi,
have you shared ur printer, so that the other server can access the printer server printer,
just check and let me know.
October 30, 2007 at 1:09 am
Viewing 13 posts - 31 through 43 (of 43 total)