Viewing 15 posts - 3,421 through 3,435 (of 10,144 total)
EasyBoy (4/23/2014)
I can't to modify existing index due to business rule. So, i havent used AI_OperatorCBGEstimate_14947. But i have created new index(AI_OperatorCBGEstimate_HAP) with the...
April 23, 2014 at 5:39 am
EasyBoy (4/23/2014)
I can't to modify existing index due to business rule. So, i havent used AI_OperatorCBGEstimate_14947. But i have created new index(AI_OperatorCBGEstimate_HAP) with the...
April 23, 2014 at 5:30 am
Eirikur Eiriksson (4/23/2014)
ChrisM@Work (4/23/2014)
hoseam (4/23/2014)
April 23, 2014 at 5:10 am
hoseam (4/23/2014)
April 23, 2014 at 4:48 am
hoseam (4/23/2014)
...the user should be able to insert any table name as an input...
If you're updating two very specific columns, they should exist in one very specific table, surely?
If not,...
April 23, 2014 at 3:40 am
Eirikur Eiriksson (4/23/2014)
Is it this that you are looking for?😎
SELECT *INTO #MyTemp
FROM Sales.SalesOrderHeader;
SELECT *
FROM tempdb.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME LIKE N'#MyTemp%'
DROP TABLE #MyTemp;
Would you do it like this Eirikur or would you...
April 23, 2014 at 2:54 am
hoseam (4/23/2014)
SET @InsertSQL = 'SELECT * INTO Hosea_tempTable FROM ' + @TableName +' WHERE (Product_Id = '+ QUOTENAME(@Product_Id, '''''') +' or Product_Id = ''''...
April 23, 2014 at 2:45 am
hoseam (4/23/2014)
I have a product AGP with Fund E01, and other attributes
then later I want to creat another product with the same attributes as AGP...
April 23, 2014 at 2:27 am
aar.mba (4/17/2014)
Pls find the sample data
CREATE TABLE #mytable
(
current_week nvarchar(30)
)
insert...
April 23, 2014 at 2:22 am
hoseam (4/23/2014)
April 23, 2014 at 2:10 am
We'll need some sample data and a table of expected results. Read this article [/url]which describes how to create and post your scripts.
April 23, 2014 at 1:49 am
GilaMonster (4/22/2014)
ChrisM@Work (4/22/2014)
Systems here won't let me anywhere...
April 22, 2014 at 9:52 am
A little more info - this is the same question on MSDN:
[Quote]I have one simple query to optimize but somehow after creating couple of index this query is still having...
April 22, 2014 at 8:22 am
Greg Edwards-268690 (4/22/2014)
ChrisM@Work (4/22/2014)
Greg Edwards-268690 (4/22/2014)
Ed Wagner (4/22/2014)
dwain.c (4/21/2014)
Greg Edwards-268690 (4/21/2014)
TomThomson (4/20/2014)
Greg Edwards-268690 (4/20/2014)
I'll keep trying, but I may fail...
April 22, 2014 at 8:10 am
GilaMonster (4/22/2014)
ChrisM@Work (4/22/2014)
The question I'm asking is here - http://www.sqlservercentral.com/Forums/FindPost1563832.aspx and the query, to save you a few moments, is this:
select KeyInstn, MAX(dateendedstandard) DateEndedStandard
from ObjectViews..InternalOperCBGEstimate
where dateendedstandard...
April 22, 2014 at 7:30 am
Viewing 15 posts - 3,421 through 3,435 (of 10,144 total)