Viewing 15 posts - 13,186 through 13,200 (of 49,552 total)
SQL 2000 isn't supported any longer, get SQL 2012 and use that.
We're volunteers here, we post in our spare time. Asking for someone to remote into your machine is...
May 12, 2013 at 2:57 am
AndrewSQLDBA (5/11/2013)
pl-sql is different that t-sql pl is Oracle based, which is cursive based. SQL Server is set based and uses t-sql Much more advanced language than pl-sql
pl/sql is set-based...
May 12, 2013 at 2:55 am
This is a Microsoft SQL Server site, not a generic, any database engine site. Specifically this forum is for Microsoft SQL Server 2008. We're SQL Server people here, not Oracle...
May 12, 2013 at 2:48 am
AndrewSQLDBA (5/11/2013)
Simple create a database, you can name it the same name or not. It does not matter. Then follow the instructions that Gila sent on restoring a database.
Err.. why...
May 11, 2013 at 4:25 pm
nerd_buzz (5/11/2013)
i am not using SQL Server Management Studio. I am using orcle sql developer verison 1.5.3 on my laptop and ver 3.2.20.09 on my desktop.
Why would you use...
May 11, 2013 at 4:23 pm
To be honest, I doubt they'll be required everywhere anytime in the next 8-10 years. Required in more and more places around new features, yes. Required everywhere, well, we still...
May 11, 2013 at 4:22 pm
A SQL Server database backup. So from SQL Server Management Studio, right click the database Tasks-> Backup. Copy the backup file that's created over to your other machine and restore...
May 11, 2013 at 12:36 pm
May 11, 2013 at 10:47 am
May 11, 2013 at 8:14 am
No effect. As far as an index is concerned, null is just another value.
May 11, 2013 at 7:37 am
You need to tune the queries, perhaps add indexes (and btw, 500000 rows is tiny)
May 11, 2013 at 4:47 am
With the IF UPDATE construct that Sean gave you. The trigger will still run, but the IF will return false and hence the code inside won't run.
May 11, 2013 at 3:39 am
SQL should not generally run as local system, it should run under a minimal privileged domain account.
You got the error because SQL did not have permission on the folder with...
May 11, 2013 at 3:38 am
Jeff Moden (5/10/2013)
I understand what the semi-colon can do so far as ending a statement but it worked just fine before without it before.
Increasing complexity of the language. SQL is...
May 11, 2013 at 3:35 am
Triggers (any triggers) aren't recursive. AFTER triggers can be made recursive by turning the database option on (though I haven't seen many cases where that's a good idea)
May 10, 2013 at 3:14 pm
Viewing 15 posts - 13,186 through 13,200 (of 49,552 total)