Top 50 .Net Framework Interview and General FAQs....
Q 1 What Is CLR?
CLR is a runtime environment. Code that we develop with language compiler that targets the runtime...
2014-04-16
1,554 reads
Q 1 What Is CLR?
CLR is a runtime environment. Code that we develop with language compiler that targets the runtime...
2014-04-16
1,554 reads
If you are working with .Net then you will be aware about PDB files.A PDB file is a Program Database,that is...
2014-04-01
725 reads
I already post an article how to setup Linked Server in SQL Server and querying on linked Server using open...
2014-02-14
77,131 reads
Wishing all visitors
A Very Happy & Prosperous
New Year 2014
Happy New Year! Thanks to visit queryinqsql.com.
Last year I started this Blog,and post...
2013-12-30
1,458 reads
SQL Server related information from Windows registries
The Windows Registry is a hierarchical database that stores configuration settings and options on Microsoft Windows operating systems. It contains...
2013-11-30
2,182 reads
Backing up SQL Server Databases
Backing up your SQL Server database is essential for protecting your data. The word Backup refers...
2013-11-23
3,202 reads
Querying Microsoft SQL Server: T-SQL: T -SQL is advancement of SQL. It include procedural programming, local variables , various support functions for...
2013-11-14
1,175 reads
What is Interface?
An interface is collection of methods, properties, indexers and events with only signatures. Means In interface Methods, properties,...
2013-10-29
1,574 reads
1. How to find the maximum no of connection allowed in SQL Server?
Select@@MAX_Connections
2. How to select top 2 rows without...
2013-10-24
1,091 reads
Sometimes we need to find sum of first and next row in cumulative way.
Create table and insert data:
CREATE TABLE [dbo].[testsum](
...
2013-10-25 (first published: 2013-10-19)
41,458 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers