Viewing 15 posts - 151 through 165 (of 2,904 total)
I would try to use Upgrade Advisor first....however, I'm not sure it will work with SQL Server 7.0. Check this link out..
https://msdn.microsoft.com/en-us/library/ms144256(v=sql.105).aspx
That (if if works for 7.0) will let...
April 27, 2015 at 2:19 pm
Lynn Pettis (4/24/2015)
jonathan.crawford (4/24/2015)
April 27, 2015 at 2:04 pm
There's only four options I can see:
1. include the date value in the statement.
2. have a for insert/update trigger(s) that will add the date
3. have an after insert/update trigger(s) that...
April 16, 2015 at 2:25 pm
Look into these MSDB roles:
SQLAgentOperatorRole
SQLAgentReaderRole
SQLAgentUserRole
I've listed them from highest permissions to lowest - if you grant one permission, the one(s) under it are automatically granted.
Those will allow a user to...
March 18, 2015 at 2:44 pm
SmilingLily (3/18/2015)
Recovery model of that database is simple.
what is the best way to handle it?
Am...
March 18, 2015 at 2:38 pm
You say you can't use SELECT * FROM viewA. Have you tried listing out the columns? Let's say the view has 5 columns and column 3 is restricted.
SELECT...
March 18, 2015 at 2:32 pm
Real World....kinda...
Let's say you run a site similar to this one. You need to update each user's number of points. You could just query the database for each...
March 9, 2015 at 1:16 pm
SQLAssAS (3/6/2015)
UPDATE [Staging_TABLE] SET Data_clean = REPLACE(Data_clean, '||','"')
WHERE (Data_clean like '%|,||%') and Data_clean not like '%|,||,|%'
|,|text|,||,|address1|,||Housename" Address2|,|
I am trying to replace the || with "...
March 6, 2015 at 8:49 am
In SQL Server, sometimes user logins get orphaned. I took this cartoon to be that the 'users' had orphaned logins and were unable to access the data that they...
March 6, 2015 at 8:43 am
Eirikur Eiriksson (3/5/2015)
SQLRNNR (3/5/2015)
Sean Lange (3/5/2015)
Sioban Krzywicki (3/5/2015)
Sean Lange (3/5/2015)
Brandie Tarvin (3/5/2015)
SQLRNNR (3/5/2015)
dwain.c (3/5/2015)
March 5, 2015 at 12:34 pm
You may have multiple 'connections' open to the database. One that trips users up is to expand the list of databases, click on the database (one connection), and then...
March 4, 2015 at 11:50 am
Sioban Krzywicki (2/26/2015)
Grant Fritchey (2/26/2015)
Brandie Tarvin (2/26/2015)
Jeff Moden (2/25/2015)
Brandie Tarvin (2/25/2015)
February 26, 2015 at 12:02 pm
Jeff Moden (2/25/2015)
SQLBill (2/25/2015)
Jeff Moden (2/24/2015)
February 26, 2015 at 7:27 am
Brandie Tarvin (2/25/2015)
I...
February 25, 2015 at 1:23 pm
djj (2/25/2015)
Interesting forward as...
February 25, 2015 at 1:18 pm
Viewing 15 posts - 151 through 165 (of 2,904 total)