Viewing 15 posts - 3,556 through 3,570 (of 13,462 total)
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
In Oracle, Each Object can have double quotes. that means the table can have quotes, and it's column names can have quotes...but you can't wrap them all in-one..they each get...
May 1, 2013 at 7:39 am
You are looking for the BREAK keyword.
a simple example to break out of what would otherwise be an endless loop:
--RAISERROR immediate message
--print error immediately in batch
DECLARE
@i ...
May 1, 2013 at 6:33 am
you can join the table against itself, and use the modulus operator to limit it to the "odd" rows for the first value, leaving the second value as the date-ish...
April 29, 2013 at 1:56 pm
excellent! glad we could guide you in the right direction; I for one am very glad you were able to solve this with just a gentle nudge!
April 29, 2013 at 1:01 pm
ouch; remote-second hand assistance is tough,
I feel for you and what headaches are involved in getting your information once-removed from the client.
April 29, 2013 at 12:59 pm
Viewing 15 posts - 3,556 through 3,570 (of 13,462 total)