Viewing 15 posts - 1,141 through 1,155 (of 1,539 total)
i believe bigint will take much lesser space than varchar and when you have huge number of records in the table, there would be a significant performance improvement especially since...
June 15, 2009 at 1:16 pm
sp_help 'table_name' would give you table structure details- column names, data types, length etc.
June 15, 2009 at 12:50 pm
No Clues... Cant find anything on net as well!!:hehe:
all of these messages relate to .NET only.. No reference to SQL Server.. May be a bug in the system!!
what version are...
June 15, 2009 at 12:33 pm
I really cant segregate locks as 'good' or 'bad'. There are various types of locks used for different purpose by the sql server.
Can u elaborate more on what u're...
June 15, 2009 at 11:45 am
This looks more like a .NET error??
Can u check job's history? are you getting same error there too?
June 15, 2009 at 11:40 am
This is the default behaviour of identity column. You can force a specific value in identity column by setting identity_insert property to ON.
Other way to achieve this is by dbcc...
June 15, 2009 at 11:11 am
You can take cues from Divya Agrawal's article:
June 15, 2009 at 11:07 am
Great!! you got the trick 🙂
June 15, 2009 at 11:03 am
Steve - I'm using RTM Developer edition.
I tried saving also but it didn't resolve things. only when i re-selected databases drop down, it resolved.
June 15, 2009 at 11:02 am
markos (6/15/2009)
If the maintenance plan is set to backup all user DBs, the newly added/created DB should be included automatically, wouldn't it?
I just tried that, it didnt include the new...
June 15, 2009 at 9:55 am
DECLARE @command VARCHAR(5000);
SELECT @command = 'Use ['+ '?'+ ']
Select @@servername AS ServerName,
CAST(sysfiles.size /128.0 AS int) AS FileSizeMB,
sysfiles.name AS LogicalFileName,
sysfiles.filename AS PhysicalFileName,
CONVERT (sysname, DATABASEPROPERTYEX( ''[?]'' , ''status'' )) AS Status,
CONVERT...
June 15, 2009 at 9:36 am
Above post is not correct.. Apologies..
still working on it..
June 15, 2009 at 9:17 am
DECLARE @command VARCHAR(5000);
SELECT @command = 'Use [' + '?' + ']'
Select @@servername AS ServerName,
CAST(sysfiles.size /128.0 AS int) AS FileSizeMB,
sysfiles.name AS LogicalFileName,
sysfiles.filename AS PhysicalFileName,
CONVERT (sysname, DATABASEPROPERTYEX( '?' , 'status' ))...
June 15, 2009 at 9:14 am
bladerunner148 (6/15/2009)
Thanks PS. That helped.
You're welcome:-)
June 15, 2009 at 8:38 am
Krasavita (6/15/2009)
thank you
Glad I could be of some help 🙂
June 15, 2009 at 8:37 am
Viewing 15 posts - 1,141 through 1,155 (of 1,539 total)