Viewing 15 posts - 1,951 through 1,965 (of 6,401 total)
djj (10/23/2015)
anthony.green (10/23/2015)
Ed Wagner (10/22/2015)
MathSchool
Study
Invest
October 23, 2015 at 5:30 am
Take a look at GRANT
GRANT SELECT ON .... TO ....
GRANT INSERT UPDATE DELETE ON .... TO ....
Also take a look at ROLES in case you need to do this to...
October 23, 2015 at 4:10 am
Anyone in the UK after a "SQL Trainer" contract role? Travel across Europe all expenses paid?
I would have jumped on this like a sky rocket, but I have...
October 23, 2015 at 3:03 am
Try it out see what happens. Restore a DB with NORECOVERY to leave it in a restoring state, then run your maintenance plan.
October 23, 2015 at 2:17 am
Site is slow for me today, taking a good 30 seconds to a minute to switch between topics and posting.
Just took 60 seconds to get to forum 433-1 and then...
October 23, 2015 at 2:12 am
You will need to hack the script to remove the servername from the backup path.
October 23, 2015 at 2:04 am
crookj (10/22/2015)
anthony.green (10/22/2015)
djj (10/22/2015)
anthony.green (10/22/2015)
Ed Wagner (10/22/2015)
BL0B_EATER (10/22/2015)
crookj (10/22/2015)
anthony.green (10/22/2015)
Ed Wagner (10/22/2015)
DumbledoreProfessor
Gandolf
Beard
Hair
Biker
Leather
Cow
Tipping
Tractor
October 22, 2015 at 8:55 am
If I understand right, you don't need a loop for this if the other values are static.
declare @month date ='2015-10-01'
create table #destination (code char(3), mon date, value int, measure char(6))
create...
October 22, 2015 at 8:54 am
djj (10/22/2015)
anthony.green (10/22/2015)
Ed Wagner (10/22/2015)
BL0B_EATER (10/22/2015)
crookj (10/22/2015)
anthony.green (10/22/2015)
Ed Wagner (10/22/2015)
DumbledoreProfessor
Gandolf
Beard
Hair
Biker
Leather
Cow
October 22, 2015 at 8:45 am
Add a second join a second copy of sys.columns and join back on the referenced column data instead.
select distinct
A.name as tab_name ,
B.name as col_name,
C.name as col_type...
October 22, 2015 at 8:40 am
Please see your other post, I posted an updated query
http://www.sqlservercentral.com/Forums/Topic1729985-2799-1.aspx
October 22, 2015 at 8:00 am
Ed Wagner (10/22/2015)
BL0B_EATER (10/22/2015)
crookj (10/22/2015)
anthony.green (10/22/2015)
Ed Wagner (10/22/2015)
DumbledoreProfessor
Gandolf
Beard
Hair
Biker
October 22, 2015 at 7:45 am
For the FK details, left join to sys.foreign_key_columns on the parent values to the sys.columns values
select distinct
A.name as tab_name ,
B.name as col_name,
C.name as col_type ,
case when...
October 22, 2015 at 7:44 am
Viewing 15 posts - 1,951 through 1,965 (of 6,401 total)