Viewing 15 posts - 8,971 through 8,985 (of 26,490 total)
steve 50602 (1/13/2013)
January 13, 2013 at 12:04 pm
opc.three (1/13/2013)
Lynn Pettis (1/13/2013)
Of course, using SQLCLR is also dependent on whether or not you are allowed to use it in your environment as well.
Naturally. It, like sys.xp_cmdshell, is disabled...
January 13, 2013 at 10:39 am
luissantos (1/13/2013)
I have create this function to return total pairs:
CREATE FUNCTION [dbo].[fnQtRefCor]
(@bostamp varchar(25), @ref varchar(20), @cor varchar(50))
RETURNS int
AS
BEGIN
DECLARE @retval int
SELECT @retval = SUM(qtt) FROM bi
WHERE @bostamp = bostamp...
January 13, 2013 at 10:28 am
opc.three (1/13/2013)
January 13, 2013 at 10:23 am
durai nagarajan (1/13/2013)
Jeff Moden (1/13/2013)
January 13, 2013 at 10:19 am
durai nagarajan (1/13/2013)
Is it posible to restore to any time in point in restore. i am getting issues if i have to restore to date before to the time...
January 13, 2013 at 9:29 am
I answered this over here.
January 12, 2013 at 2:34 pm
Simplest answer I can give you is that you are trying to use MS SQL Server based code in MySQL and MySQL doesn't like it.
This is a Microsoft SQL Server...
January 12, 2013 at 11:57 am
Have you read the following plus the related links in the article?
http://msdn.microsoft.com/en-us/library/ms188623(v=sql.100).aspx
January 12, 2013 at 3:35 am
Then I suggest reading the following:
January 12, 2013 at 3:31 am
Did you follow the link in that msdn article you referenced, http://msdn.microsoft.com/en-us/library/ms189977(v=sql.105).aspx? It does a good job of explaining what happens.
January 12, 2013 at 1:42 am
Once I figured out you meant crore and that is 100 lakh, all I can say is it may take a while to rebuild 19 nonclustered indexes on a table...
January 12, 2013 at 1:35 am
This is what I developed:
CREATE TABLE #Test
(
ProductID int,
MainMasterFeatureID int,
MasterFeatureValue Varchar(100),
ChilFeatureName varchar(100),
ParentFeatureName varchar(100)
);
INSERT INTO #Test
SELECT 40,1,'1','Pack','Type'
UNION ALL
SELECT 40,0,'Laminate','Technology','Technology'
UNION ALL
SELECT 40,11,'1','Yes','Coated'
UNION ALL
SELECT 52,1,'1','Roll','Type'
UNION ALL
SELECT 52,11,'1','NO','Coated';
select * from #Test;
go
select
...
January 12, 2013 at 1:27 am
Snargables (1/11/2013)
i think i found it.http://blog.sqlauthority.com/2008/08/31/sql-server-table-valued-parameters-in-sql-server-2008/
If I read you correctly, you want to pass the name of a table, any table, to a stored procedure and run a query against...
January 11, 2013 at 5:20 pm
Lynn Pettis (1/10/2013)
January 11, 2013 at 2:26 pm
Viewing 15 posts - 8,971 through 8,985 (of 26,490 total)