Viewing 15 posts - 1 through 15 (of 122 total)
I had the same problem as described here. I tried...
Regards,
Nitin
April 27, 2018 at 10:05 am
Thanks Anthony, I got your point. I was just worried because I was not taking any log backup of Database1 on reporting server, still it was showing in backupset. ...
Regards,
Nitin
August 2, 2012 at 3:53 am
Thanks Jan,
I had a same issue. It is working fine with your solution.
Regards,
Nitin
March 8, 2012 at 9:00 am
Thanks Chris, I had a same issue. It is resolved with your solution.
Regards,
Nitin
March 1, 2012 at 5:23 am
Use below script to generate drop script.
SELECT 'DROP TABLE [dbo].[' + name + ']' FROM sys.objects WHERE type='U' and schema_id = 1
-- replace dbo with your owner/schema name...
Regards,
Nitin
January 7, 2010 at 2:38 am
One possible alternative could be
SELECT TABLE1.* FROM TABLE1
INNER JOIN (
SELECT TABLE2.COLUMN1
FROM ( SELECT MAX(TABLE2.COLUMN2) AS [Key] FROM TABLE2
--WITH (NOLOCK)
GROUP BY TABLE2.COLUMN3 ) AS A,
TABLE2
--WITH...
Regards,
Nitin
January 6, 2010 at 2:52 am
Thankx guys.
I have got one interesting video on this. It worth viewing for lookpup tables manipulation. Find the video at below link
http://www.sqlbits.com/Agenda/event3/Small_Problem_-_Simple_Solution__Lookup_Tables/default.aspx
Regards,
Nitin
April 20, 2009 at 1:49 pm
Thanks..
But it is not even working after changing the compatibility mode.
Regards,
Nitin
April 7, 2009 at 3:09 am
Jerry Hung (4/6/2009)
Were those domain logins invalid?
This domain users are valid one. I am doing this on development server not on production. Assiging the SQL user has resolved the problem...
Regards,
Nitin
April 6, 2009 at 12:54 pm
I think this becase ALTER TABEL.
Database storage for TEXT and VARCHAR(MAX) are different (for TEXT it is LOB and pointer in table structure and for VARCHAR(MAX) it is table...
Regards,
Nitin
April 6, 2009 at 9:58 am
I guess it is the problem with values inside [col] column. Some how it is exceeding the INT size limit. Please make sure [col] is INT not BIGINT.
Regards,
Nitin
April 2, 2009 at 2:43 am
Another solution is
SELECT TOP 1 * FROM MyTable
WHERE statut < (SELECT MAX(statut) FROM MyTable)
ORDER BY statut DESC
Regards,
Nitin
March 26, 2009 at 3:23 am
I my view dm view gives the result based on the database usage. So if you execute some query on adhoc basis for many time, then also it creates entry...
Regards,
Nitin
March 6, 2009 at 9:03 am
Viewing 15 posts - 1 through 15 (of 122 total)