Viewing 15 posts - 5,116 through 5,130 (of 10,144 total)
prakashr.r7 (3/5/2013)
You can solve your immeditate problem by using the solution I proposed above - generate a table of all 36 values (or whatever) randomised relative to an incrementing numeric...
March 5, 2013 at 4:07 am
winmansoft (3/5/2013)
ChrisM@Work (3/5/2013)
March 5, 2013 at 3:56 am
prakashr.r7 (3/5/2013)
Jeff Moden (3/4/2013)
March 5, 2013 at 3:52 am
winmansoft (3/5/2013)
training
checkout
surfing
develop
...
I have another...
March 5, 2013 at 3:39 am
chingarova (3/5/2013)
The script I posted is just an example(my real example is different and much more complex,but this doesn't matter), what I need to understand is why...
March 5, 2013 at 3:05 am
chingarova (3/5/2013)
March 5, 2013 at 2:47 am
chingarova (3/4/2013)
I am having a BIG problem with the merge statement in SQL 2008:
When I have an entry (for example an employee name) in the table which is already...
March 5, 2013 at 2:00 am
Krishna1 (3/4/2013)
For one table I need to create insert statemetn with data. For this I used SSMS-Task -Generate script - Data only it creates inserts will all...
March 5, 2013 at 1:48 am
Investigate the properties of the Compute Scalar operator - right-click on the icon, choose "Properties". Expand the collapsed nodes.
March 5, 2013 at 1:39 am
Your requirement isn't totally clear Alan so I'll take a shot at interpretation and suggest ROW_NUMBER(), like this:
SELECT
rn = ROW_NUMBER() OVER (
PARTITION BY Software_Name_Raw, Software_Version_Raw, Software_Publisher_Raw
ORDER BY Load_Date),
Software_Name_Raw,
Software_Version_Raw,
Software_Publisher_Raw,
Software_Category,
Software_Subcategory,
MSDN_Flag,
CDL_Flag,
Source,
Pending_Classification_Flag,
Auto_Classification_Flag,
Software_Classification_Version,
Manual_Deletion,
Load_Date
FROM...
March 5, 2013 at 1:32 am
jamesnorton (3/4/2013)
I have been given a database that has the dates stored in...
March 4, 2013 at 10:00 am
With the added cost of Event_Channel in the matrix table correlating with the inner query, it may be worthwhile splitting the query up, like this:
SELECT *
INTO #Matrix
FROM Tijdsintervallen
CROSS...
March 4, 2013 at 9:20 am
geert.de.vylder (3/4/2013)
Yes, event_channel has to be populated, even if there isn't a match in the Tussen_Ticket table. This is because I have to update the results into another table...
March 4, 2013 at 9:15 am
geert.de.vylder (3/4/2013)
I'm connecting to SQL Server 2008 R2.
Run this: SELECT @@VERSION
March 4, 2013 at 9:13 am
prakashr.r7 (3/4/2013)
I can generate unique values....what i am asking is " How do you generate unique values for 40 rows ? " We can generate upto 36 right? How...
March 4, 2013 at 9:11 am
Viewing 15 posts - 5,116 through 5,130 (of 10,144 total)