Viewing 15 posts - 556 through 570 (of 1,292 total)
What error information do you see in the SQL Server error log?
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 8:00 pm
Krasavita (12/11/2009)
failed with the following error: "BACKUP LOG cannot.
Do you see error information in the SQL Error Log, post it here, since the vital part of information (look at...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 2:15 pm
You are welcome !
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 2:11 pm
Post here what have you tried, with table DDL and what's your insert script, it should work and it is better to do it this way.
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 10:09 am
Welcome !
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 9:14 am
Have you also specified the column list
Example
CREATE TABLE [dbo].[TestTable](
[Identitycol] [int] IDENTITY(1,1) NOT NULL
) ON [PRIMARY]
You need to use
SET IDENTITY_INSERT TESTTABLE ON
INSERT INTO dbo.TestTable ([Identitycol])
VALUES
(234)
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 9:13 am
Is this a test machine where you are trying to install SQL 2008?
If it is something not a test environment, I better would not do it and would not suggest...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 9:06 am
Have you seen this Page http://msdn.microsoft.com/en-us/library/ms143506.aspx#EEx64
It clearly indicates the versions are supported.
Regarding the best selection of SQL server 2008 edition, you know the requirements at your end, so you...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 9:03 am
You are welcome !
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 8:12 am
sav-457805 (12/11/2009)
Is the server 32 or 64 bit?
Better include what to do if it's 32 bit and what to do if 64 bit.
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:57 am
Absolutely...
When you run manually, it is executing under your security context, but when scheduled it may not be so..
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:54 am
What about the SSIS package info I was asking? Under what security context is the step running?
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:47 am
Can't troubleshoot with that info..
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:42 am
polo.csit (12/11/2009)
Hi All,how to reduce the memory useage of the sqlserver.exe process
What is it current usage, how much do you want to set it to and why have you decided...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:02 am
What about the Security settings and the where is the SSIS Package deployed?
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 11, 2009 at 7:01 am
Viewing 15 posts - 556 through 570 (of 1,292 total)