Viewing 15 posts - 4,696 through 4,710 (of 7,496 total)
May I just add to avoid any N-typed datatype.
If you don't actualy need it, use varchar in stead of nvarchar.
We have recently had an issue where the same query on...
July 18, 2008 at 1:20 am
- 200mb for sqlserver isn't that much.
- How much RAM do you have on your PC ?
- Post the tables DDL (create statement, triggers, indexes,..)
- source : 25000 rows...
July 18, 2008 at 12:30 am
you may be better off putting this into a sqlagent job, owned by sa.
This avoids opening up xp_cmdshell for everybody :sick:
If you still encist on having this in tsql, put...
July 18, 2008 at 12:25 am
Indeed. The bug is known for a while now.
It would be nice if MS fixed that at least for the new downloads !
July 18, 2008 at 12:17 am
-what version of sql2008 are you using ?
-Did you check with sql2008 bol ?
- did you have a look at the SQL2008.Service_Broker.Samples.zip (codeplex) ?
- did you enable SSB for sql...
July 17, 2008 at 2:25 pm
chandramohann (7/17/2008)
July 17, 2008 at 12:03 pm
- I don't know if you should put this in your SQLServer engine :unsure:
- I think at SSC you'll find a clr module that queries AD to get expiration dates....
July 17, 2008 at 11:58 am
Can you post :
- the tables create statement (ddl)
- the partition function ddl statement
- the partition scheme ddl statement
July 17, 2008 at 11:42 am
- with the least overhead you could generate and execute truncate statements for every table. (truncate will only work if there are no FKs pointing to the table)
- or you...
July 17, 2008 at 11:34 am
VD (7/16/2008)
can you please provide more info about the iLO driver bug? We've recently had issues with an HP box restarting without ANY errors in any of the...
July 17, 2008 at 1:28 am
it's the yolk that does it :w00t: 😀
July 16, 2008 at 1:45 pm
Good notice Carl.
Another remark:
Keep in mind one should also join with information_schema.tables to find out what kind of table it is. (should be "base table" in this case)
information_schema.columns returns info...
July 16, 2008 at 1:44 pm
try using this for the second test:
IF(@SFound = 1) SET @sql = @sql + 'ALTER TABLE [dbo].[ptNotes] ALTER COLUMN [Type] varchar(10) NULL;'
We've all had this kind of experience...
July 16, 2008 at 1:19 pm
I hope this is not on a production database system.
Don't shrink the db unless you realy need to !
SQLServer needed the log-space to support your db !
Making a log-backup frees...
July 16, 2008 at 1:04 pm
btw the HowTo for lock pages in memory:
See bol: "How to: Enable the Lock Pages in Memory Option (Windows)"
July 15, 2008 at 5:16 am
Viewing 15 posts - 4,696 through 4,710 (of 7,496 total)