Viewing 15 posts - 3,556 through 3,570 (of 13,469 total)
and virtually, because we have a sub-select, we can just filter the results right there in the SQL statement:
SELECT
IndivdualId,
City,
...
May 2, 2013 at 2:26 pm
how about changing the drop down into an optional text field...that way if the user KNOWS the ID, they can just type it in;
i'm no SSRS expert, but...
May 2, 2013 at 1:38 pm
one way is to create a view that has one record per Id, then you get jsut the "current" people in TX in your example:
CREATE VIEW CurrentAddresses
AS
SELECT
...
May 2, 2013 at 1:26 pm
i would swear there was a similar post a few months back, and i seem to remember that if a query uses parallelism, you can see this behavior?
May 2, 2013 at 11:48 am
fish that table is for an Oracle definition, and not SQL server.
just creating the table is not enough, don't you need to insert some data into the table before querying...
May 2, 2013 at 10:28 am
session is single_user mode, or the database?
if it's the database,
you can look in sys.databases for any databases with user_access_desc = 'single_user', and then compare the results to who's...
May 2, 2013 at 9:47 am
npyata (5/2/2013)
USE...
May 2, 2013 at 9:35 am
there are lots of other functionalities that SSMS assumes you must have sysadmin rights in order to perform actions;
most of the nodes in the Object explorer assume it, ...
May 2, 2013 at 8:34 am
thank you Gail!
May 2, 2013 at 7:09 am
they are the same query, but with a some expressions to calculate the field values.
test it yourself by looking at the actual execution plans when you run them.
they will both...
May 2, 2013 at 7:07 am
Tobar (5/2/2013)
Just one...
May 2, 2013 at 6:31 am
duplicate post.
There's no need to post the same question in multiple forums.
The Recent Topics function most people use shows us your post immediately.
crossposting will wastes people's time and fragments replies....
May 1, 2013 at 2:54 pm
wow it's been a long time since i had to do this in SQL2000;
SQL 2000 doesn't support row_number() functions either.
if you can go without row_number, it just becomes a sub...
May 1, 2013 at 2:50 pm
a slight modification if you are using windows authentication:
-- we need a login for the Web To Use:
CREATE LOGIN [DEV223\ASPNET] FROM WINDOWS WITH DEFAULT_DATABASE=[master]
--pick the right db!
USE [WHATEVER]
--now we...
May 1, 2013 at 10:16 am
here's an example i adapted from another one I've used int eh forums here:
-- we need a login for the Web To Use:
create login WebUser with password = 'NotTheRealPassword'
--pick the...
May 1, 2013 at 10:08 am
Viewing 15 posts - 3,556 through 3,570 (of 13,469 total)