Viewing 15 posts - 46 through 60 (of 294 total)
The obvious reply is to look at reporting services, in which you should be able to produce the report you want.
April 12, 2010 at 4:26 am
You could play around with this to make it more readable but I think it does display the data in the format you want.
SELECT DISTINCT
A.[StaffNo],
A.[Name],
STUFF(( SELECT ' | '...
March 30, 2010 at 8:15 am
Have you tried running it from the command prompt, google has a few links on how to do this.
March 26, 2010 at 4:20 am
Food for thought, I can see many uses for this.
Thanks
March 25, 2010 at 3:56 am
If you have SQL users rather than windows authenticated users see:
http://support.microsoft.com/kb/246133 this will enable you to script out all users, permissions and passwords and apply them to the new...
March 18, 2010 at 3:59 am
In an ideal world (still looking for it) you would design all your databases from a model, using a good tool, my preference Power Designer (Sybase). Then apply all changes...
March 15, 2010 at 4:48 am
Who will use - Security and Permissions
How much data - Size of database, Size of hardware required.
Retention of data - How long will data be kept , how much growth,...
March 5, 2010 at 3:59 am
You only have to give permissions on the table that you wish to link to. See BOL for
sp_addlinkedserver and sp_addlinkedsrvlogin
March 5, 2010 at 3:49 am
Probably because the Master database is set to simple mode, so there are no logs to backup. Check the properties.
March 1, 2010 at 8:43 am
Right click on the table in management studio select script table as then create to and lastly select option of where to write the script out.
February 18, 2010 at 7:00 am
Have you checked that its not related to a collation issue on the database, in that its set to a different collation to that expected. Can happen if SQL Server...
February 16, 2010 at 3:39 am
Are there any uncommitted transactions? Check the DBCC OPENTRAN topic in SQL Server Books Online.
January 29, 2010 at 4:12 am
Tested on 3 versions and got...
SQL 2000 (0,1)
SQL 2005 (1,1)
SQL 2008 (1,1)
I think the question should be re-worded and answers reset if the posts on this discussion are anything to...
January 29, 2010 at 4:08 am
Check the permissions they might be there but not visible to the user you are logged in as.
January 19, 2010 at 4:30 am
Viewing 15 posts - 46 through 60 (of 294 total)