Viewing 14 posts - 376 through 390 (of 390 total)
hiteshchouhan91 (6/24/2012)
select s.part_name as Part_Name,s.part_no as Part_No,s.uom as UOM,i.Stock_OnEntryDate ,sum(i.invoice_quantity) as Import,sum(r.Return_Quantity)as Material_Return,sum(p.Issue_Quantity) as Issue,sum(er.Quantity)as Excess,sum(sr.Quantity) as Short,s.available_quantity as Balance from dri_Stock s left join dri_InwardEntry i on
s.part_no=i.part_no and...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2012 at 1:04 am
Methew (6/26/2012)
IF OBJECT_ID('TempDB..#mytable1','U') IS NOT NULL
DROP TABLE #mytable1
CREATE TABLE #mytable1
(
ID INT IDENTITY(1,1) ,
UName NVARCHAR(50),
alert_datetime DATETIME
)
SET IDENTITY_INSERT #mytable1 ON
INSERT INTO #mytable1
(ID, UName,alert_datetime...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2012 at 12:44 am
Koen Verbeeck (6/25/2012)
Haven't used NULLIF before, so I learned something.Small error: the select statement selects 4 columns, the answers have only 3.
Nice observation Koen 🙂
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2012 at 12:32 am
One more function added in my memory DB 🙂
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2012 at 12:30 am
fawadafr (6/25/2012)
All product names end with a date string (e.g. <span style="color:#f00;">Availability: 6/27/2012</span>)
No, each product name string can only contain one date.
Is it possible to get the...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2012 at 12:17 am
fawadafr (6/25/2012)
UMA Titanium Temporary Hex Cylinder Product Code: 11-000300 <span style="color:#f00;">Availability: 6/15/2012</span>
UMA Hex Cylinder Product Code: 11-000200 <span style="color:#f00;">Availability: 8/2012</span>
ScrewPlant® GPS™ Abutment: 3.7mmD...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 11:17 pm
Robert Davis (6/25/2012)
Syntax: SUBSTRING(<Expression>, <Start position>, <Length of string>)
Expression is the string.
Start position = use Charindex to identify the point where to start the...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 11:11 pm
bitbucket-25253 (6/25/2012)
bhuvneshk (6/25/2012)
Please try to search the syntax on BOL or do little Google for that before posting it to this forum.
As many of other useful queries remain ananswered...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 10:56 pm
so.eslami (6/24/2012)
i use this command for giving ranking of user but i give errorselect Score, (DENSE_RANK() OVER ( order by Score desc)) AS Ranking
FROM cuscore
ORDER BY Ranking
There is no...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 6:32 am
Hi Regina,
Please try to search the syntax on BOL or do little Google for that before posting it to this forum.
As many of other useful queries remain ananswered due to...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 6:19 am
Can you please tell me what are the properties you are saving in the table and if possible please provide the dummy values as well.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 1:17 am
Hi Karthik,
Please try below points.
1.If you are storing SQL connection string in database table.
In case of SQL authentication please check the ConfiguredValue(Password and all are correct).
2.Encrypt the package with "EncryptSensitiveWithPassword"...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 25, 2012 at 12:13 am
Hi Gravitysucks,
As Rtaylor made it clear the syntax is pretty straightforward.
e.g. have a look on below dummy example
INSERT INTO RunInfo
(Col_1, Col_2)
VALUES (?, ?);
In SQL statement property of Exec SQL...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 22, 2012 at 7:06 am
How are you vaildating that package is executing successfully ?
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 22, 2012 at 6:20 am
Viewing 14 posts - 376 through 390 (of 390 total)