Viewing 15 posts - 226 through 240 (of 486 total)
I appreciate this is an old post but thought it may be worth replying.
IOPS provisioning is optional and if you provision a set value you will be charged for it....
April 29, 2014 at 8:30 am
Amazon web services supports the building of virtual machines using there EC2 functionality, there is free layer servers that you can build that have SQL express installed. The also...
April 29, 2014 at 8:18 am
Open the properties of your publication, go to articles, select your table, click on the button "Article properties", select "set properties of highlighted article". With the properties change...
April 22, 2014 at 6:34 am
This should help:
SELECTCourseGroup,
Title_Offering,
No_People_attended,
ROW_NUMBER() OVER (PARTITION BY CourseGroup ORder By No_People_Attended DESC) AS RowNumberResults,
RANK() OVER (PARTITION BY CourseGroup ORder By No_People_Attended DESC) AS RankedResults,
DENSE_RANK() OVER (PARTITION BY CourseGroup ORder...
April 22, 2014 at 6:17 am
Can you provide a sample output of what you would expect given your data? I am struggling to understand what data you want returned.
March 25, 2014 at 10:08 am
Using a combination of Jeff and I's solution, you can replace DENSE_RANK() WITH RANK() should you not mind gaps in the ordering when you have more than 1 instance of...
March 25, 2014 at 9:32 am
here you go, I'll let Jeff update his solution:
**** removed my code *** that didn't work. . Will post back
March 25, 2014 at 8:47 am
What parameters is the procedure expecting? Run sp_help then the name of the procedure to get a list. Chances are your procedure expects more than the one parameter...
March 25, 2014 at 8:40 am
As far as I am aware SQL will only write to the application log, its not possible to write to the security log.
March 25, 2014 at 7:45 am
So all lastnames that are the same will get the same incremental number?
I.e. All surnames of Jones become Lastname1 and all surnames of Taylor get LastName2
March 25, 2014 at 7:25 am
SQL Nexus is a good tool to evaluate the performance of a server whilst perfoming a load test.
To evaluate the IO subsystem there is a utility called SQLIO:
http://www.microsoft.com/en-us/download/details.aspx?id=20163
I assume by...
March 25, 2014 at 6:39 am
Something like this:
USE tempdb
GO
IF EXISTS (SELECT * FROM sys.tables WHERE name = 'Names')
DROP TABLE Names
GO
CREATE TABLE Names (
PKID INT IDENTITY(1,1),
LastName nvarchar(100)
)
GO
INSERT INTO Names (LastName)
SELECT 'Jones' UNION ALL
SELECT 'Smith' UNION ALL
SELECT...
March 25, 2014 at 6:23 am
Actually found a few flaws in my first attempt, try this:
USE tempdb
GO
IF EXISTS (SELECT * FROM sys.tables WHERE name = 'TestData')
DROP TABLE TestData
GO
CREATE TABLE TestData (
ID INT,
PRODUCT NVARCHAR(100),
ProdID int,
STRTAGE int,
ENDAGE...
March 25, 2014 at 6:02 am
Given that you did not post any DDL, how about this as a solution. You will need to tweak it to suit your code:
USE tempdb
GO
CREATE TABLE TestData (
ID INT,
PRODUCT...
March 25, 2014 at 5:55 am
Can you post up some sample code for creating the table and data and any solution you have attempted so far. It will make helping you much easier.
March 25, 2014 at 5:33 am
Viewing 15 posts - 226 through 240 (of 486 total)