Viewing 15 posts - 10,861 through 10,875 (of 13,469 total)
did you drop your temp table so it can be recreated with the new column?
July 10, 2009 at 10:36 am
you had a few errors in what you were trying to do;
dbcc inputbuffer returns a table with 3 columns...you have to capture the columns.
your concatenation was not quite right;
hre's a...
July 10, 2009 at 10:26 am
maybe you are comparing it to the way oracle works? oracle is very user centric...delete a user, and you delete all the data owned by that user. could be gigs...
July 10, 2009 at 10:19 am
with massive updates like that I think it is a lot easier to undo or stop if you did the updates in batches, instead of trying to do the whole...
July 10, 2009 at 8:14 am
I'd seen a similar requirement before, so I created this procedure...you have to pass it two parameters: the tablename and the search term.
it uses dynamic sql to quiery just the...
July 10, 2009 at 6:41 am
ok, it's the middle of the night, and to boost my coolness, i answered a hundred or so questions in the Question of the Day section;
they don't get added...
July 10, 2009 at 12:03 am
oops duplicate reply from me somehow...
July 9, 2009 at 11:26 pm
here's the code I use to add a linked server; there's no difference between a linked server for 10G vs 11G as far as I know.
--#################################################################################################
--Linked server Syntax for Oracle...
July 9, 2009 at 11:23 pm
definitely permissions related...operating system privileges, not related to SQL.
i think if you right click on the shortcut to SQL Server Management Studio, you can choose Run As...
if you do that...
July 9, 2009 at 3:30 pm
some of the hobby databases that I've done in the past , to help me really understand SQL:
1. gathering lists of city/county/state/zipcode, and breaking them up into parent-child tables:...
July 9, 2009 at 9:34 am
i backed it up and put it on the web if you want it;
see the post here:
http://www.sqlservercentral.com/Forums/Topic750105-338-1.aspx
this errors on the forum causing multi posts is annoying.
July 9, 2009 at 8:51 am
if you can spare the time, dump a request to some local businesses asking for an unpaid intern position sitting with their SQL DBA. volunteering a few hours a couple...
July 9, 2009 at 7:55 am
here you go jason:
i don't think the msi works unless you have SP2a or above installed;
i ran the msi, which drops an mdf/ldf pair in the default data folder so...
July 9, 2009 at 7:47 am
that's an easy one for SQL 2005, mohan;
one of the sys views has exactly what you are looking for;
select state_desc,* from sys.databases
the state_desc is usually ONLINE or OFFLINE, but there...
July 9, 2009 at 7:21 am
at our shop, we stick useful udf's and procedsures in the model database; everyone(well developers) knows where they are if they need to copy them to a newly restored...
July 9, 2009 at 7:12 am
Viewing 15 posts - 10,861 through 10,875 (of 13,469 total)