Viewing 15 posts - 10,141 through 10,155 (of 13,461 total)
sorry i was confusing the express versions to evaluation versions; like you said, evaluation versions are timelimit handicapped, but have everything the developer/enterprise versions have.
express version doesn't have all that...
January 11, 2010 at 11:50 am
you'll have to purchase the 2008 Developer Edition in order to work with cubes/analysis server/BIDS/Integration Services;
those functions are not included in the free express versions. the express version comes with...
January 11, 2010 at 11:29 am
there is no difference; SQL is smart enough to know there is no reason to retrieve rows for the count() function, and does it the fastest way possible; count(*),count(someColumn) and...
January 11, 2010 at 9:51 am
what you want to do is create a few roles in your database first. once the roles are created, then you want to remove your user from the db_owner role,...
January 11, 2010 at 9:44 am
would it be easier to create a role in the production database that has execute access to the 50 procedures, and then use a variation of Seth's script to add...
January 10, 2010 at 11:44 am
naldo.samuel (1/10/2010)
January 10, 2010 at 7:28 am
by default, all columns are added to the end to a table; to add one in the middle, you have to rebuild the whole table.
SQL doesn't care about column order...
January 9, 2010 at 5:53 am
just use a case statement to check for the number of periods; if it's two or more, use your formula, else get the full string.
typical results:
Node1.Node2
Node1.Node2
Node1.Node2
ServerName.DatabaseName
192.168
Bob
code example:
select
CASE
...
January 8, 2010 at 8:21 pm
i didn't see this thread, and started building my response before Jason posted the cross post info.
a Normal view is not materialized as data the way a table is;
views get...
January 8, 2010 at 11:30 am
edited to avoid crossposting the post as Jason suggested. see the original thread.
January 8, 2010 at 11:17 am
I might be misreading your requirement, but what i guess that was what i was trying to say....
you have access to the remote server, right?
if you do, then you can...
January 8, 2010 at 10:36 am
i see;
can't you go to the remote server, find the role that your user mydomainname\username is in, and then jsut add a SQL login to the same role?
then that logon...
January 8, 2010 at 8:41 am
Eric can you show us the proc text itself, and maybe post the execution plan of the proc when it runs? that would give us the critical diagnostic info, i...
January 7, 2010 at 4:54 pm
Jeff Moden (1/7/2010)
January 7, 2010 at 3:24 pm
Viewing 15 posts - 10,141 through 10,155 (of 13,461 total)