Viewing 15 posts - 31 through 45 (of 270 total)
If you installed the express version of management studio you must uninstall it first if you wish to install the full version. So I am guessing this could be an issue...
April 15, 2007 at 5:12 am
What version are you trying to install?
VS usuall installs express by default when its being installed?
As it sounds like its trying to upgrade a version you alreday hav einstalled
David
April 14, 2007 at 9:56 am
You could do something like
SELECT *
FROM Table
where datetime >= DATEADD(week, -4, GETDATE())
Obviously the use of getdate() may not be appropriate for you but hopefully you get the idea
hth
David
April 14, 2007 at 9:06 am
It's in BOL if you try typing url in the index it will miraculosuly find all the topics about accessing reporting services through a url.
David
April 10, 2007 at 2:04 pm
April 10, 2007 at 7:14 am
I have always just dropped the table in the worksheet as the first step in the package and recreated it in the second and the after the do what you...
April 10, 2007 at 5:37 am
Are you getting this error often??
If so check the server you are backing up to and look for mrxSMB erors and LAN redirector errors in the event log if this is...
April 9, 2007 at 2:31 pm
By the way using auto shrink is not recommneded you can find many articles on why e.g
http://www.sqlservercentral.com/columnists/mpearson/autocloseandautoshrinkjustdont.asp
To recreate tempdb you will need to restart sql server as it recreated each...
April 9, 2007 at 10:55 am
I think its just
SELECT department, sn + '', '' + givenname
April 9, 2007 at 2:26 am
Create
Procedure SPPS
@Year1
int, @Year2 int ,@Year3 int
April 9, 2007 at 2:20 am
I have one of my development boxes running SQL Server 2005 SP2 with windows server 2003 sp2 and have encountered no problems.
My patch was applied to a 2003 sp 1...
April 7, 2007 at 5:09 am
I have seen this when running on windows server 2003 as microsoft chnaged the default security settings for dtc. I ma not sure if they also applied this chnage in...
April 7, 2007 at 2:26 am
If you are using sql server 2005 you can achieve this by using the row number function and then using the row number to return a subset of the data...
April 6, 2007 at 12:29 pm
The column [GRANT RATE] has a different data type in both tables in one it is a float in the other it is a nvarchar.
Anyway it will be the conversion...
April 6, 2007 at 12:21 pm
Could you not do something like
SELECT docid
FROM table a
where exists (select * from table b where a.docid = b.docid + 1 and dteprocesstime IS NULL)
David
April 6, 2007 at 11:47 am
Viewing 15 posts - 31 through 45 (of 270 total)