Viewing 15 posts - 10,291 through 10,305 (of 15,381 total)
kapil_kk (10/22/2012)
how can we restricted a view to a particular user only?
GRANT select on SomeView to SomeUser
October 22, 2012 at 9:51 am
davdam8 (10/22/2012)
Im using:
SELECT PROJ, CARAC
FROM X
ORDER BY CASE WHEN MSP_LOOKUP_TABLE_VALUES.LT_VALUE_TEXT = 'None' THEN MSP_LOOKUP_TABLE_VALUES.LT_VALUE_TEXT END DESC
But it gives me repetitive results. Like 2...
October 22, 2012 at 9:44 am
harri.reddy (10/22/2012)
well.its not in my hand,my company wants me to do it
Then you need to figure out what you need to store. What are the entities in this system? What...
October 22, 2012 at 9:41 am
wailoon.ho (10/22/2012)
My application need at least 2 approval for an request.
I need to generate a report to count which combinations are the most.
example
ApplicationIDDateTimeApprovalUserID
110/10/20121
110/10/20122
110/10/20123
211/10/20121
211/10/20123
312/10/20122
312/10/20123
413/10/20121
413/10/20122
514/10/20121
514/10/20123
615/10/20121
615/10/20123
716/10/20121
716/10/20122
My report should show
Approval1Approval2Approval3Count
1231
122
133
231
I manage to the the...
October 22, 2012 at 9:38 am
graham 47698 (10/19/2012)
I have a table which has columns containing sales values for each month for example..
Id, versionId, jul,aug,sep,oct,nov,dec,jan,feb,mar,apr,may,jun
The 'versionId' joins to the period table which has the end dates...
October 22, 2012 at 9:31 am
AVB (10/22/2012)
October 22, 2012 at 9:29 am
SQLLux (10/22/2012)
(
@String varchar(8000),
@Delimiter char(1),
@RetStrPos int
)
returns varchar(100)
as
begin
declare @idx int
declare @slice varchar(8000)
declare...
October 22, 2012 at 9:22 am
With the total lack of information there is little anybody can do to help here. However, your dynamic sql is full of errors. You are not escaping your single quotes...
October 22, 2012 at 9:18 am
naqib_bs (10/22/2012)
I have recently joined Ms Products, we have a Database server in SQL Server 2000(located in X computer). I want
to connect SQL Server 2000...
October 22, 2012 at 9:10 am
info 58414 (10/22/2012)
i am searching for a StoredProcedureGenerator-Tool to generate Insert, Update, Delete, and Select Stored Procedures (SQL-Server) for selected tables for a particular database.
what would you recommend? ....stand-alone...
October 22, 2012 at 9:04 am
santa326 (10/19/2012)
Thanks for the response.
Number of resulting coloumns will be consistant.
From the query you posted ,i could not get the...
October 19, 2012 at 2:35 pm
Awesome job posting sample data and desired output in a readily consumable format. That makes this a LOT easier.
There are two techniques involved here. The first is to split the...
October 19, 2012 at 2:17 pm
Aijaz Ahmed Mir (10/19/2012)
thanks for your reply. is there any tool/script to extract the documents.regards
aijaz
Yes, SSIS. This is the very first line of that article.
The Export Column transformation reads...
October 19, 2012 at 1:45 pm
So just telling us that the table value function returns the same thing as table is not helpful. We speak in t-sql around here. Why would you have a table...
October 19, 2012 at 1:41 pm
You might also consider changing your where clause so you can avoid the index scan on Cap. Change the condition to greater than and you should see some improved performance...
October 19, 2012 at 12:53 pm
Viewing 15 posts - 10,291 through 10,305 (of 15,381 total)