Viewing 15 posts - 256 through 270 (of 560 total)
ntrovato (6/10/2014)
June 11, 2014 at 7:38 am
ChrisM@Work (6/11/2014)
CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'
SELECT * FROM #temp
CREATE INDEX ix_colcomputed ON #temp (colcomputed)
SELECT colcomputed FROM...
June 11, 2014 at 7:23 am
kingrudedog (6/9/2014)
Parent company wants us to use service account from their domain (without moving the server...
June 10, 2014 at 11:23 am
What do you get when you run sp_helpdb 'tempdb' ? Is this a Cluster?
June 10, 2014 at 11:16 am
SQL is delicious (6/10/2014)
sql-lover (6/9/2014)
thomaswoof (6/9/2014)
June 10, 2014 at 10:11 am
serge 83317 (5/17/2014)
In the case a failover occurs on one of these databases,...
June 10, 2014 at 8:30 am
thomaswoof (6/9/2014)
June 9, 2014 at 1:12 pm
vijay.singh 14112 (6/9/2014)
Can we upgrade SQL server 2000 DB's to Sql server 2012 directly? I tried restoring 2000 .bak in 2008 R2 but i am getting compatible errors. Should...
June 9, 2014 at 12:12 pm
ramana3327 (6/9/2014)
My requirement is before inserting new data, we need to delete the old data based on the input in 4 tables.
For this one I need to write 4 individual...
June 9, 2014 at 12:00 pm
Here is mine ...
DECLARE @total int, @id int, @dbname varchar(200), @sql varchar(MAX)
DECLARE @t table(ID int not null identity(1,1), name varchar(255))
INSERT INTO @t(name)
SELECT name FROM sys.databases WHERE database_id >...
June 9, 2014 at 11:44 am
Jeff Moden (6/6/2014)
TheSQLGuru (6/6/2014)
Wow - all that for 30GB of space?!? Sad to be worried about so little in today's age! :w00t:
I've found that, especially in small to midsized...
June 6, 2014 at 4:21 pm
sqldriver (6/6/2014)
sql-lover (6/6/2014)
Now, not...
June 6, 2014 at 1:43 pm
MyDoggieJessie (6/6/2014)
What's a performance review? :hehe:
The one that your supervisor does on you every year? To check if you are doing "Index Seeks" or just "scans" at your job? lol...
June 6, 2014 at 1:17 pm
It is my understanding that an aggregate function has to check all values in the column. So an Index on that attribute may not help too much.
Now, not sure how...
June 6, 2014 at 1:06 pm
sqldriver (6/5/2014)
hisakimatama (6/5/2014)
June 6, 2014 at 12:39 pm
Viewing 15 posts - 256 through 270 (of 560 total)