Viewing 15 posts - 631 through 645 (of 993 total)
Could you post the code of your UDF? Is it a simple procedure using a lookup table and some division? For a small app a while ago that worked with...
December 27, 2005 at 10:17 pm
You'll need to put the UDF in as the result of the case statement rather than the column alias name...
Also know that you can press SHIFT+ENTER rather than ENTER to...
December 27, 2005 at 1:00 am
also check to ensure that the SET options are the same for both connections. Are you using anything fancy like indexed views - they only work (without extra hints to...
December 27, 2005 at 12:55 am
Look at the GRANT and DENY transact SQL statements in Books Online.
If you also want to restrict it somewhat from administrators, you can do several things...
a) Create a trigger for...
December 27, 2005 at 12:52 am
The first "1" means to start at number 1. The second "1" means to increment by 1 for each row. So 2, 4 would give a sequence such as
2,...
December 27, 2005 at 12:46 am
Well caught with the UDF hole. That's the sort of thing you could overlook and wonder why a select statement is returning garbage results.. Thanks!
December 21, 2005 at 8:20 pm
Good to hear you are on track
Let us know how you get on - am interested to see final solutions and how well...
December 14, 2005 at 9:43 pm
SQL itself is not designed to output a variable number of columns based on its input. The idea is that you have a sql statement which will always produce a...
December 13, 2005 at 8:52 pm
Integrated security is "Windows Authentication" - same thing.
You can run SQL using Windows only authentication, or you can run it in "mixed mode" authentication - in this case, authentication can...
December 13, 2005 at 4:26 pm
Your old SQL 2000 installation was using a default instance, hence you could just connect with the computer name (GermanShepherd).
But you installed your 2005 as an instance - thus you...
December 13, 2005 at 4:19 pm
And how do we get the account group? I don't see it in your table DDL you posted...
Is your ultimate goal to put this into a spreadsheet or do you...
December 13, 2005 at 4:17 pm
So all DB access is via your library? From what I can see, giving them the DB won't help anyway because they need to develop against your library, not your...
December 13, 2005 at 4:12 pm
Viewing 15 posts - 631 through 645 (of 993 total)