Viewing 15 posts - 10,141 through 10,155 (of 13,460 total)
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...
Lowell
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...
Lowell
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,...
Lowell
January 11, 2010 at 9:44 am
changing lock styles has a very minimal impact on queries, especially in SQL2005 and above.
For example, unless you have a LOT of updates going on every x milliseconds, SELECT...
Lowell
January 11, 2010 at 8:33 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...
Lowell
January 10, 2010 at 11:44 am
naldo.samuel (1/10/2010)
Lowell
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...
Lowell
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
...
Lowell
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...
Lowell
January 8, 2010 at 11:30 am
edited to avoid crossposting the post as Jason suggested. see the original thread.
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
January 7, 2010 at 4:54 pm
Jeff Moden (1/7/2010)
Lowell
January 7, 2010 at 3:24 pm
the trick is to use a combination of dateadd and datediff, here's sme examples of some firsts and lasts; to apply the logic to a specific daye, like "what...
Lowell
January 7, 2010 at 2:20 pm
Viewing 15 posts - 10,141 through 10,155 (of 13,460 total)