Viewing 15 posts - 5,161 through 5,175 (of 6,400 total)
Express is limited to 1 socket or 1 physical CPU, so getting 2 CPU's isnt going to help.
In 2012 it is also limited to lesser than 1 socket...
May 9, 2012 at 1:19 am
might be a long shot but nothing automated restoring the database
select
destination_database_name,
user_name,
restore_date,
case restore_type when 'D' then 'Full Restore' when 'L'...
May 8, 2012 at 8:03 am
are you able to see the windows application event log to see if the error was logged there so we have something more to play on
May 8, 2012 at 7:52 am
you may have checked this but the targetserverurl of the solution is set to the report manager url? e.g http://servername/reportserver (that is assuming you have used the default installation...
May 8, 2012 at 7:50 am
how was the copy created the first time around?
is there a need to keep this copy updated with the data in the first DB? if so what is the...
May 8, 2012 at 7:46 am
DiverKas (5/8/2012)
anthony.green (5/8/2012)
Just out of noticing your joining syntax, what type of join are you after here as the syntax from table1, table2...
May 8, 2012 at 7:21 am
Not to worry, glad you spotted the mistake.
Just out of noticing your joining syntax, what type of join are you after here as the syntax from table1, table2 denotes a...
May 8, 2012 at 6:30 am
will the filename be exactly the same and in the same directory every time the import needs to be run? if so one of the last screens is run...
May 8, 2012 at 6:29 am
please provide the create table definition and some sample data.
May 8, 2012 at 6:21 am
use the text qualifier on the import screen and set it to " this should then remove the " when you look at the csv in the preview
May 8, 2012 at 6:21 am
thanks, can you also provide the create table command as well for the table and a few insert statements for some data within the table (granted data maybe sensitive, but...
May 8, 2012 at 6:11 am
it is substituting 0 with the default date of '1900-01-01 00:00:00.000'
If only a time value is assigned to a variable of a date data type, the value of the missing...
May 8, 2012 at 6:10 am
what is the error?
can you also detail the full query, including tables and sample data as per the second link in my signature block to help us create a mock...
May 8, 2012 at 6:06 am
can you detail the error
if your trying to put a uniqueidentifier into an int column it will not work as this conversion is not allowed
May 8, 2012 at 6:02 am
you need to set the variable = null
CREATE PROCEDURE dbo.GestionStatutDossier
-- Add the parameters for the stored procedure here
@StaId int = NULL,
@DosID uniqueidentifier,
@staDate datetime,
@staBL nvarchar (50),
@staCRprod nvarchar (50)
AS
May 8, 2012 at 4:24 am
Viewing 15 posts - 5,161 through 5,175 (of 6,400 total)