Viewing 15 posts - 5,191 through 5,205 (of 26,490 total)
Questions:
1) Are you running SSMS on your local, desktop system?
2) Are you connecting to a remote server named Belmont?
If the answers to these questions are yes, when you run the...
May 18, 2015 at 1:47 pm
At some point, you have to work with the people in the best position to help.
May 18, 2015 at 1:43 pm
briancampbellmcad (5/18/2015)
RESTORE DATABASE BCCrestore
FROM DISK = 'Z:\BCC_DB_backup_201505020017.bak'
WITH MOVE 'BCC' TO 'Z:\Databases\Data\BCCrestore.mdf',
...
May 18, 2015 at 1:34 pm
giszzmo (5/18/2015)
If grade isnumeric then grade type is numeric so use that row of values, else it must be alpha
And what does this mean?
May 18, 2015 at 12:59 pm
xizwyck (5/18/2015)
May 18, 2015 at 12:43 pm
briancampbellmcad (5/18/2015)
drive | MB free
C | 45177
D | ...
May 18, 2015 at 11:58 am
What version of SQL Server are you using? Sounds like you may be using SQL Server 2008 and the features you are looking for were released in SQL Server...
May 18, 2015 at 11:54 am
pdanes (5/18/2015)
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or...
May 18, 2015 at 11:50 am
Or like this:
declare @TestTable table(
Id int,
GroupCode char(1)
);
insert into @TestTable
values (1,'A'),
(1,'B'),
...
May 18, 2015 at 11:43 am
Sean Lange (5/18/2015)
newbieuser (5/18/2015)
Hi SeanIt is an error from our application.. not sure if will help
βAn attempt was made to call a stored procedure that expects a boolean value.β
Thanks
Well...
May 18, 2015 at 11:01 am
Vyper426 (5/14/2015)
May 18, 2015 at 10:56 am
May 18, 2015 at 10:40 am
And then of course, there is the NOLOCK hint with a query that appears to be working with financial data.
May 18, 2015 at 10:36 am
Same issue when I run it on a SQL Server 2008 R2 SE instance (10.50,6000).
May 18, 2015 at 10:26 am
Really interesting. I ran the T-SQL code provided by the OP on my SQL Server 2012 DE and I get the Error converting data type varchar to numeric as...
May 18, 2015 at 10:25 am
Viewing 15 posts - 5,191 through 5,205 (of 26,490 total)