Viewing 15 posts - 5,971 through 5,985 (of 8,753 total)
Quick question, are the queries pass-through or executed directly on the linked tables? Have a quick look at this article "Microsoft Access Pass Through Queries to SQL Server[/url]"
😎
March 22, 2015 at 11:46 am
Then we have to do this slightly differently than Mark's solution, this code should be easy to understand
😎
USE tempdb;
GO
SET NOCOUNT ON;
Declare @continents Table
(
id int identity (1,1)
,continent_id int
,continent_Name...
March 22, 2015 at 11:36 am
xsevensinzx (3/22/2015)
Speaking on getting hired and the job market, here is an interesting read:http://lifehacker.com/the-programming-skills-jobs-and-company-types-that-pa-1692152608
Quite interesting but my suspicion is that the picture painted there is slightly skewed as there is...
March 22, 2015 at 8:05 am
jaggy99 (3/22/2015)
March 22, 2015 at 7:48 am
Quick modification to Mark's code adding the counts
😎
USE tempdb;
GO
SET NOCOUNT ON;
Declare @continents Table
(
id int identity (1,1)
,continent_id int
,continent_Name varchar(100)
,continent_surface_area varchar(100)
,country_id int
,country_Name varchar(100)
,country_code varchar(10)
,country_surface_area ...
March 22, 2015 at 7:16 am
Now where is the Crystal Ball?
😎
March 22, 2015 at 6:32 am
jaggy99 (3/22/2015)
Hi Hall of Fame,Actually there is no table, I'm looking how I can create a view so I can join it with another view.
Thanks
So where is the data coming...
March 22, 2015 at 6:29 am
Quick suggestion, use either rank or row_number, here is a sample with the latter
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SAMPLE_SKATER') IS NULL
BEGIN
CREATE TABLE dbo.TBL_SAMPLE_SKATER
(
Distance INT...
March 22, 2015 at 5:56 am
lmarkum (3/20/2015)
March 22, 2015 at 5:25 am
Quick question, on the SQL Server 2008, did you store any SSIS packages in the syspackages table in the msdb database?
😎
March 22, 2015 at 5:16 am
spaghettidba (3/22/2015)
Eirikur Eiriksson (3/21/2015)
spaghettidba (3/21/2015)
TomThomson (3/20/2015)
spaghettidba (3/19/2015)
March 22, 2015 at 5:04 am
sraghunandana.6 (3/22/2015)
Hi,I tried to cancel instead of retry. THe upgrade completed successfully without any errors.
Will that error harms at any point??
Regards
Raghu
I've had similar in the past, afterwards everything worked fine...
March 22, 2015 at 3:40 am
er.mayankshukla (3/13/2015)
I use Batch wise delete in my procedures as they help me to reduce log size.
As we know the deletes causes ghost records, so commiting in batches...
March 22, 2015 at 3:22 am
wagdy_maher (3/22/2015)
Is that for a single table? If so, how many months are in that 300GB now?
It's single database...
March 22, 2015 at 3:15 am
timthetraveler (3/21/2015)
I'm trying to quantify the number of times folks use SQL Server Management Studio to change client data in one of our production databases. Does SQL Server keep...
March 22, 2015 at 3:08 am
Viewing 15 posts - 5,971 through 5,985 (of 8,753 total)