Viewing 15 posts - 4,276 through 4,290 (of 13,460 total)
david take a look at http://www.mylittleadmin.com/
if that's not what you are after, I can give you a copy of a simple aspx page I slapped together a long time...
Lowell
December 5, 2012 at 7:21 am
I think your trigger model needs to look more like this.
because triggers handle multiple rows in SQL server, you should never declare a variable in a trigger, because it makes...
Lowell
December 5, 2012 at 7:12 am
Bhuvnesh (12/5/2012)
Lowell (12/4/2012)
HEAP tables never release the space taken by deleted rows.this is new to me ..can you give me any article reference here ?
sure!
take a look at...
Lowell
December 5, 2012 at 5:25 am
it's because you have have to specify the database name in front of information_schemas, otherwise it's the current context.
i personally avoid the information_schemas, and go for the SQL views instead;
this...
Lowell
December 4, 2012 at 2:25 pm
to get it to 10% of it's original size, that means deleting 90% of the data? i don't think that's what you are really asking.
besides the points above, (and compresison...
Lowell
December 4, 2012 at 1:37 pm
we'd have to see the actual table structure and sample data (CREATE TABLE ...INSERT INTO)
but you could do something as easy as joining with an "exotic" join...that is not with...
Lowell
December 4, 2012 at 10:52 am
well, for the SQL log, exactly where the logs go is configurable...when you first install the server, one of the options is to decide on the folders.
it defaults to a...
Lowell
December 4, 2012 at 9:48 am
moh_ab1979 (12/4/2012)
Just i want to know what do it mean exactly connectivity standard ?Does it mean the way to connect the database with application like ODBC engine or ........etc
well...
Lowell
December 4, 2012 at 9:39 am
its certainly possible, you'd probably want to create a linked server to the other server, and then create the view with a full four part naming convention.
CREATE VIEW
AS
SELECT ColumnList
FROM MyLinkedServer.DatabaseName.dbo.TableName
Where...
Lowell
December 4, 2012 at 9:26 am
ODBC (Open Database Connectivity)
http://en.wikipedia.org/wiki/ODBC
Lowell
December 4, 2012 at 6:56 am
Minnu (12/4/2012)
Sorry for asking,my requirement is:
i've to call the stored procedure based on "id" and get the corresponding Name from the temp table.
Please suggest
wouldn't that be a simple select?
SELECT...
Lowell
December 4, 2012 at 6:54 am
it also gets a lot more difficult if you have any constraints on any of those 50 columns...unique constraints, indexes, defaults, etc could prevent the ALTER command from completing.... all...
Lowell
December 4, 2012 at 6:52 am
great job on providing sample ddl and data!
does this do what you are after?
With CurrencySplit(currencypair,rate_value ,ccy1,ccy2)
AS
(
SELECT
currencypair,
rate_value,
LEFT(currencypair,3),
RIGHT (currencypair,3)
...
Lowell
December 4, 2012 at 5:32 am
as i remember it, MSDAORA is 32 bit, no longer supported, adn only works correctly on oracle 9 and below;
10,11 and above changed the way they handle BLOB/CLOBS, and you...
Lowell
December 3, 2012 at 1:46 pm
this is what i would suggest first thing, since it's not a bad thing to update statistics:
DECLARE @Exec VARCHAR(MAX)
SELECT @Exec = ''
SELECT @Exec = 'UPDATE STATISTICS ' + QUOTENAME(schema_name(schema_id))+ '.'...
Lowell
December 3, 2012 at 1:11 pm
Viewing 15 posts - 4,276 through 4,290 (of 13,460 total)